Searched refs:Differ (Results 1 – 14 of 14) sorted by relevance
/third_party/spirv-tools/source/diff/ |
D | diff.cpp | 217 class Differ { class 219 Differ(opt::IRContext* src, opt::IRContext* dst, std::ostream& out, in Differ() function in spvtools::diff::__anonceaae9360111::Differ 316 T (Differ::*get_group)(const IdInstructions&, uint32_t)); 337 T (Differ::*get_group)(const IdInstructions&, uint32_t), 605 void Differ::PoolPotentialIds( in PoolPotentialIds() 632 void Differ::MatchIds( in MatchIds() 669 void Differ::MatchPreambleInstructions( in MatchPreambleInstructions() 698 InstructionList Differ::SortPreambleInstructions( in SortPreambleInstructions() 713 int Differ::ComparePreambleInstructions(const opt::Instruction* a, in ComparePreambleInstructions() 797 void Differ::MatchDebugAndAnnotationInstructions( in MatchDebugAndAnnotationInstructions() [all …]
|
/third_party/jsframework/runtime/main/page/ |
D | Page.ts | 25 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/ |
D | difflib.rst | 59 .. 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 …]
|
D | doctest.rst | 644 When specified, differences are computed by ``difflib.Differ``, using the same
|
/third_party/jsframework/test/ut/model/ |
D | index.ts | 32 import Differ from '../../../runtime/main/page/api/Differ'; 51 const differ = new Differ('test');
|
/third_party/mesa3d/src/gallium/tools/trace/ |
D | diff_state.py | 183 class Differ(Visitor): class 251 differ = difflib.Differ() 350 differ = Differ()
|
/third_party/jsframework/runtime/main/page/api/ |
D | Differ.ts | 25 export default class Differ { class
|
/third_party/python/Lib/test/ |
D | test_difflib.py | 90 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/ |
D | BUILD.gn | 110 "runtime/main/page/api/Differ.ts",
|
/third_party/python/Lib/ |
D | difflib.py | 724 class Differ: class 1338 return Differ(linejunk, charjunk).compare(a, b)
|
D | doctest.py | 1706 engine = difflib.Differ(charjunk=difflib.IS_CHARACTER_JUNK)
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
D | hb_test_tools.py | 84 for l in difflib.Differ().compare (*ss):
|
/third_party/python/Doc/whatsnew/ |
D | 2.2.rst | 1021 * The :mod:`difflib` module now contains a new :class:`Differ` class for
|
/third_party/python/Misc/ |
D | HISTORY | 13915 - 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.
|