HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 201 - 225 of 10864) sorted by null

1 2 3 4 5 6 7 891011>>

  /ndk/tests/device/test-gnustl-full/unit/
mvctor_test.cpp 58 v_v_ints.erase(v_v_ints.begin() + 1);
90 vec_strs.erase(vec_strs.begin() + 1);
118 unsigned int *punit = v_v_bits.front().begin()._M_iterator._M_p;
120 unsigned int *punit = v_v_bits.front().begin()._M_p;
132 CPPUNIT_ASSERT( punit == v_v_bits.front().begin()._M_iterator._M_p );
134 CPPUNIT_ASSERT( punit == v_v_bits.front().begin()._M_p );
190 vect_deque.insert(vect_deque.begin() + pos, vect_vect.begin(), vect_vect.end());
191 bufs.insert(bufs.begin() + pos, &vect_deque[pos].front());
192 bufs.insert(bufs.begin() + pos + 1, &vect_deque[pos + 1].front())
    [all...]
uninitialized_test.cpp 94 uninitialized_copy(src.begin(), src.end(), dst.begin());
95 vector<NotTrivialCopyStruct>::const_iterator it(dst.begin()), end(dst.end());
132 list<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
137 uninitialized_copy(src.begin(), src.end(), dst.begin());
139 for (it = dst.begin(); it != end; ++it) {
148 vector<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
153 uninitialized_copy(src.begin(), src.end(), dst.begin());
    [all...]
  /ndk/tests/device/test-stlport/unit/
mvctor_test.cpp 58 v_v_ints.erase(v_v_ints.begin() + 1);
90 vec_strs.erase(vec_strs.begin() + 1);
118 unsigned int *punit = v_v_bits.front().begin()._M_iterator._M_p;
120 unsigned int *punit = v_v_bits.front().begin()._M_p;
132 CPPUNIT_ASSERT( punit == v_v_bits.front().begin()._M_iterator._M_p );
134 CPPUNIT_ASSERT( punit == v_v_bits.front().begin()._M_p );
190 vect_deque.insert(vect_deque.begin() + pos, vect_vect.begin(), vect_vect.end());
191 bufs.insert(bufs.begin() + pos, &vect_deque[pos].front());
192 bufs.insert(bufs.begin() + pos + 1, &vect_deque[pos + 1].front())
    [all...]
uninitialized_test.cpp 94 uninitialized_copy(src.begin(), src.end(), dst.begin());
95 vector<NotTrivialCopyStruct>::const_iterator it(dst.begin()), end(dst.end());
132 list<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
137 uninitialized_copy(src.begin(), src.end(), dst.begin());
139 for (it = dst.begin(); it != end; ++it) {
148 vector<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
153 uninitialized_copy(src.begin(), src.end(), dst.begin());
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
partition.h 48 * @param begin Begin iterator of input sequence to split.
55 parallel_partition(RandomAccessIterator begin, RandomAccessIterator end,
62 difference_type n = end - begin;
160 while (pred(begin[thread_left])
163 while (!pred(begin[thread_right])
172 std::swap(begin[thread_left], begin[thread_right]);
235 std::swap_ranges(begin + thread_left_border
237 begin + thread_left_border + 1
    [all...]
balanced_quicksort.h 92 * @param begin Begin iterator of subsequence.
97 * @pre @c (end-begin)>=1 */
100 qsb_divide(RandomAccessIterator begin, RandomAccessIterator end,
110 median_of_three_iterators(begin, begin + (end - begin) / 2,
115 difference_type n = end - begin;
118 (!comp(*pivot_pos, *begin) && !comp(*(begin + n / 2), *pivot_pos)
268 RandomAccessIterator begin = current.first, end = current.second; local
    [all...]
  /external/quake/quake/src/WinQuake/
WinQuake.dsp 26 # Begin Project
148 # Begin Target
154 # Begin Group "Source Files"
157 # Begin Source File
161 # Begin Source File
165 # Begin Source File
169 # Begin Source File
173 # Begin Source File
177 # Begin Source File
181 # Begin Source File
    [all...]
  /external/llvm/utils/
lldbDataFormatters.py 15 begin = self.begin.GetValueAsUnsigned(0)
17 return (end - begin)/self.type_size
33 return self.begin.CreateChildAtOffset('['+str(index)+']',
37 self.begin = self.valobj.GetChildMemberWithName('BeginX')
  /external/stlport/test/unit/
uninitialized_test.cpp 94 uninitialized_copy(src.begin(), src.end(), dst.begin());
95 vector<NotTrivialCopyStruct>::const_iterator it(dst.begin()), end(dst.end());
132 list<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
137 uninitialized_copy(src.begin(), src.end(), dst.begin());
139 for (it = dst.begin(); it != end; ++it) {
148 vector<NotTrivialCopyStruct>::iterator it(dst.begin()), end(dst.end());
153 uninitialized_copy(src.begin(), src.end(), dst.begin());
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
Splitter.java 69 int begin = 0; local
71 while (separatorCount + 1 != limit && (end = input.indexOf(ch, begin)) != -1) {
73 begin = end + 1;
76 if (limit == 0 && begin == lastPartEnd) {
84 --begin;
85 } while (input.charAt(begin - 1) == ch);
87 separatorCount -= input.length() - begin;
88 lastPartEnd = begin;
93 begin = 0;
95 end = input.indexOf(ch, begin);
119 int begin = 0; local
    [all...]
  /ndk/tests/device/test-gnustl-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) {
  /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) {
  /external/libusb_aah/msvc/
libusb_dll.dsp 24 # Begin Project
87 # Begin Target
91 # Begin Group "Source Files"
94 # Begin Source File
98 # Begin Source File
103 # Begin Source File
107 # Begin Source File
111 # Begin Source File
115 # Begin Source File
119 # Begin Source File
    [all...]
  /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/stlport/test/eh/
test_algo.cpp 41 SortClass* begin() { return items; } function in struct:SortBuffer
42 const SortClass* begin() const { return items; } function in struct:SortBuffer
50 EH_STD::sort( begin(), begin() + ( end() - begin() )/2 );
51 EH_STD::sort( begin() + ( end() - begin() )/2, end() );
52 for ( SortClass* p = begin(); p != end(); p++ )
63 SortClass* q = begin();
64 for ( const SortClass* p = rhs.begin() ; p != rhs.end(); p++,q++
    [all...]
  /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/chromium/base/
string_number_conversions.cc 80 DCHECK(it != outbuf.begin());
88 DCHECK(it != outbuf.begin());
176 static bool Invoke(const_iterator begin,
181 while (begin != end && LocalIsWhitespace(*begin)) {
183 ++begin;
186 if (begin != end && *begin == '-') {
187 if (!Negative::Invoke(begin + 1, end, output)) {
191 if (begin != end && *begin == '+')
    [all...]
  /external/chromium/chrome/browser/
browser_util_win.cc 23 std::replace(exe.begin(), exe.end(), '\\', '!');
24 std::transform(exe.begin(), exe.end(), exe.begin(), tolower);
  /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/qemu-pc-bios/vgabios/
dataseghack 4 'BEGIN { }\
10 'BEGIN { i = 0; last = "hello" }\
16 'BEGIN { }\
  /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...]
  /external/v8/src/
v8conversions.cc 87 const char* begin = SeqAsciiString::cast(str)->GetChars(); local
88 const char* end = begin + str->length();
89 return InternalStringToDouble(unicode_cache, begin, end, flags,
92 const uc16* begin = SeqTwoByteString::cast(str)->GetChars(); local
93 const uc16* end = begin + str->length();
94 return InternalStringToDouble(unicode_cache, begin, end, flags,
112 const char* begin = SeqAsciiString::cast(str)->GetChars(); local
113 const char* end = begin + str->length();
114 return InternalStringToInt(unicode_cache, begin, end, radix);
116 const uc16* begin = SeqTwoByteString::cast(str)->GetChars() local
    [all...]
  /external/webkit/Tools/WebKitLauncherWin/
WebKitLauncherWin.rc 38 BEGIN
43 BEGIN
51 BEGIN
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/multimap/multimap.ops/
lower_bound.pass.cpp 40 assert(r == m.begin());
42 assert(r == m.begin());
44 assert(r == next(m.begin(), 3));
46 assert(r == next(m.begin(), 3));
48 assert(r == next(m.begin(), 6));
50 assert(r == next(m.begin(), 6));
70 assert(r == m.begin());
72 assert(r == m.begin());
74 assert(r == next(m.begin(), 3));
76 assert(r == next(m.begin(), 3))
    [all...]
upper_bound.pass.cpp 40 assert(r == m.begin());
42 assert(r == next(m.begin(), 3));
44 assert(r == next(m.begin(), 3));
46 assert(r == next(m.begin(), 6));
48 assert(r == next(m.begin(), 6));
50 assert(r == next(m.begin(), 9));
70 assert(r == m.begin());
72 assert(r == next(m.begin(), 3));
74 assert(r == next(m.begin(), 3));
76 assert(r == next(m.begin(), 6))
    [all...]

Completed in 889 milliseconds

1 2 3 4 5 6 7 891011>>