/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/ |
move.pass.cpp | 54 C c2 = make<C>(N); local 55 assert(std::move(c1.cbegin(), c1.cend(), c2.begin()) == c2.end()); 56 assert(c1 == c2); 57 assert(std::move(c2.cbegin(), c2.cend(), c1.begin()) == c1.end()); 58 assert(c1 == c2); 59 assert(std::move(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end())); 60 assert(c1 == c2); [all...] |
move_backward.pass.cpp | 54 C c2 = make<C>(N); local 55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin()); 56 assert(c1 == c2); 57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin()); 58 assert(c1 == c2); 59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin())); 60 assert(c1 == c2); [all...] |
swap.pass.cpp | 46 C c2 = make<C>(M); local 48 C c2_save = c2; 49 swap(c1, c2); 51 assert(c2 == c1_save); 69 std::deque<int, A> c2(a2, a2+sizeof(a2)/sizeof(a2[0]), A(2)); 70 swap(c1, c2); 73 assert((c2 == std::deque<int, A>(a1, a1+sizeof(a1)/sizeof(a1[0])))); 74 assert(c2.get_allocator() == A(2)); 81 std::deque<int, A> c2(a2, a2+sizeof(a2)/sizeof(a2[0]), A(2)); 82 swap(c1, c2); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.modifiers/ |
emplace.pass.cpp | 57 std::list<A> c2; local 58 std::list<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5); 81 std::list<A, min_allocator<A>> c2; local 82 std::list<A, min_allocator<A>>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5);
|
insert_iter_size_value.pass.cpp | 68 std::list<int> c2; local 69 std::list<int>::iterator i = c1.insert(next(c2.cbegin(), 10), 5, 1); 98 std::list<int, min_allocator<int>> c2; local 99 std::list<int, min_allocator<int>>::iterator i = c1.insert(next(c2.cbegin(), 10), 5, 1);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/ |
emplace.pass.cpp | 120 std::vector<A> c2; local 121 std::vector<A>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5); 153 std::vector<A, min_allocator<A>> c2; local 154 std::vector<A, min_allocator<A>>::iterator i = c1.emplace(c2.cbegin(), 2, 3.5);
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
initpri1.c | 36 void c2(void) __attribute__((constructor (700))); 44 void c2() { function
|
gdb_index_test.cc | 75 class c2 class in namespace:two 78 c2(T t) function in class:two::c2 84 ~c2() 94 c2<int> c2v1(1); 95 c2<double> c2v2(2.0); 96 c2<int const*> c2v3(&ci);
|
/toolchain/binutils/binutils-2.25/libiberty/ |
strverscmp.c | 94 unsigned char c1, c2; local 128 c2 = *p2++; 132 while ((diff = c1 - c2) == 0 && c1 != '\0') 136 c2 = *p2++; 140 state = result_type[state << 2 | (((c2 == '0') + (ISDIGIT (c2) != 0)))];
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ConstructorTest.java | 77 Constructor<?> c2 = ConstructorTestHelper.class.getConstructor(); local 78 assertEquals(c1, c2); 79 assertEquals(c1.hashCode(), c2.hashCode()); 89 Constructor<?> c2 = ConstructorTestHelper.class.getConstructor(Object.class); local 90 assertFalse(c1.equals(c2));
|
/external/bison/lib/ |
mbrtowc.c | 149 unsigned char c2 = (unsigned char) p[1]; local 151 if ((c2 ^ 0x80) < 0x40 152 && (c >= 0xe1 || c2 >= 0xa0) 153 && (c != 0xed || c2 < 0xa0)) 163 unsigned char c2 = (unsigned char) p[1]; local 165 if ((c2 ^ 0x80) < 0x40 166 && (c >= 0xf1 || c2 >= 0x90) 167 && (c < 0xf4 || (c == 0xf4 && c2 < 0x90))) 204 unsigned char c2 = (unsigned char) p[1]; local 206 if (c2 >= 0xa1 && c2 < 0xff 263 unsigned char c2 = (unsigned char) p[1]; local [all...] |
strverscmp.c | 65 unsigned char c1, c2; local 99 c2 = *p2++; 103 while ((diff = c1 - c2) == 0 && c1 != '\0') 107 c2 = *p2++; 111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
|
/external/clang/test/CodeGen/ |
atomics-inlining.c | 7 unsigned char c1, c2; variable 23 (void)__atomic_load(&c1, &c2, memory_order_seq_cst); 24 (void)__atomic_store(&c1, &c2, memory_order_seq_cst);
|
/external/clang/test/CodeGenCXX/ |
array-operator-delete-call.cpp | 58 COST c2; variable
|
/external/clang/test/SemaCXX/ |
constexpr-value-init.cpp | 27 constexpr C c2 = C(); // ok variable
|
vtable-instantiation.cpp | 10 template<class T2> struct C2 { 11 void c2() { function in struct:PR8640::C2 17 C2<int*> c2; local 18 c2.c2(); // expected-note {{in instantiation of member function}}
|
/external/clang/test/SemaTemplate/ |
attributes.cpp | 18 check_alignment<2>::t c2; member in namespace:attribute_aligned
|
/external/freetype/src/psnames/ |
pstables.h | 4098 int c2; local [all...] |
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/ |
NodeComparator.java | 83 final ICounter c2 = n2.getCounter(entity); local 84 return counterComparator.compare(c1, c2);
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/ |
NodeComparatorTest.java | 49 final NodeComparator c2 = CounterComparator.TOTALITEMS local 51 assertTrue(c1.second(c2).compare(d1, d2) > 0); 60 final NodeComparator c2 = CounterComparator.TOTALITEMS local 62 assertTrue(c1.second(c2).compare(d1, d2) < 0);
|
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/ |
copyfmt.pass.cpp | 127 char c1, c2, c3; local 129 ios1.pword(1) = &c2;
|
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/psnames/ |
pstables.h | 4098 int c2; local [all...] |
/external/libnfc-nxp/src/ |
phFriNfc_NdefReg.c | 51 int8_t c1, c2; local 59 c2 = *s2; 61 if (c2 >=97) 62 c2 = (c2 - 32); 65 while ( (c1 == c2) && (c1 != '\0') && (c2 != '\0') && (count > 0) ); 67 if ( (count == 0) || (c1 == c2) ) 70 else if ( (c1 > c2) )
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
scale_mips.cc | 583 const int c2 = 0x2AAA; local 608 "mul $t6, $t6, %[c2] \n" // t6 * 0x2AAA [all...] |
/external/libyuv/files/source/ |
scale_mips.cc | 574 const int c2 = 0x2AAA; local 598 "mul $t6, $t6, %[c2] \n" // t6 * 0x2AAA [all...] |