/external/stlport/test/unit/ |
D | set_test.cpp | 135 sit = s.lower_bound(2); in bounds() 158 scit = s.lower_bound(2); in bounds() 176 scit = crs.lower_bound(2); in bounds() 408 CPPUNIT_ASSERT( keySet.lower_bound(2) != keySet.end() ); in template_methods() 414 CPPUNIT_ASSERT( ckeySet.lower_bound(2) != ckeySet.end() ); in template_methods() 432 CPPUNIT_ASSERT( keySet.lower_bound(2) != keySet.end() ); in template_methods() 438 CPPUNIT_ASSERT( ckeySet.lower_bound(2) != ckeySet.end() ); in template_methods() 455 CPPUNIT_ASSERT( keySet.lower_bound(2) != keySet.end() ); in template_methods() 461 CPPUNIT_ASSERT( ckeySet.lower_bound(2) != ckeySet.end() ); in template_methods() 479 CPPUNIT_ASSERT( keySet.lower_bound(2) != keySet.end() ); in template_methods() [all …]
|
D | map_test.cpp | 134 i = m.lower_bound(3); in mmap2() 245 maptype::iterator i = m.lower_bound( 'x' ); in equal_range() 352 CPPUNIT_ASSERT( cont.lower_bound(2) != cont.end() ); in template_methods() 358 CPPUNIT_ASSERT( ccont.lower_bound(2) != ccont.end() ); in template_methods() 377 CPPUNIT_ASSERT( cont.lower_bound(2) != cont.end() ); in template_methods() 383 CPPUNIT_ASSERT( ccont.lower_bound(2) != ccont.end() ); in template_methods() 401 CPPUNIT_ASSERT( cont.lower_bound(2) != cont.end() ); in template_methods() 407 CPPUNIT_ASSERT( ccont.lower_bound(2) != ccont.end() ); in template_methods() 426 CPPUNIT_ASSERT( cont.lower_bound(2) != cont.end() ); in template_methods() 432 CPPUNIT_ASSERT( ccont.lower_bound(2) != ccont.end() ); in template_methods()
|
D | multiset_test.cpp | 68 i = s.lower_bound(3); in mset3() 78 ci = s.lower_bound(3); in mset3() 91 ci = crs.lower_bound(3); in mset3()
|
D | bound_test.cpp | 67 vector<int>::iterator location = lower_bound(v1.begin(), v1.end(), 3); in lwrbnd1() 77 …char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"… in lwrbnd2()
|
D | equal_test.cpp | 117 it = lower_bound(tv.begin(), tv.end(), 5); in equal_range2()
|
/external/stlport/stlport/stl/ |
D | _map.h | 176 iterator __i = lower_bound(__k); in _STLP_CREATE_ITERATOR_TRAITS() 216 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 218 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 392 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 394 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS()
|
D | _set.h | 196 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 198 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 367 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS() 369 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } in _STLP_CREATE_ITERATOR_TRAITS()
|
D | _tree.h | 601 iterator lower_bound(const _KT& __x) { return iterator(_M_lower_bound(__x)); } 603 const_iterator lower_bound(const _KT& __x) const { return const_iterator(_M_lower_bound(__x)); } 610 { return pair<iterator, iterator>(lower_bound(__x), upper_bound(__x)); } 613 { return pair<const_iterator, const_iterator>(lower_bound(__x), upper_bound(__x)); } 617 __p.second = lower_bound(__x); 630 __p.second = lower_bound(__x);
|
D | _algo.h | 481 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, in lower_bound() function 491 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, in lower_bound() function
|
D | _algo.c | 1138 __second_cut = _STLP_STD::lower_bound(__middle, __last, *__first_cut, __comp); in __merge_adaptive() 1484 __second_cut = _STLP_STD::lower_bound(__middle, __last, *__first_cut, __comp); in __merge_without_buffer()
|
/external/stlport/stlport/stl/debug/ |
D | _tree.h | 185 iterator lower_bound(const _KT& __x) in lower_bound() function 186 { return iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)); } in lower_bound() 188 const_iterator lower_bound(const _KT& __x) const in lower_bound() function 189 { return const_iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)); } in lower_bound() 200 return pair<iterator, iterator>(iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)), in equal_range() 205 …air<const_iterator,const_iterator>(const_iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)), in equal_range()
|
/external/stlport/stlport/stl/pointers/ |
D | _set.h | 272 iterator lower_bound(const _KT& __x) 273 { return _S_to_value_ite(_M_t.lower_bound(cast_traits::to_storage_type_crefT(__x))); } 275 const_iterator lower_bound(const _KT& __x) const 276 { return _S_to_value_ite(_M_t.lower_bound(cast_traits::to_storage_type_crefT(__x))); } 527 iterator lower_bound(const _KT& __x) 528 { return _S_to_value_ite(_M_t.lower_bound(cast_traits::to_storage_type_crefT(__x))); } 530 const_iterator lower_bound(const _KT& __x) const 531 { return _S_to_value_ite(_M_t.lower_bound(cast_traits::to_storage_type_crefT(__x))); }
|
/external/webkit/WebCore/platform/image-decoders/ |
D | ImageDecoder.cpp | 220 const int* matched = std::lower_bound(dataStart + searchStart, dataEnd, valueToMatch); in getScaledValue()
|
/external/clearsilver/util/regex/ |
D | regex.c | 2359 int lower_bound = -1, upper_bound = -1; local 2371 GET_UNSIGNED_NUMBER (lower_bound); 2380 upper_bound = lower_bound; 2382 if (lower_bound < 0 || upper_bound > RE_DUP_MAX 2383 || lower_bound > upper_bound) 2452 lower_bound); 2459 insert_op2 (set_number_at, laststart, 5, lower_bound, b);
|
/external/protobuf/src/google/protobuf/ |
D | repeated_field_unittest.cc | 688 lower_bound(proto_array_.begin(), proto_array_.end(), v); in TEST_F() 796 lower_bound(proto_array_.pointer_begin(), proto_array_.pointer_end(), in TEST_F()
|
D | descriptor_database.cc | 202 by_extension_.lower_bound(make_pair(containing_type, 0)); in FindAllExtensionNumbers()
|
D | extension_set_heavy.cc | 305 for (iter = extensions_.lower_bound(start_field_number); in SerializeWithCachedSizesToArray()
|
D | extension_set.cc | 1005 for (iter = extensions_.lower_bound(start_field_number); in SerializeWithCachedSizes()
|
D | descriptor.cc | 629 extensions_.lower_bound(make_pair(extendee, 0)); in FindAllExtensions()
|
/external/webkit/WebKit/android/nav/ |
D | CachedFrame.cpp | 894 return std::lower_bound(mCachedLayers.begin(), mCachedLayers.end(), test); in layer()
|
/external/chromium/base/ |
D | string_util.cc | 1522 r_offsets.insert(std::lower_bound(r_offsets.begin(), in DoReplaceStringPlaceholders()
|
/external/stlport/etc/ |
D | ChangeLog-5.1 | 1352 count, erase, lower_bound, upper_bound, equal_range. 3148 anymore when lower_bound returned value is already not equivalent to the search value. 3311 * stlport/stl/_tree.h: check iterator returned from lower_bound 7438 * _algo.c : relaxed type requirements for lower_bound, upper_bound, binary_search
|