HomeSort by relevance Sort by last modified time
    Searched full:code2 (Results 1 - 25 of 34) sorted by null

1 2

  /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);
  /external/strace/linux/
ioctlsort.c 27 unsigned long code2 = ((struct ioctlent *) b)->code; local
30 return (code1 > code2) ? 1 : (code1 < code2) ? -1 : strcmp(name1, name2);
  /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/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMemoryManagerTest.cpp 23 uint8_t *code2 = MemMgr->allocateCodeSection(256, 0, 3, ""); local
27 EXPECT_NE((uint8_t*)nullptr, code2);
34 code2[i] = 2;
42 EXPECT_EQ(2, code2[i]);
56 uint8_t *code2 = MemMgr->allocateCodeSection(0x100000, 0, 3, ""); local
60 EXPECT_NE((uint8_t*)nullptr, code2);
67 code2[i] = 2;
75 EXPECT_EQ(2, code2[i]);
  /external/chromium_org/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/chromium_org/v8/test/mjsunit/
strict-mode-eval.js 31 var code2 = "function f(a, a) {}"; variable
40 eval_alias(code2);
57 eval(code2);
eval-stack-trace.js 114 var code2 = "function h() { \n" + variable
121 eval(code2);
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Regexps.py 41 code2 = code1 + 1
43 while i < n and code2 >= ord(char_list[i]):
44 code2 = code2 + 1
47 result.append(code2)
50 def uppercase_range(code1, code2):
52 If the range of characters from code1 to code2-1 includes any
56 code4 = min(code2, ord('z') + 1)
63 def lowercase_range(code1, code2):
65 If the range of characters from code1 to code2-1 includes an
    [all...]
Transitions.py 92 Return the mapping as an iterable of ((code1, code2), state_set) and
  /external/chromium_org/third_party/sqlite/src/test/
lock_common.tcl 22 proc code2 {tcl} { testfixture $::code2_chan $tcl } procedure
26 proc code2 {tcl} { uplevel #0 $tcl } procedure
37 # commands should only be accessed within [code2] and [code3] blocks,
41 code2 { sqlite3 db2 test.db }
48 proc sql2 {sql} { code2 [list db2 eval $sql] }
58 code2 { db2 close }
wal5.test 82 code2 {db2 close}
86 code2 {sqlite3 db2 test.db}
309 code2 $do_wal_checkpoint
324 do_test 3.$tn.2 { code2 { do_wal_checkpoint db2 } } {0 2 2}
326 do_test 3.$tn.3 { code2 { do_wal_checkpoint db2 } } {0 2 2}
331 code2 {db2 close}
335 code2 {sqlite3 db2 test.db}
backcompat.test 70 proc code2 {tcl} { uplevel #0 $tcl }
71 if {$bin1 != ""} { proc code2 {tcl} { testfixture $::bc_chan1 $tcl } }
76 proc code2 {tcl} { testfixture $::bc_chan2 $tcl }
80 proc sql2 sql { code2 [list db eval $sql] }
83 code2 { sqlite3 db test.db }
88 catch { code2 { db close } }
217 code2 { db close }
220 code2 { sqlite3 db test.db }
240 && [code2 {sqlite3 -version}] >= "3.7.0"
257 code2 {db close
    [all...]
  /external/chromium_org/third_party/re2/re2/
perl_groups.cc 11 static URange16 code2[] = { /* \s */ member in namespace:re2
25 { "\\s", +1, code2, 3 },
26 { "\\S", -1, code2, 3 },
  /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 },
  /external/chromium_org/chrome/test/chromedriver/test/
run_all_tests.py 184 code2 = RunJavaTests(chromedriver,
188 code = code or code1 or code2
217 code2 = RunJavaTests(chromedriver, chrome=chrome_path,
220 code = code or code1 or code2
  /external/strace/
ioctl.c 38 unsigned long code2 = ((struct_ioctlent *) b)->code; local
39 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
SuppServiceNotification.java 29 /** TS 27.007 7.17 "code1" or "code2" */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codeop.py 79 code = code1 = code2 = None
92 code2 = compiler(source + "\n\n", filename, symbol)
sre_parse.py 447 code2 = _class_escape(source, this)
449 code2 = LITERAL, ord(this)
450 if code1[0] != LITERAL or code2[0] != LITERAL:
453 hi = code2[1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codeop.py 79 code = code1 = code2 = None
92 code2 = compiler(source + "\n\n", filename, symbol)
sre_parse.py 447 code2 = _class_escape(source, this)
449 code2 = LITERAL, ord(this)
450 if code1[0] != LITERAL or code2[0] != LITERAL:
453 hi = code2[1]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp 285 uint8_t *code2 = MemMgr->allocateCodeSection(257, 32, 3, StringRef()); local
290 EXPECT_NE((uint8_t*)nullptr, code2);
296 EXPECT_EQ((uint64_t)code2 & 0x1f, 0u);
  /external/chromium_org/components/search_engines/
template_url_prepopulate_data.cc 713 #define CODE_TO_ID(code1, code2)\
714 (CHAR(code1) << 8 | CHAR(code2))
716 #define UNHANDLED_COUNTRY(code1, code2)\
717 case CODE_TO_ID(code1, code2):
718 #define END_UNHANDLED_COUNTRIES(code1, code2)\
719 *engines = engines_##code1##code2;\
720 *num_engines = arraysize(engines_##code1##code2);\
722 #define DECLARE_COUNTRY(code1, code2)\
723 UNHANDLED_COUNTRY(code1, code2)\
724 END_UNHANDLED_COUNTRIES(code1, code2)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree.h 755 #define TREE_CHECK2(T, CODE1, CODE2) \
756 (tree_check2 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2)))
758 #define TREE_NOT_CHECK2(T, CODE1, CODE2) \
759 (tree_not_check2 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2)))
761 #define TREE_CHECK3(T, CODE1, CODE2, CODE3) \
762 (tree_check3 ((T), __FILE__, __LINE__, __FUNCTION__, (CODE1), (CODE2), (CODE3)))
764 #define TREE_NOT_CHECK3(T, CODE1, CODE2, CODE3) \
766 (CODE1), (CODE2), (CODE3)))
768 #define TREE_CHECK4(T, CODE1, CODE2, CODE3, CODE4) \
770 (CODE1), (CODE2), (CODE3), (CODE4))
    [all...]

Completed in 904 milliseconds

1 2