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

<<11121314151617181920>>

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-gobject-enums.cc.tmpl 0 /*** BEGIN file-header ***/
43 /*** BEGIN file-production ***/
47 /*** BEGIN value-header ***/
58 /*** BEGIN value-production ***/
62 /*** BEGIN value-tail ***/
  /external/harfbuzz_ng/src/
hb-gobject-enums.cc.tmpl 0 /*** BEGIN file-header ***/
43 /*** BEGIN file-production ***/
47 /*** BEGIN value-header ***/
59 /*** BEGIN value-production ***/
63 /*** BEGIN value-tail ***/
  /frameworks/rs/cpu_ref/linkloader/utils/
helper.cpp 26 size_t size, size_t begin, size_t end) {
27 if (end <= begin) {
32 size_t lower = begin & (~0xfUL);
38 if (i < begin) {
43 if (j == begin) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
assign_copy.pass.cpp 29 C c0(std::begin(t0), std::end(t0), A(10));
30 C c1(std::begin(t1), std::end(t1), A(10));
41 C c0(std::begin(t0), std::end(t0), A(10));
42 C c1(std::begin(t1), std::end(t1), A(11));
53 C c0(std::begin(t0), std::end(t0), A(10));
54 C c1(std::begin(t1), std::end(t1), A(10));
65 C c0(std::begin(t0), std::end(t0), A(10));
66 C c1(std::begin(t1), std::end(t1), A(11));
78 C c0(std::begin(t0), std::end(t0), A(10));
79 C c1(std::begin(t1), std::end(t1), A(10))
    [all...]
copy.pass.cpp 28 C c0(std::begin(t), std::end(t), A(10));
31 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
33 assert(n == std::end(t) - std::begin(t));
43 C c0(std::begin(t), std::end(t), A(10));
46 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
48 assert(n == std::end(t) - std::begin(t));
59 C c0(std::begin(t), std::end(t), A());
62 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
64 assert(n == std::end(t) - std::begin(t));
copy_alloc.pass.cpp 28 C c0(std::begin(t), std::end(t), A(10));
31 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
33 assert(n == std::end(t) - std::begin(t));
42 C c0(std::begin(t), std::end(t), A(10));
45 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
47 assert(n == std::end(t) - std::begin(t));
57 C c0(std::begin(t), std::end(t), A());
60 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
62 assert(n == std::end(t) - std::begin(t));
move.pass.cpp 31 C c0(I(std::begin(t)), I(std::end(t)), A(10));
34 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
36 assert(n == std::end(t) - std::begin(t));
46 C c0(I(std::begin(t)), I(std::end(t)), A(10));
49 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
51 assert(n == std::end(t) - std::begin(t));
62 C c0(I(std::begin(t)), I(std::end(t)), A());
65 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
67 assert(n == std::end(t) - std::begin(t));
move_alloc.pass.cpp 31 C c0(I(std::begin(t)), I(std::end(t)), A(10));
34 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
36 assert(n == std::end(t) - std::begin(t));
46 C c0(I(std::begin(t)), I(std::end(t)), A(10));
49 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
51 assert(n == std::end(t) - std::begin(t));
62 C c0(I(std::begin(t)), I(std::end(t)), A());
65 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
67 assert(n == std::end(t) - std::begin(t));
  /external/chromium_org/third_party/sqlite/src/test/
triggerD.test 32 CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGIN
35 CREATE TRIGGER r2 AFTER INSERT ON t1 BEGIN
38 CREATE TRIGGER r3 BEFORE UPDATE ON t1 BEGIN
42 CREATE TRIGGER r4 AFTER UPDATE ON t1 BEGIN
46 CREATE TRIGGER r5 BEFORE DELETE ON t1 BEGIN
49 CREATE TRIGGER r6 AFTER DELETE ON t1 BEGIN
82 CREATE TRIGGER r1 BEFORE INSERT ON t1 BEGIN
85 CREATE TRIGGER r2 AFTER INSERT ON t1 BEGIN
88 CREATE TRIGGER r3 BEFORE UPDATE ON t1 BEGIN
92 CREATE TRIGGER r4 AFTER UPDATE ON t1 BEGIN
    [all...]
  /external/stlport/test/unit/
equal_test.cpp 56 pair<IntVec::iterator, IntVec::iterator> range = equal_range(v.begin(), v.end(), 2);
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 );
62 range = equal_range(v.begin(), v.end(), 4);
113 it = upper_bound(tv.begin(), tv.end(), 5);
117 it = lower_bound(tv.begin(), tv.end(), 5);
121 p = equal_range(tv.begin(), tv.end(), 5);
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
147 copy(v1.begin(), v1.end(), v2.begin())
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
equal_test.cpp 56 pair<IntVec::iterator, IntVec::iterator> range = equal_range(v.begin(), v.end(), 2);
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 );
62 range = equal_range(v.begin(), v.end(), 4);
113 it = upper_bound(tv.begin(), tv.end(), 5);
117 it = lower_bound(tv.begin(), tv.end(), 5);
121 p = equal_range(tv.begin(), tv.end(), 5);
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
147 copy(v1.begin(), v1.end(), v2.begin())
    [all...]
  /ndk/tests/device/test-stlport/unit/
equal_test.cpp 56 pair<IntVec::iterator, IntVec::iterator> range = equal_range(v.begin(), v.end(), 2);
57 CPPUNIT_ASSERT( (range.first - v.begin()) == 6 );
58 CPPUNIT_ASSERT( (range.second - v.begin()) == 9 );
62 range = equal_range(v.begin(), v.end(), 4);
113 it = upper_bound(tv.begin(), tv.end(), 5);
117 it = lower_bound(tv.begin(), tv.end(), 5);
121 p = equal_range(tv.begin(), tv.end(), 5);
145 CPPUNIT_ASSERT( !equal(v1.begin(), v1.end(), v2.begin()) );
147 copy(v1.begin(), v1.end(), v2.begin())
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 49 begin("eglChooseConfig");
66 begin("eglCopyBuffers");
80 begin("eglCreateContext");
96 begin("eglCreatePbufferSurface");
111 begin("eglCreatePixmapSurface");
127 begin("eglCreateWindowSurface");
142 begin("eglDestroyContext");
154 begin("eglDestroySurface");
167 begin("eglGetConfigAttrib");
182 begin("eglGetConfigs")
392 private void begin(String name) { method in class:EGLLogWrapper
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
merge.h 43 * The @c begin iterators are advanced accordingly, they might not
45 * @param begin1 Begin iterator of first sequence.
47 * @param begin2 Begin iterator of second sequence.
49 * @param target Target begin iterator.
90 * The @c begin iterators are advanced accordingly, they might not
94 * @param begin1 Begin iterator of first sequence.
96 * @param begin2 Begin iterator of second sequence.
98 * @param target Target begin iterator.
159 * The @c begin iterators are advanced accordingly, they might not
162 * @param begin1 Begin iterator of first sequence
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
lexical_cast.hpp 680 inline bool lcast_ret_unsigned(T& value, const CharT* const begin, const CharT* end)
690 if (begin > end || *end < czero || *end >= czero + 10)
715 for(;end>=begin; --end)
736 if ( !Traits::eq(*end, thousands_sep) ) //|| begin == end ) return false;
752 if ( begin == end ) return false;
764 while ( begin <= end )
802 inline bool parse_inf_nan_impl(const CharT* begin, const CharT* end, T& value
808 if (begin == end) return false;
815 if( *begin == minus)
817 ++ begin;
    [all...]
  /art/runtime/base/
stl_util.h 28 std::sort(v->begin(), v->end());
29 v->erase(std::unique(v->begin(), v->end()), v->end());
43 void STLDeleteContainerPointers(ForwardIterator begin,
45 while (begin != end) {
46 ForwardIterator temp = begin;
47 ++begin;
54 // hash_set, or any other STL container which defines sensible begin(), end(),
65 STLDeleteContainerPointers(container->begin(), container->end());
75 for (typename T::iterator i = v->begin(); i != v->end(); ++i) {
  /external/chromium/chrome/browser/profiles/
profile_dependency_manager.cc 25 all_components_.erase(std::remove(all_components_.begin(),
31 EdgeMap::iterator it = edges_.begin();
54 destruction_order_.begin(); it != destruction_order_.end(); ++it) {
59 destruction_order_.begin(); it != destruction_order_.end(); ++it) {
76 std::copy(all_components_.begin(),
81 for (EdgeMap::const_iterator it = edges_.begin();
83 queue_end = std::remove(queue.begin(), queue_end, it->second);
105 for (EdgeMap::iterator jt = edges.begin(); jt != edges.end(); ++jt) {
121 std::reverse(output.begin(), output.end());
  /external/chromium_org/gpu/config/
gpu_info_collector_android.cc 25 size_t begin = version_string.find_first_of("0123456789"); local
26 if (begin == std::string::npos)
28 size_t end = version_string.find_first_not_of("01234567890.", begin);
31 begin = version_string.find_first_of("0123456789", end);
32 if (begin == std::string::npos)
34 end = version_string.find_first_not_of("01234567890.", begin);
37 sub_string = version_string.substr(begin, end - begin);
39 sub_string = version_string.substr(begin);
  /external/chromium_org/tools/grit/grit/gather/
rc_unittest.py 24 BEGIN
31 BEGIN
38 BEGIN
64 BEGIN
91 BEGIN
102 BEGIN
116 BEGIN
118 BEGIN
122 BEGIN
129 BEGIN
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLoc.cpp 18 for (LocationLists::const_iterator I = Locations.begin(), E = Locations.end(); I != E; ++I) {
21 for (SmallVectorImpl<Entry>::const_iterator I2 = I->Entries.begin(), E2 = I->Entries.end(); I2 != E2; ++I2) {
22 if (I2 != I->Entries.begin())
24 OS << "Beginning address offset: " << format("0x%016" PRIx64, I2->Begin)
29 for (SmallVectorImpl<unsigned char>::const_iterator I3 = I2->Loc.begin(), E3 = I2->Loc.end(); I3 != E3; ++I3) {
49 E.Begin = data.getUnsigned(&Offset, AddressSize);
51 E.Begin += AI->second.second;
62 if (E.Begin == 0 && E.End == 0)
70 std::copy(str.begin(), str.end(), std::back_inserter(E.Loc));
  /external/zlib/src/contrib/delphi/
ZLib.pas 219 begin
224 begin
229 begin
234 begin
255 begin
261 begin
266 begin
273 begin
280 begin
291 begin
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/
partition_point.pass.cpp 30 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
36 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
42 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
48 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
54 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
60 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
66 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
72 assert(std::partition_point(forward_iterator<const int*>(std::begin(ia)),
73 forward_iterator<const int*>(std::begin(ia)),
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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();}
45 assert(std::distance(c.begin(), c.end()) == c.size());
64 assert(std::distance(c.begin(), c.end()) == c.size());
85 assert(std::distance(c.begin(), c.end()) == c.size());
105 assert(std::distance(c.begin(), c.end()) == c.size());
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
named_parameter.ipp 52 mm_pos = unit_test::mismatch( name.begin(), name.end(), p_name->begin(), p_name->end() );
77 unit_test::mismatch( p_name->begin(), p_name->end(), snp.p_name->begin(), snp.p_name->end() );
79 return mm_pos.first != p_name->begin() && // there is common substring
111 mm_pos = unit_test::mismatch( in.begin(), in.end(), p_name->begin(), p_name->end() );
113 if( mm_pos.first == in.begin() )
116 tr.trim( mm_pos.first - in.begin() );
  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 17 list_set<int>::iterator it = set.begin();
42 list_set<int>::const_iterator it = ref.begin();
55 list_set<int>::iterator it = set.begin();
73 list_set<int>::iterator it = set.begin();
90 list_set<int>::iterator it = set.begin();
116 list_set<Wrapped<int> >::iterator it = set.begin();
127 list_set<Wrapped<int> >::iterator it = set.begin();
143 list_set<Wrapped<int> >::iterator it = set.begin();
156 list_set<Wrapped<int>*>::iterator it = set.begin();
167 list_set<Wrapped<int>*>::iterator it = set.begin();
    [all...]

Completed in 7897 milliseconds

<<11121314151617181920>>