HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 176 - 200 of 15437) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/
iter_iter.pass.cpp 42 assert(distance(m.begin(), m.end()) == 9);
43 assert(*next(m.begin(), 0) == 1);
44 assert(*next(m.begin(), 1) == 1);
45 assert(*next(m.begin(), 2) == 1);
46 assert(*next(m.begin(), 3) == 2);
47 assert(*next(m.begin(), 4) == 2);
48 assert(*next(m.begin(), 5) == 2);
49 assert(*next(m.begin(), 6) == 3);
50 assert(*next(m.begin(), 7) == 3);
51 assert(*next(m.begin(), 8) == 3)
    [all...]
iter_iter_alloc.pass.cpp 48 assert(distance(m.begin(), m.end()) == 9);
49 assert(*next(m.begin(), 0) == 1);
50 assert(*next(m.begin(), 1) == 1);
51 assert(*next(m.begin(), 2) == 1);
52 assert(*next(m.begin(), 3) == 2);
53 assert(*next(m.begin(), 4) == 2);
54 assert(*next(m.begin(), 5) == 2);
55 assert(*next(m.begin(), 6) == 3);
56 assert(*next(m.begin(), 7) == 3);
57 assert(*next(m.begin(), 8) == 3)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
verinfo.ver 14 BEGIN
16 BEGIN
18 BEGIN
29 BEGIN
41 BEGIN
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/windres/
version_mlang.rc 13 BEGIN
15 BEGIN
17 BEGIN
28 BEGIN
40 BEGIN
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.rc 42 BEGIN
44 BEGIN
48 BEGIN
53 BEGIN
68 BEGIN
83 BEGIN
98 BEGIN
103 BEGIN
111 BEGIN
125 BEGIN
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
includes_test.cpp 55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end());
61 bool r2=includes(v1.begin(), v1.end(), v2.begin(), v2.end());
77 sort(v1.begin(), v1.end(), compare_strings);
78 sort(v2.begin(), v2.end(), compare_strings);
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings);
85 bool r2 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings)
    [all...]
perm_test.cpp 54 __iota(v1.begin(), v1.end(), 0);
56 prev_permutation(v1.begin(), v1.end());
60 prev_permutation(v1.begin(), v1.end());
64 prev_permutation(v1.begin(), v1.end());
68 prev_permutation(v1.begin(), v1.end());
72 prev_permutation(v1.begin(), v1.end());
76 prev_permutation(v1.begin(), v1.end());
80 prev_permutation(v1.begin(), v1.end());
84 prev_permutation(v1.begin(), v1.end());
88 prev_permutation(v1.begin(), v1.end())
    [all...]
  /ndk/tests/device/test-stlport/unit/
includes_test.cpp 55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end());
61 bool r2=includes(v1.begin(), v1.end(), v2.begin(), v2.end());
77 sort(v1.begin(), v1.end(), compare_strings);
78 sort(v2.begin(), v2.end(), compare_strings);
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings);
85 bool r2 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings)
    [all...]
perm_test.cpp 54 __iota(v1.begin(), v1.end(), 0);
56 prev_permutation(v1.begin(), v1.end());
60 prev_permutation(v1.begin(), v1.end());
64 prev_permutation(v1.begin(), v1.end());
68 prev_permutation(v1.begin(), v1.end());
72 prev_permutation(v1.begin(), v1.end());
76 prev_permutation(v1.begin(), v1.end());
80 prev_permutation(v1.begin(), v1.end());
84 prev_permutation(v1.begin(), v1.end());
88 prev_permutation(v1.begin(), v1.end())
    [all...]
  /sdk/find_java2/FindJava2/
FindJava2.rc 28 BEGIN
33 BEGIN
39 BEGIN
64 BEGIN
66 BEGIN
68 BEGIN
80 BEGIN
96 BEGIN
112 BEGIN
114 BEGIN
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.ops/
find.pass.cpp 43 assert(r == m.begin());
45 assert(r == next(m.begin()));
47 assert(r == next(m.begin(), 2));
49 assert(r == next(m.begin(), 3));
51 assert(r == next(m.begin(), 4));
53 assert(r == next(m.begin(), 5));
55 assert(r == next(m.begin(), 6));
57 assert(r == next(m.begin(), 7));
59 assert(r == next(m.begin(), 8));
76 assert(r == m.begin());
    [all...]
  /external/libcxx/test/std/containers/associative/multimap/multimap.cons/
iter_iter.pass.cpp 40 assert(distance(m.begin(), m.end()) == 9);
41 assert(*m.begin() == V(1, 1));
42 assert(*next(m.begin()) == V(1, 1.5));
43 assert(*next(m.begin(), 2) == V(1, 2));
44 assert(*next(m.begin(), 3) == V(2, 1));
45 assert(*next(m.begin(), 4) == V(2, 1.5));
46 assert(*next(m.begin(), 5) == V(2, 2));
47 assert(*next(m.begin(), 6) == V(3, 1));
48 assert(*next(m.begin(), 7) == V(3, 1.5));
49 assert(*next(m.begin(), 8) == V(3, 2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
iter_iter.pass.cpp 40 assert(distance(m.begin(), m.end()) == 9);
41 assert(*m.begin() == V(1, 1));
42 assert(*next(m.begin()) == V(1, 1.5));
43 assert(*next(m.begin(), 2) == V(1, 2));
44 assert(*next(m.begin(), 3) == V(2, 1));
45 assert(*next(m.begin(), 4) == V(2, 1.5));
46 assert(*next(m.begin(), 5) == V(2, 2));
47 assert(*next(m.begin(), 6) == V(3, 1));
48 assert(*next(m.begin(), 7) == V(3, 1.5));
49 assert(*next(m.begin(), 8) == V(3, 2))
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 29 typename S::difference_type pos = p - s.begin();
33 assert(i - s.begin() == pos);
44 test(s, s.begin(), '1', S("1"));
45 test(s, s.begin(), 'a', S("a1"));
52 test(s, s.begin()+1, '5', S("a51432dcb"));
53 test(s, s.begin()+2, '6', S("a561432dcb"));
54 test(s, s.begin()+3, '7', S("a5671432dcb"));
55 test(s, s.begin()+4, 'A', S("a567A1432dcb"));
56 test(s, s.begin()+5, 'B', S("a567AB1432dcb"));
57 test(s, s.begin()+6, 'C', S("a567ABC1432dcb"))
    [all...]
  /frameworks/rs/
spec.l 51 "/*" BEGIN(comment);
55 <comment>"*"+"/" BEGIN(INITIAL);
64 BEGIN(api_entry);
68 BEGIN(api_entry2);
90 BEGIN(var_type);
97 BEGIN(var_type);
107 BEGIN(typeNextState);
113 BEGIN(typeNextState);
119 BEGIN(typeNextState);
125 BEGIN(typeNextState)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_insert/
iter_char.pass.cpp 29 typename S::difference_type pos = p - s.begin();
33 assert(i - s.begin() == pos);
44 test(s, s.begin(), '1', S("1"));
45 test(s, s.begin(), 'a', S("a1"));
52 test(s, s.begin()+1, '5', S("a51432dcb"));
53 test(s, s.begin()+2, '6', S("a561432dcb"));
54 test(s, s.begin()+3, '7', S("a5671432dcb"));
55 test(s, s.begin()+4, 'A', S("a567A1432dcb"));
56 test(s, s.begin()+5, 'B', S("a567AB1432dcb"));
57 test(s, s.begin()+6, 'C', S("a567ABC1432dcb"))
    [all...]
  /external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
emplace.pass.cpp 33 assert(r == m.begin());
35 assert(m.begin()->first == 0);
36 assert(m.begin()->second == DefaultOnly());
40 assert(r == next(m.begin()));
42 assert(next(m.begin())->first == 1);
43 assert(next(m.begin())->second == DefaultOnly());
47 assert(r == next(m.begin(), 2));
49 assert(next(m.begin(), 2)->first == 1);
50 assert(next(m.begin(), 2)->second == DefaultOnly());
60 assert(r == m.begin());
    [all...]
emplace_hint.pass.cpp 33 assert(r == m.begin());
35 assert(m.begin()->first == 0);
36 assert(m.begin()->second == DefaultOnly());
41 assert(r == next(m.begin()));
43 assert(next(m.begin())->first == 1);
44 assert(next(m.begin())->second == DefaultOnly());
49 assert(r == next(m.begin(), 2));
51 assert(next(m.begin(), 2)->first == 1);
52 assert(next(m.begin(), 2)->second == DefaultOnly());
63 assert(r == m.begin());
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/
emplace.pass.cpp 33 assert(r == m.begin());
35 assert(m.begin()->first == 0);
36 assert(m.begin()->second == DefaultOnly());
40 assert(r == next(m.begin()));
42 assert(next(m.begin())->first == 1);
43 assert(next(m.begin())->second == DefaultOnly());
47 assert(r == next(m.begin(), 2));
49 assert(next(m.begin(), 2)->first == 1);
50 assert(next(m.begin(), 2)->second == DefaultOnly());
60 assert(r == m.begin());
    [all...]
emplace_hint.pass.cpp 33 assert(r == m.begin());
35 assert(m.begin()->first == 0);
36 assert(m.begin()->second == DefaultOnly());
41 assert(r == next(m.begin()));
43 assert(next(m.begin())->first == 1);
44 assert(next(m.begin())->second == DefaultOnly());
49 assert(r == next(m.begin(), 2));
51 assert(next(m.begin(), 2)->first == 1);
52 assert(next(m.begin(), 2)->second == DefaultOnly());
63 assert(r == m.begin());
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
token_iterator.hpp 217 bool get( Iter& begin, Iter end )
225 while( begin != end && m_is_dropped( *begin ) )
226 ++begin;
228 if( begin == end )
231 check_point = begin;
234 while( begin != end )
235 Assigner::append_move( begin, this->m_value );
236 else if( m_is_kept( *begin ) )
237 Assigner::append_move( begin, this->m_value )
319 typename cstring::iterator begin = m_src.begin(); local
    [all...]
  /external/icu/icu4c/source/common/
uchriter.cpp 81 && begin == realThat.begin
87 return ustr_hashUCharsN(text, textLength) ^ pos ^ begin ^ end;
97 pos = begin;
107 pos = begin;
118 if(pos > begin) {
127 if(position < begin) {
128 pos = begin;
143 if (pos >= begin && pos < end) {
177 if (pos > begin) {
    [all...]
  /external/lzma/C/Util/7z/
7z.dsp 24 # Begin Project
82 # Begin Target
86 # Begin Group "Common"
89 # Begin Source File
93 # Begin Source File
97 # Begin Source File
101 # Begin Source File
105 # Begin Source File
109 # Begin Source File
113 # Begin Source File
    [all...]
  /external/libcxx/test/std/containers/associative/multiset/
insert_iter_iter.pass.cpp 44 assert(*next(m.begin(), 0) == 1);
45 assert(*next(m.begin(), 1) == 1);
46 assert(*next(m.begin(), 2) == 1);
47 assert(*next(m.begin(), 3) == 2);
48 assert(*next(m.begin(), 4) == 2);
49 assert(*next(m.begin(), 5) == 2);
50 assert(*next(m.begin(), 6) == 3);
51 assert(*next(m.begin(), 7) == 3);
52 assert(*next(m.begin(), 8) == 3);
74 assert(*next(m.begin(), 0) == 1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.ops/
equal_range.pass.cpp 44 assert(r.first == m.begin());
45 assert(r.second == m.begin());
47 assert(r.first == m.begin());
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...]

Completed in 1225 milliseconds

1 2 3 4 5 6 78 91011>>