HomeSort by relevance Sort by last modified time
    Searched full:begin (Results 51 - 75 of 17279) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/content/shell/app/
shell.rc 26 BEGIN
28 BEGIN
34 BEGIN
46 BEGIN
51 BEGIN
59 BEGIN
75 BEGIN
84 BEGIN
94 BEGIN
109 BEGIN
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.ops/
lower_bound.pass.cpp 42 assert(r == m.begin());
44 assert(r == next(m.begin()));
46 assert(r == next(m.begin(), 2));
48 assert(r == next(m.begin(), 3));
50 assert(r == next(m.begin(), 4));
52 assert(r == next(m.begin(), 5));
54 assert(r == next(m.begin(), 6));
56 assert(r == next(m.begin(), 7));
58 assert(r == next(m.begin(), 0));
60 assert(r == next(m.begin(), 1))
    [all...]
upper_bound.pass.cpp 42 assert(r == next(m.begin(), 1));
44 assert(r == next(m.begin(), 2));
46 assert(r == next(m.begin(), 3));
48 assert(r == next(m.begin(), 4));
50 assert(r == next(m.begin(), 5));
52 assert(r == next(m.begin(), 6));
54 assert(r == next(m.begin(), 7));
56 assert(r == next(m.begin(), 8));
58 assert(r == next(m.begin(), 0));
60 assert(r == next(m.begin(), 1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
lower_bound.pass.cpp 42 assert(r == m.begin());
44 assert(r == next(m.begin()));
46 assert(r == next(m.begin(), 2));
48 assert(r == next(m.begin(), 3));
50 assert(r == next(m.begin(), 4));
52 assert(r == next(m.begin(), 5));
54 assert(r == next(m.begin(), 6));
56 assert(r == next(m.begin(), 7));
58 assert(r == next(m.begin(), 0));
60 assert(r == next(m.begin(), 1))
    [all...]
upper_bound.pass.cpp 42 assert(r == next(m.begin(), 1));
44 assert(r == next(m.begin(), 2));
46 assert(r == next(m.begin(), 3));
48 assert(r == next(m.begin(), 4));
50 assert(r == next(m.begin(), 5));
52 assert(r == next(m.begin(), 6));
54 assert(r == next(m.begin(), 7));
56 assert(r == next(m.begin(), 8));
58 assert(r == next(m.begin(), 0));
60 assert(r == next(m.begin(), 1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
erase_after_one.pass.cpp 25 C c(std::begin(t), std::end(t));
29 assert(distance(c.begin(), c.end()) == 4);
30 assert(*next(c.begin(), 0) == 0);
31 assert(*next(c.begin(), 1) == 1);
32 assert(*next(c.begin(), 2) == 2);
33 assert(*next(c.begin(), 3) == 3);
36 assert(i == c.begin());
37 assert(distance(c.begin(), c.end()) == 3);
38 assert(*next(c.begin(), 0) == 1);
39 assert(*next(c.begin(), 1) == 2)
    [all...]
  /external/stlport/test/unit/
rndshf_test.cpp 56 __iota(v1.begin(), v1.end(), 0);
61 random_shuffle(v1.begin(), v1.end(), r);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1);
66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1);
67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1);
68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1);
69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.ops/
equal_range.pass.cpp 43 assert(r.first == m.begin());
44 assert(r.second == m.begin());
46 assert(r.first == m.begin());
47 assert(r.second == next(m.begin(), 3));
49 assert(r.first == next(m.begin(), 3));
50 assert(r.second == next(m.begin(), 3));
52 assert(r.first == next(m.begin(), 3));
53 assert(r.second == next(m.begin(), 6));
55 assert(r.first == next(m.begin(), 6));
56 assert(r.second == next(m.begin(), 6))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
rndshf_test.cpp 56 __iota(v1.begin(), v1.end(), 0);
61 random_shuffle(v1.begin(), v1.end(), r);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1);
66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1);
67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1);
68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1);
69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1)
    [all...]
  /ndk/tests/device/test-stlport/unit/
rndshf_test.cpp 56 __iota(v1.begin(), v1.end(), 0);
61 random_shuffle(v1.begin(), v1.end(), r);
62 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 0)==1);
63 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 1)==1);
64 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 2)==1);
65 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 3)==1);
66 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 4)==1);
67 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 5)==1);
68 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 6)==1);
69 CPPUNIT_ASSERT(count(v1.begin(), v1.end(), 7)==1)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t032subrulePredict.g 6 a: 'BEGIN' b WS+ 'END';
  /external/antlr/antlr-3.4/runtime/Python/tests/
t032subrulePredict.g 6 a: 'BEGIN' b WS+ 'END';
  /external/e2fsprogs/
.missing-copyright 3 find . -type f \! -name \*~ \! -exec grep -q Begin-Header \{\} \; -print \
  /external/qemu/distrib/sdl-1.2.15/VisualCE/
SDL.vcw 14 Begin Project Dependency
17 Begin Project Dependency
44 Begin Project Dependency
59 Begin Project Dependency
62 Begin Project Dependency
77 Begin Project Dependency
80 Begin Project Dependency
95 Begin Project Dependency
98 Begin Project Dependency
  /external/qemu/distrib/sdl-1.2.15/src/main/win32/
version.rc 19 BEGIN
21 BEGIN
23 BEGIN
35 BEGIN
  /external/stlport/stlport/stl/
_relops_cont.h 10 equal(__x.begin(), __x.end(), __y.begin());
17 return lexicographical_compare(__x.begin(), __x.end(),
18 __y.begin(), __y.end());
  /frameworks/opt/vcard/tests/res/raw/
v21_backslash.vcf 0 BEGIN:VCARD
v21_invalid_multiple_line.vcf 0 BEGIN:VCARD
v21_malformed_photo.vcf 0 BEGIN:VCARD
v21_org_before_title.vcf 0 BEGIN:VCARD
v21_sip.vcf 0 BEGIN:VCARD
v21_title_before_org.vcf 0 BEGIN:VCARD
v30_pager.vcf 0 BEGIN:VCARD
v30_sip.vcf 0 BEGIN:VCARD
v40_sort_as.vcf 0 BEGIN:VCARD

Completed in 1471 milliseconds

1 23 4 5 6 7 8 91011>>