/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
erase_iter.pass.cpp | 50 assert(i == next(m.begin(), 3)); 51 assert(m.begin()->first == 1); 52 assert(m.begin()->second == 1.5); 53 assert(next(m.begin())->first == 2); 54 assert(next(m.begin())->second == 2.5); 55 assert(next(m.begin(), 2)->first == 3); 56 assert(next(m.begin(), 2)->second == 3.5); 57 assert(next(m.begin(), 3)->first == 5); 58 assert(next(m.begin(), 3)->second == 5.5); 59 assert(next(m.begin(), 4)->first == 6) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/ |
erase_iter.pass.cpp | 42 assert(i == next(m.begin(), 3)); 43 assert(m.begin()->first == 1); 44 assert(m.begin()->second == 1.5); 45 assert(next(m.begin())->first == 2); 46 assert(next(m.begin())->second == 2.5); 47 assert(next(m.begin(), 2)->first == 3); 48 assert(next(m.begin(), 2)->second == 3.5); 49 assert(next(m.begin(), 3)->first == 5); 50 assert(next(m.begin(), 3)->second == 5.5); 51 assert(next(m.begin(), 4)->first == 6) [all...] |
/external/clang/test/CodeGen/ |
2002-07-17-StringConstant.c | 4 char * foo() { return "\\begin{"; }
|
/external/clang/test/Modules/Inputs/template-default-args/ |
d.h | 0 BEGIN
|
/external/e2fsprogs/misc/ |
profile-to-c.awk | 2 BEGIN {
|
/external/icu/icu4c/source/common/ |
chariter.cpp | 22 : textLength(0), pos(0), begin(0), end(0) { 26 : textLength(length), pos(0), begin(0), end(length) { 33 : textLength(length), pos(position), begin(0), end(length) { 45 : textLength(length), pos(position), begin(textBegin), end(textEnd) { 49 if(begin < 0) { 50 begin = 0; 51 } else if(begin > textLength) { 52 begin = textLength; 54 if(end < begin) { 55 end = begin; [all...] |
/frameworks/opt/vcard/tests/res/raw/ |
v21_japanese_3.vcf | 0 BEGIN:VCARD
|
v30_japanese.vcf | 0 BEGIN:VCARD
|
v30_multibyte_param.vcf | 0 BEGIN:VCARD
|
v30_pause_wait.vcf | 0 BEGIN:VCARD
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/ |
capstyle.rc | 3 BEGIN
|
dialogsignature.rc | 3 BEGIN
|
escapex-2.rc | 2 BEGIN
|
escapex.rc | 2 BEGIN
|
printstyle.rc | 3 BEGIN
|
scrollbar.rc | 2 BEGIN
|
strtab2.rc | 6 BEGIN
|
sublang.rc | 3 BEGIN
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/ |
resize_size.pass.cpp | 27 assert(distance(c.begin(), c.end()) == 0); 29 assert(distance(c.begin(), c.end()) == 10); 31 assert(distance(c.begin(), c.end()) == 20); 33 assert(distance(c.begin(), c.end()) == 5); 35 assert(distance(c.begin(), c.end()) == 0); 41 C c(std::begin(t), std::end(t)); 44 assert(distance(c.begin(), c.end()) == 3); 45 assert(*next(c.begin(), 0) == 0); 46 assert(*next(c.begin(), 1) == 1); 47 assert(*next(c.begin(), 2) == 2) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/ |
resize_size.pass.cpp | 27 assert(distance(c.begin(), c.end()) == 0); 29 assert(distance(c.begin(), c.end()) == 10); 31 assert(distance(c.begin(), c.end()) == 20); 33 assert(distance(c.begin(), c.end()) == 5); 35 assert(distance(c.begin(), c.end()) == 0); 41 C c(std::begin(t), std::end(t)); 44 assert(distance(c.begin(), c.end()) == 3); 45 assert(*next(c.begin(), 0) == 0); 46 assert(*next(c.begin(), 1) == 1); 47 assert(*next(c.begin(), 2) == 2) [all...] |
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
splice_pos_list_iter.pass.cpp | 30 l1.splice(l1.end(), l2, l2.begin()); 32 assert(distance(l1.begin(), l1.end()) == 1); 34 assert(distance(l2.begin(), l2.end()) == 0); 35 std::list<int>::const_iterator i = l1.begin(); 41 l1.splice(l1.end(), l2, l2.begin()); 43 assert(distance(l1.begin(), l1.end()) == 1); 45 assert(distance(l2.begin(), l2.end()) == 1); 46 std::list<int>::const_iterator i = l1.begin(); 48 i = l2.begin(); 54 l1.splice(l1.end(), l2, next(l2.begin())); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
splice_pos_list_iter.pass.cpp | 30 l1.splice(l1.end(), l2, l2.begin()); 32 assert(distance(l1.begin(), l1.end()) == 1); 34 assert(distance(l2.begin(), l2.end()) == 0); 35 std::list<int>::const_iterator i = l1.begin(); 41 l1.splice(l1.end(), l2, l2.begin()); 43 assert(distance(l1.begin(), l1.end()) == 1); 45 assert(distance(l2.begin(), l2.end()) == 1); 46 std::list<int>::const_iterator i = l1.begin(); 48 i = l2.begin(); 54 l1.splice(l1.end(), l2, next(l2.begin())); [all...] |
/external/libcxx/test/std/containers/associative/multiset/ |
equal_range.pass.cpp | 44 assert(r.first == next(m.begin(), 0)); 45 assert(r.second == next(m.begin(), 0)); 47 assert(r.first == next(m.begin(), 0)); 48 assert(r.second == next(m.begin(), 3)); 50 assert(r.first == next(m.begin(), 3)); 51 assert(r.second == next(m.begin(), 3)); 53 assert(r.first == next(m.begin(), 3)); 54 assert(r.second == next(m.begin(), 6)); 56 assert(r.first == next(m.begin(), 6)); 57 assert(r.second == next(m.begin(), 6)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
equal_range.pass.cpp | 44 assert(r.first == next(m.begin(), 0)); 45 assert(r.second == next(m.begin(), 0)); 47 assert(r.first == next(m.begin(), 0)); 48 assert(r.second == next(m.begin(), 3)); 50 assert(r.first == next(m.begin(), 3)); 51 assert(r.second == next(m.begin(), 3)); 53 assert(r.first == next(m.begin(), 3)); 54 assert(r.second == next(m.begin(), 6)); 56 assert(r.first == next(m.begin(), 6)); 57 assert(r.second == next(m.begin(), 6)) [all...] |
/external/lzma/CPP/7zip/Bundles/SFXCon/ |
SFXCon.dsp | 24 # Begin Project
82 # Begin Target
86 # Begin Group "Spec"
89 # Begin Source File
93 # Begin Source File
97 # Begin Source File
102 # Begin Source File
107 # Begin Group "Archive Common"
110 # Begin Source File
114 # Begin Source File [all...] |