Searched defs:l2 (Results 1 - 25 of 187) sorted by relevance

12345678

/external/libcxx/test/containers/sequences/list/list.cons/
H A Dcopy.pass.cpp24 std::list<int> l2 = l; local
25 assert(l2 == l);
29 std::list<int, test_allocator<int> > l2 = l; local
30 assert(l2 == l);
31 assert(l2.get_allocator() == l.get_allocator());
36 std::list<int, other_allocator<int> > l2 = l; local
37 assert(l2 == l);
38 assert(l2.get_allocator() == other_allocator<int>(-2));
44 std::list<int, min_allocator<int>> l2 = l; local
45 assert(l2
49 std::list<int, min_allocator<int> > l2 = l; local
[all...]
H A Dmove.pass.cpp31 std::list<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l); local
32 assert(l2 == lo);
34 assert(l2.get_allocator() == lo.get_allocator());
44 std::list<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); local
45 assert(l2 == lo);
47 assert(l2.get_allocator() == lo.get_allocator());
58 std::list<MoveOnly, min_allocator<MoveOnly> > l2 = std::move(l); local
59 assert(l2 == lo);
61 assert(l2.get_allocator() == lo.get_allocator());
68 std::list<int> l2 local
[all...]
/external/libcxx/test/containers/sequences/vector.bool/
H A Dmove.pass.cpp30 std::vector<bool, test_allocator<bool> > l2 = std::move(l); local
31 assert(l2 == lo);
33 assert(l2.get_allocator() == lo.get_allocator());
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l); local
44 assert(l2 == lo);
46 assert(l2.get_allocator() == lo.get_allocator());
57 std::vector<bool, min_allocator<bool> > l2 = std::move(l); local
58 assert(l2 == lo);
60 assert(l2.get_allocator() == lo.get_allocator());
/external/llvm/test/MC/AArch64/
H A Doptional-hash.s17 l2: label
/external/llvm/test/MC/ARM/
H A Dcmp-immediate-fixup.s7 cmp r2, #(l2 - l1 + 4) >> 2
9 l2: label
H A Dcmp-immediate-fixup2.s7 cmp r2, #(l2 - l1)
9 l2: label
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dfwdequ64.asm3 inc dword [l2]
4 l2 equ 4-(l1-$$) define
H A Djmp64-1.asm3 mov dword [l2], l2
6 l2 equ $-l1 define
H A Djmp64-2.asm3 mov dword [l2], l2
6 l2 equ $-l1 define
H A Djmp64-3.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
H A Djmp64-4.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
H A Djmp64-5.asm3 mov dword [l2], l2
7 l2 equ $-l1 define
/external/llvm/test/MC/ELF/
H A Dsubsection.s22 l2: label
23 .subsection l2-l1
/external/clang/test/CodeGen/
H A Dle32-libcall-pow.c21 long double l2 = powl(a2, a2); local
/external/libcxx/test/containers/sequences/list/list.ops/
H A Dsplice_pos_list.pass.cpp29 std::list<int> l2; local
30 l1.splice(l1.end(), l2);
33 assert(l2.size() == 0);
34 assert(distance(l2.begin(), l2.end()) == 0);
38 std::list<int> l2(a2, a2+1);
39 l1.splice(l1.end(), l2);
42 assert(l2.size() == 0);
43 assert(distance(l2.begin(), l2
77 std::list<int> l2; local
88 std::list<int> l2; local
189 std::list<int> l2; local
202 std::list<int> l2; local
203 l1.splice(next(l1.begin()), l2); local
215 std::list<int> l2; local
216 l1.splice(next(l1.begin(), 2), l2); local
244 l1.splice(next(l1.begin()), l2); local
259 l1.splice(next(l1.begin(), 2), l2); local
291 l1.splice(next(l1.begin()), l2); local
308 l1.splice(next(l1.begin(), 2), l2); local
346 l1.splice(next(l1.begin()), l2); local
367 l1.splice(next(l1.begin(), 2), l2); local
388 l1.splice(next(l1.begin(), 3), l2); local
417 std::list<int, min_allocator<int>> l2; local
465 std::list<int, min_allocator<int>> l2; local
476 std::list<int, min_allocator<int>> l2; local
577 std::list<int, min_allocator<int>> l2; local
590 std::list<int, min_allocator<int>> l2; local
591 l1.splice(next(l1.begin()), l2); local
603 std::list<int, min_allocator<int>> l2; local
604 l1.splice(next(l1.begin(), 2), l2); local
632 l1.splice(next(l1.begin()), l2); local
647 l1.splice(next(l1.begin(), 2), l2); local
679 l1.splice(next(l1.begin()), l2); local
696 l1.splice(next(l1.begin(), 2), l2); local
734 l1.splice(next(l1.begin()), l2); local
755 l1.splice(next(l1.begin(), 2), l2); local
776 l1.splice(next(l1.begin(), 3), l2); local
[all...]
H A Dsplice_pos_list_iter.pass.cpp29 std::list<int> l2(a2, a2+1);
30 l1.splice(l1.end(), l2, l2.begin());
33 assert(l2.size() == 0);
34 assert(distance(l2.begin(), l2.end()) == 0);
40 std::list<int> l2(a2, a2+2);
41 l1.splice(l1.end(), l2, l2.begin());
44 assert(l2
133 l1.splice(next(l1.begin()), l2, l2.begin()); local
298 l1.splice(next(l1.begin()), l2, l2.begin()); local
[all...]
H A Dsplice_pos_list_iter_iter.pass.cpp65 std::list<int> l2(a2, a2+3);
66 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end());
79 assert(l2.size() == 1);
80 i = l2.begin();
85 std::list<int> l2(a2, a2+3);
86 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2 local
191 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); local
[all...]
/external/libcxx/test/containers/sequences/vector/vector.cons/
H A Dmove.pass.cpp31 std::vector<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l); local
32 assert(l2 == lo);
34 assert(l2.get_allocator() == lo.get_allocator());
44 std::vector<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l); local
45 assert(l2 == lo);
47 assert(l2.get_allocator() == lo.get_allocator());
66 std::vector<MoveOnly, min_allocator<MoveOnly> > l2 = std::move(l); local
67 assert(l2 == lo);
69 assert(l2.get_allocator() == lo.get_allocator());
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableValueTestHelperTest.cpp87 RefPtr<SVGLengthList> l2 = SVGLengthList::create(); local
88 l2->append(length1cm);
89 l2->append(length2cm);
92 PrintToString(AnimatableStrokeDasharrayList::create(l2)));
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.depend/
H A Dp1.cpp32 auto l2 = []() [[carries_dependency]] {}; // expected-error {{'carries_dependency' attribute cannot be applied to types}} variable
/external/tcpdump/
H A Dprint-beep.c42 l_strnstart(const char *tstr1, u_int tl1, const char *str2, u_int l2) argument
45 if (tl1 > l2)
/external/chromium_org/components/invalidation/
H A Dsingle_object_invalidation_set_unittest.cc26 SingleObjectInvalidationSet l2; local
36 l2.Insert(inv1);
37 l2.Insert(inv2);
38 l2.Insert(inv0);
41 ASSERT_EQ(3U, l2.GetSize());
44 SingleObjectInvalidationSet::const_iterator it2 = l2.begin();
58 EXPECT_TRUE(it2 == l2.end());
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Ddefault-arguments.cpp16 auto l2 = [](int i, int j = i) {}; // expected-error{{default argument references parameter 'i'}} local
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp17 float &l2 = g2(f2()); member in namespace:std_example
/external/compiler-rt/include/sanitizer/
H A Ddfsan_interface.h35 dfsan_label l2; member in struct:dfsan_label_info
45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in
47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);

Completed in 1918 milliseconds

12345678