HomeSort by relevance Sort by last modified time
    Searched defs:i2 (Results 1 - 25 of 253) sorted by null

1 2 3 4 5 6 7 8 91011

  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.iter/re.tokiter/re.tokiter.comp/
equal.pass.cpp 29 std::cregex_token_iterator i2 = i; local
30 assert(i2 == i);
31 assert(!(i2 != i));
33 assert(!(i2 == i));
34 assert(i2 != i);
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p3.cpp 7 int &i2 = 45_x1; variable
p4.cpp 7 int &i2 = 45._x1; variable
p5.cpp 8 double &i2 = u8"foo"_x1; variable
p6.cpp 8 double &i2 = L'a'_x1; variable
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p9.cpp 6 int i2 = f<1000>(0); // expected-error{{ambiguous}} variable
  /external/clang/test/Parser/
namelookup-bug-2.c 9 struct Object { int i2; } *X; member in struct:Object
  /external/clang/test/SemaCXX/
__null.cpp 7 int i2 = __null; local
address-space-references.cpp 14 static int_2 i2; local
18 f0(i2); // expected-error{{no matching function for call to 'f0'}}
default1.cpp 54 int i2() { function
overload-call-copycon.cpp 10 int& i2 = copycon(xc); local
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 879 std::int16_t i2 = 0; local
885 std::uint16_t i2 = 0; local
891 std::int_least16_t i2 = 0; local
897 std::uint_least16_t i2 = 0; local
903 std::int_fast16_t i2 = 0; local
909 std::uint_fast16_t i2 = 0; local
915 std::uintptr_t i2 = 0; local
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
p2.cpp 26 namespace i2 { namespace in namespace:test0
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stackdepot_test.cc 52 u32 i2 = StackDepotPut(s1, ARRAY_SIZE(s1)); local
53 EXPECT_EQ(i1, i2);
65 u32 i2 = StackDepotPut(s2, ARRAY_SIZE(s2)); local
66 EXPECT_NE(i1, i2);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-80981.js 56 var i2 = 3011; variable
57 var n = new Array (i2);
82 for (i=0; i<i2; i++) {n[i] = 0;}
85 while (k++ <= i2)
87 switch (j = (k*73)%i2)
    [all...]
  /dalvik/dx/tests/074-dex-form35c-edge-case/
Blort.java 22 int i2 = 0; local
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp 6 int i2 = l1(1, 2); local
p2.cpp 18 int i2 = sizeof([]()->void{}()); // expected-error{{lambda expression in an unevaluated operand}} local
  /external/clang/test/CodeGen/
atomics-inlining.c 8 unsigned int i1, i2; variable
23 (void)__atomic_load(&i1, &i2, memory_order_seq_cst);
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-references.cpp 5 int i1, i2; member in struct:reference::A
  /external/clang/test/SemaTemplate/
fun-template-def.cpp 25 int i2 = u1; local
  /external/objenesis/main/test/org/objenesis/
ObjenesisTest.java 56 ObjectInstantiator i2 = o.getInstantiatorOf(getClass()); local
57 assertSame(i1, i2);
  /external/valgrind/main/cachegrind/
cg-arch.c 80 Long i1, i2, i3; local
86 i2 = VG_(strtoll10)(endptr+1, &endptr); if (*endptr != ',') goto bad;
91 cache->assoc = (Int)i2;
94 if (cache->assoc != i2) goto overflow;
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh3.cpp 7 int r, i1 = 1, i2 = 2, i3 = 3, i4 = 4, i5 = 5; variable
11 ~S() { r = i1 + i2 + i3 + i4 + i5; }
  /ndk/tests/device/test-stlport_static-exception/jni/
eh3.cpp 7 int r, i1 = 1, i2 = 2, i3 = 3, i4 = 4, i5 = 5; variable
11 ~S() { r = i1 + i2 + i3 + i4 + i5; }

Completed in 761 milliseconds

1 2 3 4 5 6 7 8 91011