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

<<11121314151617181920>>

  /external/chromium/chrome/browser/extensions/
extension_i18n_api.cc 34 size_t begin = 0; local
37 end = acceptLanguages.find(',', begin);
38 if (end > begin) {
40 string16 acceptLang = acceptLanguages.substr(begin, end - begin);
44 begin = end + 1;
45 // 'begin >= acceptLanguages.length()' to guard against a value
47 if (end == string16::npos || begin >= acceptLanguages.length())
  /external/chromium_org/chrome/installer/mini_installer/
mini_installer.rc 41 BEGIN
46 BEGIN
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
15_prefix.t 3 BEGIN { $| = 1; print "1..4\n"; }
4 BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; }
16_tied.t 5 BEGIN { plan tests => 2 };
7 BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; }
e07_allow_singlequote.t 4 BEGIN { plan tests => 4 };
5 BEGIN { $ENV{PERL_JSON_BACKEND} = "JSON::backportPP"; }
x16_tied.t 3 BEGIN { plan tests => 2 };
5 BEGIN { $ENV{PERL_JSON_BACKEND} = 1; }
  /external/chromium_org/third_party/WebKit/Tools/qunit/test/
logs.js 4 var begin = 0, variable
16 QUnit.begin = function() {
17 begin++;
42 var logs = ["begin", "testStart", "testDone", "log", "moduleStart", "moduleDone", "done"];
57 equal(begin, 1);
88 equal(begin, 1);
114 equal(begin, 1);
136 equal(begin, 1);
  /external/chromium_org/third_party/openssl/openssl/crypto/dh/
dh2048.pem 1 -----BEGIN DH PARAMETERS-----
9 -----BEGIN DH PARAMETERS-----
  /external/libpng/projects/visualc6/
libpng.dsw 14 Begin Project Dependency
29 Begin Project Dependency
  /external/openssl/crypto/dh/
dh2048.pem 1 -----BEGIN DH PARAMETERS-----
9 -----BEGIN DH PARAMETERS-----
  /external/stlport/test/unit/
list_test.cpp 62 list<int>::iterator i1 = l1.begin();
63 list<int>::iterator i2 = l2.begin();
67 i1 = l1.begin();
76 CPPUNIT_ASSERT( i2 == l1.begin() );
81 i1 = l.begin();
102 list<int>::iterator i = l1.begin();
104 l1.splice(i, l2, l2.begin(), l2.end());
105 i = l1.begin();
120 i = str.begin();
129 i = str.begin();
    [all...]
merge_test.cpp 58 __iota(v1.begin(), v1.end(), 0);
59 __iota(v2.begin(), v2.end(), 3);
62 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin());
85 merge(v1.begin(), v1.end(), v2.begin(), v2.end(), result.begin(), greater<int>() );
search_test.cpp 57 __iota(v1.begin(), v1.end(), 0);
59 __iota(v2.begin(), v2.end(), 50);
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
66 __iota(v2.begin(), v2.end(), 4);
68 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
71 CPPUNIT_ASSERT(location - v1.begin() == 4);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
assign_initializer_list.pass.cpp 43 assert(distance(m.begin(), m.end()) == 3);
44 assert(*m.begin() == V(1, 1));
45 assert(*next(m.begin()) == V(2, 1));
46 assert(*next(m.begin(), 2) == V(3, 1));
68 assert(distance(m.begin(), m.end()) == 3);
69 assert(*m.begin() == V(1, 1));
70 assert(*next(m.begin()) == V(2, 1));
71 assert(*next(m.begin(), 2) == V(3, 1));
initializer_list.pass.cpp 39 assert(distance(m.begin(), m.end()) == 3);
40 assert(*m.begin() == V(1, 1));
41 assert(*next(m.begin()) == V(2, 1));
42 assert(*next(m.begin(), 2) == V(3, 1));
60 assert(distance(m.begin(), m.end()) == 3);
61 assert(*m.begin() == V(1, 1));
62 assert(*next(m.begin()) == V(2, 1));
63 assert(*next(m.begin(), 2) == V(3, 1));
initializer_list_compare.pass.cpp 39 assert(distance(m.begin(), m.end()) == 3);
40 assert(*m.begin() == V(1, 1));
41 assert(*next(m.begin()) == V(2, 1));
42 assert(*next(m.begin(), 2) == V(3, 1));
61 assert(distance(m.begin(), m.end()) == 3);
62 assert(*m.begin() == V(1, 1));
63 assert(*next(m.begin()) == V(2, 1));
64 assert(*next(m.begin(), 2) == V(3, 1));
iter_iter.pass.cpp 40 assert(distance(m.begin(), m.end()) == 3);
41 assert(*m.begin() == V(1, 1));
42 assert(*next(m.begin()) == V(2, 1));
43 assert(*next(m.begin(), 2) == V(3, 1));
62 assert(distance(m.begin(), m.end()) == 3);
63 assert(*m.begin() == V(1, 1));
64 assert(*next(m.begin()) == V(2, 1));
65 assert(*next(m.begin(), 2) == V(3, 1));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/
insert_initializer_list.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));
64 assert(distance(m.begin(), m.end()) == 3);
65 assert(*m.begin() == V(1, 1));
66 assert(*next(m.begin()) == V(2, 1));
67 assert(*next(m.begin(), 2) == V(3, 1));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
copy_alloc.pass.cpp 44 assert(distance(m.begin(), m.end()) == 3);
45 assert(*m.begin() == 1);
46 assert(*next(m.begin()) == 2);
47 assert(*next(m.begin(), 2) == 3);
52 assert(distance(mo.begin(), mo.end()) == 3);
53 assert(*mo.begin() == 1);
54 assert(*next(mo.begin()) == 2);
55 assert(*next(mo.begin(), 2) == 3);
iter_iter.pass.cpp 42 assert(distance(m.begin(), m.end()) == 3);
43 assert(*m.begin() == 1);
44 assert(*next(m.begin()) == 2);
45 assert(*next(m.begin(), 2) == 3);
65 assert(distance(m.begin(), m.end()) == 3);
66 assert(*m.begin() == 1);
67 assert(*next(m.begin()) == 2);
68 assert(*next(m.begin(), 2) == 3);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 27 C c(std::begin(t), std::end(t));
31 assert(*c.begin() == 10);
37 const C c(std::begin(t), std::end(t));
39 assert(*c.begin() == 0);
46 C c(std::begin(t), std::end(t));
50 assert(*c.begin() == 10);
56 const C c(std::begin(t), std::end(t));
58 assert(*c.begin() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
clear.pass.cpp 27 assert(distance(c.begin(), c.end()) == 0);
33 C c(std::begin(t), std::end(t));
36 assert(distance(c.begin(), c.end()) == 0);
39 assert(distance(c.begin(), c.end()) == 0);
47 assert(distance(c.begin(), c.end()) == 0);
53 C c(std::begin(t), std::end(t));
56 assert(distance(c.begin(), c.end()) == 0);
59 assert(distance(c.begin(), c.end()) == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
iterators.fail.cpp 16 // iterator begin() {return __table_.begin();}
18 // const_iterator begin() const {return __table_.begin();}
20 // const_iterator cbegin() const {return __table_.begin();}
43 assert(std::distance(c.begin(), c.end()) == c.size());
45 C::iterator i = c.begin();
64 assert(std::distance(c.begin(), c.end()) == c.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
iterators.fail.cpp 16 // iterator begin() {return __table_.begin();}
18 // const_iterator begin() const {return __table_.begin();}
20 // const_iterator cbegin() const {return __table_.begin();}
43 assert(std::distance(c.begin(), c.end()) == c.size());
45 C::iterator i = c.begin();
64 assert(std::distance(c.begin(), c.end()) == c.size());
  /ndk/tests/device/test-gnustl-full/unit/
list_test.cpp 62 list<int>::iterator i1 = l1.begin();
63 list<int>::iterator i2 = l2.begin();
67 i1 = l1.begin();
76 CPPUNIT_ASSERT( i2 == l1.begin() );
81 i1 = l.begin();
102 list<int>::iterator i = l1.begin();
104 l1.splice(i, l2, l2.begin(), l2.end());
105 i = l1.begin();
120 i = str.begin();
129 i = str.begin();
    [all...]

Completed in 708 milliseconds

<<11121314151617181920>>