/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/ |
D | test_pytree.py | 68 l2 = pytree.Leaf(100, "foo", context=(" ", (10, 1))) 69 self.assertEqual(str(l2), " foo") 80 l2 = pytree.Leaf(100, "foo", context=(" ", (1, 0))) 81 self.assertEqual(l1, l2) 97 l2 = pytree.Leaf(200, "bar") 98 n1 = pytree.Node(1000, [l1, l2]) 100 self.assertEqual(n1.children, [l1, l2]) 104 l2 = pytree.Leaf(100, "bar", context=(" ", (1, 0))) 105 n1 = pytree.Node(1000, [l1, l2]) 107 "Node(1000, [%s, %s])" % (repr(l1), repr(l2))) [all …]
|
/device/linaro/bootloader/arm-trusted-firmware/lib/locks/exclusive/ |
D | spinlock.S | 41 l2: ldaxr w1, [x0] label 44 cbnz w1, l2
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | copy.py | 400 l2 = copy(l) 401 print l == l2 403 print l2 404 l2 = deepcopy(l) 405 print l == l2 407 print l2 413 print map(repr.repr, l2) 419 print map(repr.repr, l2)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | copy.py | 400 l2 = copy(l) 401 print l == l2 403 print l2 404 l2 = deepcopy(l) 405 print l == l2 407 print l2 413 print map(repr.repr, l2) 419 print map(repr.repr, l2)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_pyclbr.py | 29 def assertListEq(self, l1, l2, ignore): argument 31 missing = (set(l1) ^ set(l2)) - set(ignore) 33 print >>sys.stderr, "l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore)
|
D | test_tuple.py | 78 l2 = (0, 1, 2) 80 a2 = self.type2test(l2) 83 self.assertEqual(str(a2), repr(l2))
|
D | test_glob.py | 45 def assertSequencesEqual_noorder(self, l1, l2): argument 46 self.assertEqual(set(l1), set(l2))
|
D | test_asyncore.py | 252 l2 = "I don't like spam!" 256 d.log(l2) 261 self.assertEqual(lines, ['log: %s' % l1, 'log: %s' % l2]) 270 l2 = "Why can't she have egg bacon spam and sausage?" 275 d.log_info(l2) 281 expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3]
|
D | test_bigmem.py | 764 l2 = [u''] * size 765 self.assertTrue(l1 == l2) 766 del l2 767 l2 = [u''] * (size + 1) 768 self.assertFalse(l1 == l2) 769 del l2 770 l2 = [2] * size 771 self.assertFalse(l1 == l2)
|
D | list_tests.py | 33 l2 = [0, 1, 2] 35 a2 = self.type2test(l2) 39 self.assertEqual(repr(a2), repr(l2))
|
D | test_index.py | 174 l2 = lst.__imul__(self.n) 175 self.assertIs(l2, lst)
|
D | seq_tests.py | 94 l2 = [0, 1] 99 u2 = self.type2test(l2)
|
D | test_grammar.py | 299 l2 = lambda : a[d] # XXX just testing the expression function
|
D | test_decimal.py | 1396 l2 = 28 1405 self.assertIs(min(d1,l2), d1) 1406 self.assertIs(min(l2,d1), d1)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/ |
D | Constructs.py | 479 l2 = range(10) 483 for j in l2: 490 l2 = range(10)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/ |
D | msgfmt.py | 81 for o1, l1, o2, l2 in offsets: 83 voffsets += [l2, o2+valuestart]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lstrlib.c | 515 const char *s2, size_t l2) { in lmemfind() argument 516 if (l2 == 0) return s1; /* empty strings are everywhere */ in lmemfind() 517 else if (l2 > l1) return NULL; /* avoids a negative `l1' */ in lmemfind() 520 l2--; /* 1st char will be checked by `memchr' */ in lmemfind() 521 l1 = l1-l2; /* `s2' cannot be found after that */ in lmemfind() 524 if (memcmp(init, s2+1, l2) == 0) in lmemfind()
|
D | lcode.h | 74 LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
|
D | lcode.c | 198 void luaK_concat (FuncState *fs, int *l1, int l2) { in luaK_concat() argument 199 if (l2 == NO_JUMP) return; in luaK_concat() 201 *l1 = l2; in luaK_concat() 207 fixjump(fs, list, l2); in luaK_concat()
|
/device/lge/bullhead/ |
D | init.bullhead.power.sh | 54 write /sys/module/lpm_levels/system/a53/a53-l2-retention/idle_enabled 0 55 write /sys/module/lpm_levels/system/a57/a57-l2-retention/idle_enabled 0
|
D | init.bullhead.rc | 48 write /sys/module/lpm_levels/system/a53/a53-l2-retention/idle_enabled 0 49 write /sys/module/lpm_levels/system/a57/a57-l2-retention/idle_enabled 0
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | symbols.py | 411 def list_eq(l1, l2): argument 412 return sorted(l1) == sorted(l2)
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/DeviceTree/ |
D | hi6220.dtsi | 175 CLUSTER0_L2: l2-cache0 { 179 CLUSTER1_L2: l2-cache1 {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/ |
D | py3_test_grammar.py | 337 l2 = lambda : a[d] # XXX just testing the expression function
|
D | py2_test_grammar.py | 301 l2 = lambda : a[d] # XXX just testing the expression function
|