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

<<11121314151617181920>>

  /libcore/support/src/test/java/tests/resources/
test.cert 1 -----BEGIN CERTIFICATE-----
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/associative/map/map.cons/
copy_assign.pass.cpp 46 assert(distance(m.begin(), m.end()) == 3);
47 assert(*m.begin() == V(1, 1));
48 assert(*next(m.begin()) == V(2, 1));
49 assert(*next(m.begin(), 2) == V(3, 1));
54 assert(distance(mo.begin(), mo.end()) == 3);
55 assert(*mo.begin() == V(1, 1));
56 assert(*next(mo.begin()) == V(2, 1));
57 assert(*next(mo.begin(), 2) == V(3, 1));
81 assert(distance(m.begin(), m.end()) == 3);
82 assert(*m.begin() == V(1, 1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.cons/
assign_copy.pass.cpp 28 C c0(std::begin(t0), std::end(t0), A(10));
29 C c1(std::begin(t1), std::end(t1), A(10));
40 C c0(std::begin(t0), std::end(t0), A(10));
41 C c1(std::begin(t1), std::end(t1), A(11));
52 C c0(std::begin(t0), std::end(t0), A(10));
53 C c1(std::begin(t1), std::end(t1), A(10));
64 C c0(std::begin(t0), std::end(t0), A(10));
65 C c1(std::begin(t1), std::end(t1), A(11));
77 C c0(std::begin(t0), std::end(t0), A(10));
78 C c1(std::begin(t1), std::end(t1), A(10))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.iterators/
begin.pass.cpp 12 // iterator begin();
13 // const_iterator begin() const;
23 typename S::iterator b = s.begin();
24 typename S::const_iterator cb = cs.begin();
  /ndk/tests/device/test-gnustl-full/unit/
count_test.cpp 49 int elements = count(numbers.begin(), numbers.end(), 2);
53 count(numbers.begin(), numbers.end(), 2, elements);
62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
innerprod_test.cpp 58 size_t result = inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)0);
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
  /ndk/tests/device/test-stlport/unit/
count_test.cpp 49 int elements = count(numbers.begin(), numbers.end(), 2);
53 count(numbers.begin(), numbers.end(), 2, elements);
62 int elements = count_if(numbers.begin(), numbers.end(), odd);
66 count_if(numbers.begin(), numbers.end(), odd, elements);
innerprod_test.cpp 58 size_t result = inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)0);
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
  /packages/apps/Contacts/tests/assets/
v30_simple.vcf 0 BEGIN:VCARD
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
syslimits.h 7 /* APPLE LOCAL begin 4401222 */
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
syslimits.h 7 /* APPLE LOCAL begin 4401222 */
  /sdk/emulator/opengl/host/renderer/
Android.mk 4 $(call emugl-begin-host-executable,emulator_renderer)
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
Android.mk 5 $(call emugl-begin-host-static-library,libEGL_host_wrapper)
  /sdk/emulator/opengl/tests/event_injector/
Android.mk 3 $(call emugl-begin-host-static-library,event_injector)
  /sdk/emulator/opengl/tests/ut_rendercontrol_dec/
Android.mk 3 $(call emugl-begin-host-shared-library,libut_rendercontrol_dec)
  /sdk/emulator/opengl/tests/ut_rendercontrol_enc/
Android.mk 3 $(call emugl-begin-shared-library,libut_rendercontrol_enc)
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_temp_storage_unittest.cc 47 for (It it = ref_map_.begin(); it != ref_map_.end(); ++it) {
50 std::random_shuffle(a_list.begin(), a_list.end());
52 std::copy(b_list.begin(),
53 b_list.begin() + b_list.size() / 2,
55 std::random_shuffle(a_list.begin(), a_list.end());
62 std::copy(a_list.begin(), a_list.end(), std::back_inserter(b_list));
64 std::random_shuffle(b_list.begin(), b_list.end());
  /external/chromium/chrome/browser/notifications/
balloon_collection_base.cc 27 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
40 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
44 for (iter = to_close.begin(); iter != to_close.end(); ++iter)
56 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
60 for (iter = to_close.begin(); iter != to_close.end(); ++iter)
70 for (Balloons::iterator iter = to_close.begin();
78 for (iter = balloons_.begin(); iter != balloons_.end(); ++iter) {
  /external/llvm/lib/MC/
MCModule.cpp 16 uint64_t Begin, uint64_t End) {
17 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
20 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Begin);
24 MCAtom *NewAtom = new MCAtom(Type, this, Begin, End);
26 OffsetMap.insert(Begin, End, NewAtom);
33 IntervalMap<uint64_t, MCAtom*>::iterator I = OffsetMap.find(Atom->Begin);
42 Atom->Begin = NewBegin;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.iter/
iterators.pass.cpp 12 // iterator begin();
14 // const_iterator begin() const;
29 C::iterator i = c.begin();
38 C::const_iterator i = c.begin();
57 C c(std::begin(t), std::end(t));
58 C::iterator i = c.begin();
64 assert(std::distance(c.begin(), c.end()) == 10);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.ops/
remove.pass.cpp 25 C c1(std::begin(t1), std::end(t1));
26 C c2(std::begin(t2), std::end(t2));
34 C c1(std::begin(t1), std::end(t1));
44 C c1(std::begin(t1), std::end(t1));
45 C c2(std::begin(t2), std::end(t2));
62 C c1(std::begin(t1), std::end(t1));
63 C c2(std::begin(t2), std::end(t2));
remove_if.pass.cpp 30 C c1(std::begin(t1), std::end(t1));
31 C c2(std::begin(t2), std::end(t2));
39 C c1(std::begin(t1), std::end(t1));
49 C c1(std::begin(t1), std::end(t1));
50 C c2(std::begin(t2), std::end(t2));
67 C c1(std::begin(t1), std::end(t1));
68 C c2(std::begin(t2), std::end(t2));
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/
iterators.pass.cpp 12 // iterator begin();
14 // const_iterator begin() const;
29 C::iterator i = c.begin();
38 C::const_iterator i = c.begin();
57 C c(std::begin(t), std::end(t));
58 C::iterator i = c.begin();
64 assert(std::distance(c.begin(), c.end()) == 10);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/
iterators.pass.cpp 12 // iterator begin();
14 // const_iterator begin() const;
29 C::iterator i = c.begin();
38 C::const_iterator i = c.begin();
57 C c(std::begin(t), std::end(t));
58 C::iterator i = c.begin();
64 assert(std::distance(c.begin(), c.end()) == 10);
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.set/
iterators.pass.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());
62 assert(std::distance(c.begin(), c.end()) == c.size());

Completed in 373 milliseconds

<<11121314151617181920>>