/ndk/tests/device/test-stlport-copy_vector_into_a_set/jni/ |
copy_vector_into_a_set.cpp | 46 SetOfForms set1(vector1.begin(), vector1.end()); 49 std::copy(vector1.begin(), vector1.end(), std::inserter(set1, set1.begin())); 51 for(std::vector<PasswordForm*>::iterator iter = vector1.begin(); iter != vector1.end(); ++iter) { 56 for(SetOfForms::iterator iter = set1.begin(); iter != set1.end(); ++iter) {
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
pcrel.s | 6 .macro begin n, attr 41 begin mov, "ax" label 56 begin movl, "ax" label 71 begin data8, "a" label 80 begin data4, "a" label
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Collections.pas | 169 begin 177 begin 185 begin 192 begin 197 begin 202 begin 207 begin 210 begin 215 begin 223 begin [all...] |
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
remove.pass.cpp | 38 C c1(std::begin(t1), std::end(t1)); 39 C c2(std::begin(t2), std::end(t2)); 47 C c1(std::begin(t1), std::end(t1)); 57 C c1(std::begin(t1), std::end(t1)); 58 C c2(std::begin(t2), std::end(t2)); 75 C c1(std::begin(t1), std::end(t1)); 76 C c2(std::begin(t2), std::end(t2)); 85 C c1(std::begin(t1), std::end(t1)); 86 C c2(std::begin(t2), std::end(t2)); 96 for(int *ip = std::end(t1); ip != std::begin(t1); [all...] |
/libcore/ojluni/src/main/java/java/text/ |
StringCharacterIterator.java | 55 private int begin; field in class:StringCharacterIterator 57 // invariant: begin <= pos <= end 84 * @param begin Index of the first character 88 public StringCharacterIterator(String text, int begin, int end, int pos) { 93 if (begin < 0 || begin > end || end > text.length()) 96 if (pos < begin || pos > end) 99 this.begin = begin; 117 this.begin = 0 [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/ |
sequence.hpp | 17 #include <boost/range/begin.hpp> 32 ForwardIteratorT Begin, 35 Input.insert( At, Begin, End ); 44 ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) ); 74 ForwardIteratorT Begin, 78 ForwardIteratorT InsertIt=Begin; 110 ForwardIteratorT Begin, 114 if ( Begin!=End ) 118 Input.insert( At, Begin, End ); 122 Input.insert( Input.begin(), Begin, End ) [all...] |
/system/core/libmemunreachable/ |
HeapWalker.cpp | 31 bool HeapWalker::Allocation(uintptr_t begin, uintptr_t end) { 32 if (end == begin) { 33 end = begin + 1; 35 Range range{begin, end}; 38 valid_allocations_range_.begin = std::min(valid_allocations_range_.begin, begin); 46 reinterpret_cast<void*>(begin), 48 reinterpret_cast<void*>(overlap.begin), 62 if (value >= valid_allocations_range_.begin && value < valid_allocations_range_.end) [all...] |
HeapWalker.h | 28 // A range [begin, end) 30 uintptr_t begin; member in struct:Range 33 size_t size() const { return end - begin; }; 35 return this->begin == other.begin && this->end == other.end; 45 return a.end <= b.begin; 56 valid_allocations_range_.begin = ~valid_allocations_range_.end; 65 bool Allocation(uintptr_t begin, uintptr_t end); 66 void Root(uintptr_t begin, uintptr_t end); 108 uintptr_t begin = (range.begin + (sizeof(uintptr_t) - 1)) & ~(sizeof(uintptr_t) - 1) local [all...] |
/build/kati/testcase/ |
override_define.mk | 28 echo two BEGIN $(two-lines) END $(flavor two-lines) 29 echo three BEGIN $(three-lines) END $(flavor three-lines) 30 echo four BEGIN $(four-lines) END $(flavor four-lines)
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tools.Tests.pas | 125 begin 130 begin 137 begin 144 begin 149 begin 156 begin 164 begin 171 begin 176 begin 184 begin [all...] |
/external/ceres-solver/internal/ceres/ |
stl_util.h | 49 void STLDeleteContainerPointers(ForwardIterator begin, 51 while (begin != end) { 52 ForwardIterator temp = begin; 53 ++begin; 61 void STLDeleteUniqueContainerPointers(ForwardIterator begin, 63 sort(begin, end); 64 ForwardIterator new_end = unique(begin, end); 65 while (begin != new_end) { 66 ForwardIterator temp = begin; 67 ++begin; [all...] |
/external/clang/test/SemaObjC/ |
severe-syntax-error.m | 11 static NSArray* prefixArray[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{array initializer must be an initializer list}} \ 15 static NSString* prefixArray1[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{unknown type name 'NSString'}} \ 19 static char* cArray[] = "BEGIN:", "END"; // expected-error {{array initializer must be an initializer list}} \
|
/external/libcxx/test/std/containers/associative/map/map.cons/ |
initializer_list_compare_alloc.pass.cpp | 41 assert(distance(m.begin(), m.end()) == 3); 42 assert(*m.begin() == V(1, 1)); 43 assert(*next(m.begin()) == V(2, 1)); 44 assert(*next(m.begin(), 2) == V(3, 1)); 65 assert(distance(m.begin(), m.end()) == 3); 66 assert(*m.begin() == V(1, 1)); 67 assert(*next(m.begin()) == V(2, 1)); 68 assert(*next(m.begin(), 2) == V(3, 1)); 91 assert(distance(m.begin(), m.end()) == 3); 92 assert(*m.begin() == V(1, 1)) [all...] |
iter_iter_comp_alloc.pass.cpp | 47 assert(distance(m.begin(), m.end()) == 3); 48 assert(*m.begin() == V(1, 1)); 49 assert(*next(m.begin()) == V(2, 1)); 50 assert(*next(m.begin(), 2) == V(3, 1)); 73 assert(distance(m.begin(), m.end()) == 3); 74 assert(*m.begin() == V(1, 1)); 75 assert(*next(m.begin()) == V(2, 1)); 76 assert(*next(m.begin(), 2) == V(3, 1)); 100 assert(distance(m.begin(), m.end()) == 3); 101 assert(*m.begin() == V(1, 1)) [all...] |
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
insert_iter_iter.pass.cpp | 43 assert(m.begin()->first == 1); 44 assert(m.begin()->second == 1); 45 assert(next(m.begin())->first == 2); 46 assert(next(m.begin())->second == 1); 47 assert(next(m.begin(), 2)->first == 3); 48 assert(next(m.begin(), 2)->second == 1); 69 assert(m.begin()->first == 1); 70 assert(m.begin()->second == 1); 71 assert(next(m.begin())->first == 2); 72 assert(next(m.begin())->second == 1) [all...] |
/external/libcxx/test/std/containers/associative/set/set.cons/ |
move.pass.cpp | 35 assert(distance(m.begin(), m.end()) == 0); 40 assert(distance(mo.begin(), mo.end()) == 0); 63 assert(distance(m.begin(), m.end()) == 3); 64 assert(*m.begin() == 1); 65 assert(*next(m.begin()) == 2); 66 assert(*next(m.begin(), 2) == 3); 71 assert(distance(mo.begin(), mo.end()) == 0); 95 assert(distance(m.begin(), m.end()) == 3); 96 assert(*m.begin() == 1); 97 assert(*next(m.begin()) == 2) [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/visualc/ |
freetype.dsp | 28 # Begin Project
185 # Begin Target
193 # Begin Group "Source Files"
196 # Begin Source File
200 # Begin Source File
205 # Begin Source File
210 # Begin Source File
215 # Begin Source File
219 # Begin Source File
223 # Begin Source File [all...] |
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/windows/visualce/ |
freetype.dsp | 28 # Begin Project
185 # Begin Target
193 # Begin Group "Source Files"
196 # Begin Source File
200 # Begin Source File
205 # Begin Source File
210 # Begin Source File
215 # Begin Source File
219 # Begin Source File
223 # Begin Source File [all...] |
/external/tinyxml/ |
tinyxmlSTL.dsp | 24 # Begin Project
81 # Begin Target
85 # Begin Group "Source Files"
88 # Begin Source File
92 # Begin Source File
96 # Begin Source File
100 # Begin Source File
105 # Begin Group "Header Files"
108 # Begin Source File
112 # Begin Source File [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/ |
initializer_list_compare_alloc.pass.cpp | 41 assert(distance(m.begin(), m.end()) == 3); 42 assert(*m.begin() == V(1, 1)); 43 assert(*next(m.begin()) == V(2, 1)); 44 assert(*next(m.begin(), 2) == V(3, 1)); 65 assert(distance(m.begin(), m.end()) == 3); 66 assert(*m.begin() == V(1, 1)); 67 assert(*next(m.begin()) == V(2, 1)); 68 assert(*next(m.begin(), 2) == V(3, 1)); 91 assert(distance(m.begin(), m.end()) == 3); 92 assert(*m.begin() == V(1, 1)) [all...] |
iter_iter_comp_alloc.pass.cpp | 47 assert(distance(m.begin(), m.end()) == 3); 48 assert(*m.begin() == V(1, 1)); 49 assert(*next(m.begin()) == V(2, 1)); 50 assert(*next(m.begin(), 2) == V(3, 1)); 73 assert(distance(m.begin(), m.end()) == 3); 74 assert(*m.begin() == V(1, 1)); 75 assert(*next(m.begin()) == V(2, 1)); 76 assert(*next(m.begin(), 2) == V(3, 1)); 100 assert(distance(m.begin(), m.end()) == 3); 101 assert(*m.begin() == V(1, 1)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/ |
insert_iter_iter.pass.cpp | 43 assert(m.begin()->first == 1); 44 assert(m.begin()->second == 1); 45 assert(next(m.begin())->first == 2); 46 assert(next(m.begin())->second == 1); 47 assert(next(m.begin(), 2)->first == 3); 48 assert(next(m.begin(), 2)->second == 1); 69 assert(m.begin()->first == 1); 70 assert(m.begin()->second == 1); 71 assert(next(m.begin())->first == 2); 72 assert(next(m.begin())->second == 1) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/ |
move.pass.cpp | 35 assert(distance(m.begin(), m.end()) == 0); 40 assert(distance(mo.begin(), mo.end()) == 0); 63 assert(distance(m.begin(), m.end()) == 3); 64 assert(*m.begin() == 1); 65 assert(*next(m.begin()) == 2); 66 assert(*next(m.begin(), 2) == 3); 71 assert(distance(mo.begin(), mo.end()) == 0); 95 assert(distance(m.begin(), m.end()) == 3); 96 assert(*m.begin() == 1); 97 assert(*next(m.begin()) == 2) [all...] |
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/ |
push_front_const.pass.cpp | 27 assert(distance(c.begin(), c.end()) == 1); 30 assert(*next(c.begin()) == 1); 31 assert(distance(c.begin(), c.end()) == 2); 40 assert(distance(c.begin(), c.end()) == 1); 43 assert(*next(c.begin()) == 1); 44 assert(distance(c.begin(), c.end()) == 2);
|
/external/libusb-compat/libusb/ |
usbi.h | 25 #define LIST_ADD(begin, ent) \ 27 if (begin) { \ 28 ent->next = begin; \ 33 begin = ent; \ 36 #define LIST_DEL(begin, ent) \ 41 begin = ent->next; \
|