Home
last modified time | relevance | path

Searched refs:Differ (Results 1 – 17 of 17) sorted by relevance

/third_party/jsframework/runtime/main/page/
DPage.ts25 import Differ from './api/Differ';
55 private _differ: Differ;
70 this._differ = new Differ(id);
174 set differ(differ: Differ) {
/third_party/python/Doc/library/
Ddifflib.rst59 .. class:: Differ
62 human-readable differences or deltas. Differ uses :class:`SequenceMatcher`
66 Each line of a :class:`Differ` delta begins with a two-letter code:
224 Compare *a* and *b* (lists of strings); return a :class:`Differ`\ -style
263 Given a *sequence* produced by :meth:`Differ.compare` or :func:`ndiff`, extract
642 Differ Objects
645 Note that :class:`Differ`\ -generated deltas make no claim to be **minimal**
651 The :class:`Differ` class has this constructor:
654 .. class:: Differ(linejunk=None, charjunk=None)
674 :class:`Differ` objects are used (deltas generated) via a single method:
[all …]
Ddoctest.rst644 When specified, differences are computed by ``difflib.Differ``, using the same
/third_party/jsframework/test/ut/model/
Dindex.ts32 import Differ from '../../../runtime/main/page/api/Differ';
51 const differ = new Differ('test');
/third_party/mesa3d/src/gallium/tools/trace/
Ddiff_state.py183 class Differ(Visitor): class
251 differ = difflib.Differ()
350 differ = Differ()
/third_party/jsframework/runtime/main/page/api/
DDiffer.ts25 export default class Differ { class
/third_party/python/Lib/test/
Dtest_difflib.py90 diff = list(difflib.Differ().compare(["\tI am a buggy"],["\t\tI am a bug"]))
97 diff = list(difflib.Differ().compare(["\t \t \t^"], ["\t \t \t^\n"]))
/third_party/jsframework/
DBUILD.gn129 "runtime/main/page/api/Differ.ts",
/third_party/python/Lib/
Ddifflib.py724 class Differ: class
1338 return Differ(linejunk, charjunk).compare(a, b)
Ddoctest.py1706 engine = difflib.Differ(charjunk=difflib.IS_CHARACTER_JUNK)
/third_party/skia/third_party/externals/harfbuzz/test/shape/
Dhb_test_tools.py84 for l in difflib.Differ().compare (*ss):
/third_party/harfbuzz/test/shaping/
Dhb_test_tools.py84 for l in difflib.Differ().compare (*ss):
/third_party/boost/tools/build/src/tools/
Dintel-linux.jam230 # Differ from 'link' above only by -shared.
Dqcc.jam297 # Differ from 'link' above only by -shared.
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/
Dhb_test_tools.py162 for l in difflib.Differ().compare (*ss):
/third_party/python/Doc/whatsnew/
D2.2.rst1021 * The :mod:`difflib` module now contains a new :class:`Differ` class for
/third_party/python/Misc/
DHISTORY13915 - Issue #1488943: difflib.Differ() doesn't always add hints for tab characters.
24145 - difflib.ndiff() and difflib.Differ.compare() are generators now. This
24526 - New class Differ and new functions ndiff() and restore() in difflib.py.