Searched refs:get_opcodes (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
D | test_difflib.py | 12 self.assertEqual(list(sm.get_opcodes()), 18 self.assertEqual(list(sm.get_opcodes()), 27 self.assertEqual(list(sm.get_opcodes()), 252 difflib.SequenceMatcher(None, old, new).get_opcodes()
|
/third_party/gn/misc/vim/ |
D | gn-format.py | 58 for op in reversed(sequence.get_opcodes()):
|
/third_party/python/Lib/ |
D | difflib.py | 492 def get_opcodes(self): member in SequenceMatcher 572 codes = self.get_opcodes() 860 for tag, alo, ahi, blo, bhi in cruncher.get_opcodes(): 965 for tag, ai1, ai2, bj1, bj2 in cruncher.get_opcodes():
|
/third_party/python/Doc/library/ |
D | difflib.rst | 488 .. method:: get_opcodes() 519 >>> for tag, i1, i2, j1, j2 in s.get_opcodes(): 533 Starting with the groups returned by :meth:`get_opcodes`, this method 537 The groups are returned in the same format as :meth:`get_opcodes`. 550 :meth:`get_opcodes` hasn't already been called, in which case you may want 621 :meth:`get_opcodes`: 623 >>> for opcode in s.get_opcodes():
|
/third_party/mesa3d/src/gallium/tools/trace/ |
D | pytracediff.py | 348 opcodes = sequence.get_opcodes()
|
/third_party/ffmpeg/libavcodec/ |
D | dxv.c | 428 static int get_opcodes(GetByteContext *gb, uint32_t *table, uint8_t *dst, int op_size, int nb_eleme… in get_opcodes() function 488 ret = get_opcodes(gb, table, dstp, op_size, elements); in dxv_decompress_opcodes()
|