/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITMemoryManagerTest.cpp | 22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); in TEST() local 26 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 33 code2[i] = 2; in TEST() 41 EXPECT_EQ(2, code2[i]); in TEST() 55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); in TEST() local 59 EXPECT_NE((uint8_t*)nullptr, code2); in TEST() 66 code2[i] = 2; in TEST() 74 EXPECT_EQ(2, code2[i]); in TEST()
|
/external/regex-re2/re2/ |
D | perl_groups.cc | 11 static URange16 code2[] = { /* \s */ variable 25 { "\\s", +1, code2, 3 }, 26 { "\\S", -1, code2, 3 },
|
/external/strace/ |
D | ioctlsort.c | 99 unsigned int code2 = code((struct ioctlent *) b); in compare_code_name() local 102 return (code1 > code2) ? in compare_code_name() 103 1 : (code1 < code2) ? -1 : strcmp(name1, name2); in compare_code_name()
|
D | ioctl.c | 47 const unsigned int code2 = ((struct_ioctlent *) b)->code; in compare() local 48 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0; in compare()
|
/external/python/cpython2/Lib/ |
D | codeop.py | 79 code = code1 = code2 = None 92 code2 = compiler(source + "\n\n", filename, symbol)
|
D | sre_parse.py | 462 code2 = _class_escape(source, this) 464 code2 = LITERAL, ord(this) 465 if code1[0] != LITERAL or code2[0] != LITERAL: 468 hi = code2[1]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | TestLocaleValidity.java | 321 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { 322 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); 323 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | TestLocaleValidity.java | 322 …atasubtype expected, Datatype datatype, Set<Datasubtype> datasubtypes, String code, String code2) { 323 Datasubtype value = ValidIdentifiers.isValid(datatype, datasubtypes, code, code2); 324 assertEquals(datatype + ", " + datasubtypes + ", " + code + ", " + code2, expected, value);
|
/external/libmojo/third_party/catapult/devil/devil/android/sdk/ |
D | adb_wrapper_devicetest.py | 55 (res2, code2) = pshell.RunCommand('echo TEST2') 62 self.assertEqual(code2, 0)
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
D | ShapeImmutableTest.java | 59 Code2 code2 = (Code2) yaml.load("!!org.yaml.snakeyaml.immutable.Code2 555"); in testCode2() local 60 assertEquals(new Integer(555), code2.getCode()); in testCode2()
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | adb_wrapper_devicetest.py | 60 (res2, code2) = pshell.RunCommand('echo TEST2') 65 self.assertEqual(code2, 0)
|
/external/python/cpython2/Demo/parser/ |
D | test_unparse.py | 86 code2 = unparse_buffer.getvalue() 87 ast2 = compile(code2, filename, "exec", ast.PyCF_ONLY_AST)
|
/external/openssh/ |
D | authfd.c | 269 u_char type, code1 = 0, code2 = 0; in ssh_fetch_identitylist() local 279 code2 = SSH_AGENT_RSA_IDENTITIES_ANSWER; in ssh_fetch_identitylist() 283 code2 = SSH2_AGENT_IDENTITIES_ANSWER; in ssh_fetch_identitylist() 307 } else if (type != code2) { in ssh_fetch_identitylist()
|
/external/r8/src/test/java/com/android/tools/r8/smali/ |
D | OutlineTest.java | 632 DexCode code2 = getMethod(processedApplication, signature2).getCode().asDexCode(); in constructor() local 633 assertEquals(5, code2.instructions.length); in constructor() 634 assertTrue(code2.instructions[2] instanceof InvokeStatic); in constructor() 635 InvokeStatic invoke2 = (InvokeStatic) code2.instructions[2]; in constructor() 1100 DexCode code2 = method2.getCode().asDexCode(); in outlineArithmeticBinop() local 1101 assertTrue(code2.instructions[0] instanceof InvokeStatic); in outlineArithmeticBinop() 1102 InvokeStatic invoke2 = (InvokeStatic) code2.instructions[0]; in outlineArithmeticBinop()
|
/external/python/cpython2/Lib/test/ |
D | test_parser.py | 578 code2 = parser.compilest(st) 579 self.assertEqual(eval(code2), -3)
|
/external/pdfium/xfa/fxbarcode/qrcode/ |
D | BC_QRCoderEncoder.cpp | 717 int32_t code2 = GetAlphaNumericCode(content[i + 1]); in AppendAlphaNumericBytes() local 718 if (code2 == -1) { in AppendAlphaNumericBytes() 722 bits->AppendBits(code1 * 45 + code2, 11, e); in AppendAlphaNumericBytes()
|
/external/autotest/site_utils/ |
D | run_suite.py | 106 def get_worse_code(code1, code2): argument 115 return code1 if SEVERITY[code1] >= SEVERITY[code2] else code2
|
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
D | sg_err.c | 260 unsigned char code1, code2; member 998 if (additional[k].code1 == asc && additional[k].code2 == ascq) { in sg_print_asc_ascq()
|