/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/ |
Code2.java | 21 public class Code2 { 24 public Code2(Integer name) { 28 public Code2(String name) { 38 if (obj instanceof Code2) { 39 Code2 code = (Code2) obj; 53 return "<Code2 code=" + code + ">";
|
ShapeImmutableTest.java | 59 Code2 code2 = (Code2) yaml.load("!!org.yaml.snakeyaml.immutable.Code2 555"); local 60 assertEquals(new Integer(555), code2.getCode());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerHashCodeTest.java | 46 int code2 = aNumber1.hashCode(); local 47 assertTrue("hash codes for the same object differ", code1 == code2); 59 int code2 = aNumber2.hashCode(); local 61 assertTrue("hash codes for equal objects are unequal", code1 == code2); 75 int code2 = aNumber2.hashCode(); local 77 assertTrue("hash codes for unequal objects are equal", code1 != code2);
|
/cts/tests/tests/content/src/android/content/cts/ |
ContentUrisTest.java | 30 private static final int CODE2 = 2; 43 result = ContentUris.withAppendedId(uri2, CODE2); 44 assertEquals(CODE2, ContentUris.parseId(result)); 76 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2; 77 assertNotNull(actually = ContentUris.withAppendedId(uri2, CODE2)); 98 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2; 101 assertNotNull(actually = ContentUris.appendId(b, CODE2));
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
ModeCommandHandlerTest.java | 31 private static final String CODE2 = "B";
52 verifyOneDataElement(commandHandler.getInvocation(1), ModeCommandHandler.MODE_KEY, CODE2);
72 command2 = new Command(CommandNames.MODE, array(CODE2));
|
StruCommandHandlerTest.java | 31 private static final String CODE2 = "R";
52 verifyOneDataElement(commandHandler.getInvocation(1), StruCommandHandler.FILE_STRUCTURE_KEY, CODE2);
72 command2 = new Command(CommandNames.STRU, array(CODE2));
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
ModeCommandHandlerTest.java | 33 private static final String CODE2 = "B";
54 verifyOneDataElement(commandHandler.getInvocation(1), ModeCommandHandler.MODE_KEY, CODE2);
74 command2 = new Command(CommandNames.MODE, array(CODE2));
|
StruCommandHandlerTest.java | 33 private static final String CODE2 = "R";
54 verifyOneDataElement(commandHandler.getInvocation(1), StruCommandHandler.FILE_STRUCTURE_KEY, CODE2);
74 command2 = new Command(CommandNames.STRU, array(CODE2));
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITMemoryManagerTest.cpp | 22 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); local 26 EXPECT_NE((uint8_t*)nullptr, code2); 33 code2[i] = 2; 41 EXPECT_EQ(2, code2[i]); 55 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); local 59 EXPECT_NE((uint8_t*)nullptr, code2); 66 code2[i] = 2; 74 EXPECT_EQ(2, code2[i]);
|
/external/v8/test/mjsunit/tools/ |
codemap.js | 102 codeMap.addCode(0x1700, newCodeEntry(0x100, 'code2')); 110 assertEntry(codeMap, 'code2', 0x1700); 111 assertEntry(codeMap, 'code2', 0x1700 + 0x50); 112 assertEntry(codeMap, 'code2', 0x1700 + 0x100 - 1); 128 codeMap.addCode(0x1700, newCodeEntry(0x100, 'code2')); 130 assertEntry(codeMap, 'code2', 0x1700); 133 assertEntry(codeMap, 'code2', 0x1700); 169 codeMap.addCode(0x1700, newCodeEntry(0x100, 'code2')); 174 assertEquals(['code1: 200', 'code2: 100', 'code3: 50'], allDynamics);
|
/external/v8/test/mjsunit/ |
strict-mode-eval.js | 31 var code2 = "function f(a, a) {}"; variable 40 eval_alias(code2); 57 eval(code2);
|
/external/clang/test/CoverageMapping/ |
includehell.cpp | 60 // CHECK-CODE: File [[CODE2:[0-9]]], 1:1 -> 14:1 = #5 61 // CHECK-CODE-NEXT: File [[CODE2]], 4:5 -> 4:11 = #5 62 // CHECK-CODE-NEXT: File [[CODE2]], 4:13 -> 6:2 = #6 63 // CHECK-CODE-NEXT: File [[CODE2]], 6:8 -> 8:2 = (#5 - #6) 64 // CHECK-CODE-NEXT: File [[CODE2]], 9:5 -> 9:9 = #5 65 // CHECK-CODE-NEXT: File [[CODE2]], 9:11 -> 11:2 = #7 66 // CHECK-CODE-NEXT: File [[CODE2]], 11:8 -> 13:2 = (#5 - #7)
|
/external/regex-re2/re2/ |
perl_groups.cc | 11 static URange16 code2[] = { /* \s */ member in namespace:re2 25 { "\\s", +1, code2, 3 }, 26 { "\\S", -1, code2, 3 },
|
/prebuilts/go/darwin-x86/src/regexp/syntax/ |
perl_groups.go | 14 var code2 = []rune{ /* \s */ var 30 `\s`: {+1, code2}, 31 `\S`: {-1, code2},
|
/prebuilts/go/linux-x86/src/regexp/syntax/ |
perl_groups.go | 14 var code2 = []rune{ /* \s */ var 30 `\s`: {+1, code2}, 31 `\S`: {-1, code2},
|
/external/v8/test/cctest/wasm/ |
test-run-wasm-module.cc | 89 byte code2[] = {WASM_CALL_FUNCTION(f1_index, WASM_I8(77), WASM_I8(22))}; local 90 f->EmitCode(code2, sizeof(code2)); 192 byte code2[] = {WASM_STORE_GLOBAL(global1, WASM_I32(56)), local 195 f->EmitCode(code2, sizeof(code2));
|
/external/curl/src/ |
tool_setopt.c | 177 #define CODE2(f,a,b) ADDF((&easysrc_code, f,a,b)) 256 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval); 259 CODE2("curl_easy_setopt(hnd, %s, (long)%s);", name, nv->name); 302 CODE2("%s%ldL);", preamble, rest); 345 CODE2("%s%luUL);", preamble, rest); 420 CODE2("curl_easy_setopt(hnd, %s, post%d);", name, i); 459 CODE2("curl_easy_setopt(hnd, %s, slist%d);", name, i); 555 CODE2("curl_easy_setopt(hnd, %s, \"%s\");", name, escaped); 558 CODE2("curl_easy_setopt(hnd, %s, %s);", name, value);
|
/external/v8/test/cctest/compiler/ |
test-multiple-return.cc | 107 Handle<Code> code2 = mt.GetCode(); local 110 code2->Disassemble("three_value_call", os);
|
/external/strace/ |
ioctlsort.c | 97 unsigned int code2 = code((struct ioctlent *) b); local 100 return (code1 > code2) ? 101 1 : (code1 < code2) ? -1 : strcmp(name1, name2);
|
ioctl.c | 46 const unsigned int code2 = ((struct_ioctlent *) b)->code; local 47 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : 0;
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
phase_dispersion.cpp | 162 int16 *code2 = ScratchMem; local 168 pv_memset((void *)code2, 0, (2*L_SUBFR)*sizeof(*code2)); 234 code2[i + j] = add_int16(code2[i + j], mult_int16_r(code[i], ph_imp_low[j])); 247 code2[i + j] = add_int16(code2[i + j], mult_int16_r(code[i], ph_imp_mid[j])); 256 code[i] = add_int16(code2[i], code2[i + L_SUBFR]);
|
/frameworks/base/telephony/java/com/android/ims/ |
ImsSuppServiceNotification.java | 36 /** TS 27.007 7.17 "code1" or "code2" */
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SuppServiceNotification.java | 29 /** TS 27.007 7.17 "code1" or "code2" */
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
codeop.py | 79 code = code1 = code2 = None 92 code2 = compiler(source + "\n\n", filename, symbol)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
codeop.py | 79 code = code1 = code2 = None 92 code2 = compiler(source + "\n\n", filename, symbol)
|