Searched defs:find (Results 1 - 25 of 316) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java232 return find(getChildren(), expr);
341 return find(qualifier, expr);
869 * Internal find.
874 private XMPNode find(List list, String expr) method in class:XMPNode
/external/valgrind/main/coregrind/
H A Dm_rangemap.c60 static Word find ( RangeMap* rm, UWord key );
109 iMin = find(rm, key_min);
110 iMax = find(rm, key_max);
121 Word i = find(rm, key);
163 static Word find ( RangeMap* rm, UWord key ) function
172 VG_(core_panic)("RangeMap::find: not found");
189 Word i = find(rm, key);
/external/stlport/stlport/stl/
H A D_algobase.c221 _InputIter find(_InputIter __first, _InputIter __last, const _Tp& __val) { function
H A D_hash_map.h195 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:hash_map
197 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:hash_map
201 iterator __it = _M_ht.find(__key);
388 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:hash_multimap
390 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:hash_multimap
H A D_hash_set.h197 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:hash_set
199 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:hash_set
378 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:hash_multiset
381 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:hash_multiset
H A D_hashtable.h511 iterator find(const _KT& __key) { return _M_find(__key); } function in class:hashtable
513 const_iterator find(const _KT& __key) const { return _M_find(__key); } function in class:hashtable
H A D_map.h210 iterator find(const _KT& __x) { return _M_t.find(__x); } function in class:map
212 const_iterator find(const _KT& __x) const { return _M_t.find(__x); } function in class:map
214 size_type count(const _KT& __x) const { return _M_t.find(__x) == _M_t.end() ? 0 : 1; }
386 iterator find(const _KT& __x) { return _M_t.find(__x); } function in class:multimap
388 const_iterator find(const _KT& __x) const { return _M_t.find(__x); } function in class:multimap
H A D_rope.c906 size_t rope<_CharT,_Alloc>::find(_CharT __pattern, size_t __start) const { function in class:_Alloc
H A D_rope.h1970 size_type find(const _Self& __s, size_type __pos = 0) const { function in class:rope
1986 size_type find(_CharT __c, size_type __pos = 0) const;
1987 size_type find(const _CharT* __s, size_type __pos = 0) const { function in class:rope
H A D_set.h189 const_iterator find(const _KT& __x) const { return _M_t.find(__x); } function in class:set
191 iterator find(const _KT& __x) { return _M_t.find(__x); } function in class:set
194 { return _M_t.find(__x) == _M_t.end() ? 0 : 1 ; }
361 iterator find(const _KT& __x) { return _M_t.find(__x); } function in class:multiset
363 const_iterator find(const _KT& __x) const { return _M_t.find(__x); } function in class:multiset
H A D_string.c420 __size_type__ basic_string<_CharT,_Traits,_Alloc>::find( const _CharT* __s, size_type __pos, function in class:_Alloc
438 __size_type__ basic_string<_CharT,_Traits,_Alloc>::find(_CharT __c, size_type __pos) const function in class:_Alloc
H A D_string.h952 public: // find.
953 size_type find(const _Self& __s, size_type __pos = 0) const function in class:basic_string
954 { return find(__s._M_Start(), __pos, __s.size()); }
956 size_type find(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
957 { _STLP_FIX_LITERAL_BUG(__s) return find(__s, __pos, _Traits::length(__s)); }
959 size_type find(const _CharT* __s, size_type __pos, size_type __n) const;
962 size_type find(_CharT __c) const { return find(__c, 0); } function in class:basic_string
963 size_type find(_CharT __c, size_type __pos /* = 0 */) const;
985 { return find(__
[all...]
H A D_string_sum.h188 //find family
189 size_type find(const _BString& __s, size_type __pos = 0) const { return _M_get_storage().find(__s, __pos); } function in class:__bstr_sum
190 size_type find(const _CharT* __s, size_type __pos = 0) const { return _M_get_storage().find(__s, __pos); } function in class:__bstr_sum
191 size_type find(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().find(__s, __pos, __n); } function in class:__bstr_sum
192 size_type find(_CharT __c, size_type __pos = 0) const { return _M_get_storage().find(__c, __pos); } function in class:__bstr_sum
206 { return _M_get_storage().find(__
[all...]
H A D_tree.h510 iterator __i = find(__x);
543 iterator find(const _KT& __k) { return iterator(_M_find(__k)); } function in class:_Rb_tree
545 const_iterator find(const _KT& __k) const { return const_iterator(_M_find(__k)); } function in class:_Rb_tree
H A D_unordered_map.h148 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:unordered_map
150 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:unordered_map
154 iterator __it = _M_ht.find(__key);
316 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:unordered_multimap
318 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:unordered_multimap
H A D_unordered_set.h142 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:unordered_set
144 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:unordered_set
292 iterator find(const _KT& __key) { return _M_ht.find(__key); } function in class:unordered_multiset
294 const_iterator find(const _KT& __key) const { return _M_ht.find(__key); } function in class:unordered_multiset
H A Dchar_traits.h160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { function in class:__char_traits_base
/external/stlport/stlport/stl/debug/
H A D_hashtable.h261 iterator find(const _KT& __key) function in class:hashtable
262 { return iterator(&_M_iter_list, _M_non_dbg_impl.find(__key)); }
264 const_iterator find(const _KT& __key) const function in class:hashtable
265 { return const_iterator(&_M_iter_list, _M_non_dbg_impl.find(__key)); }
H A D_string.h692 // find.
693 size_type find(const _Self& __s, size_type __pos = 0) const function in class:basic_string
694 { return _M_non_dbg_impl.find(__s._M_non_dbg_impl, __pos); }
695 size_type find(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string
698 return _M_non_dbg_impl.find(__s, __pos);
700 size_type find(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
703 return _M_non_dbg_impl.find(__s, __pos, __n);
706 size_type find(_CharT __c) const { return find(__c, 0); } function in class:basic_string
707 size_type find(_Char function in class:basic_string
[all...]
H A D_tree.h178 iterator find(const _KT& __k) function in class:_Rb_tree
179 { return iterator(&_M_iter_list, _M_non_dbg_impl.find(__k)); }
181 const_iterator find(const _KT& __k) const function in class:_Rb_tree
182 { return const_iterator(&_M_iter_list, _M_non_dbg_impl.find(__k)); }
283 _Base_iterator __i = _M_non_dbg_impl.find(__x);
/external/stlport/stlport/stl/pointers/
H A D_set.h263 const_iterator find(const _KT& __x) const function in class:set
264 { return _S_to_value_ite(_M_t.find(cast_traits::to_storage_type_crefT(__x))); }
266 iterator find(const _KT& __x) function in class:set
267 { return _S_to_value_ite(_M_t.find(cast_traits::to_storage_type_crefT(__x))); }
270 { return _M_t.find(cast_traits::to_storage_type_crefT(__x)) == _M_t.end() ? 0 : 1; }
518 iterator find(const _KT& __x) function in class:multiset
519 { return _S_to_value_ite(_M_t.find(cast_traits::to_storage_type_crefT(__x))); }
521 const_iterator find(const _KT& __x) const function in class:multiset
522 { return _S_to_value_ite(_M_t.find(cast_traits::to_storage_type_crefT(__x))); }
/external/stlport/test/unit/
H A Dmfunptr_test.cpp24 CPPUNIT_TEST(find);
30 void find();
193 void MemFunPtrTest::find() function in class:MemFunPtrTest
H A Dset_test.cpp24 CPPUNIT_TEST(find);
41 void find();
112 void SetTest::find() function in class:SetTest
116 CPPUNIT_ASSERT( s.find(0) == s.end() );
120 CPPUNIT_ASSERT( crs.find(0) == crs.end() );
407 CPPUNIT_ASSERT( keySet.find(2) != keySet.end() );
413 CPPUNIT_ASSERT( ckeySet.find(2) != ckeySet.end() );
431 CPPUNIT_ASSERT( keySet.find(2) != keySet.end() );
437 CPPUNIT_ASSERT( ckeySet.find(2) != ckeySet.end() );
454 CPPUNIT_ASSERT( keySet.find(
[all...]
H A Dstring_test.cpp62 CPPUNIT_TEST(find);
121 void find();
638 void StringTest::find() function in class:StringTest
641 CPPUNIT_ASSERT( s.find("one") == 0 );
642 CPPUNIT_ASSERT( s.find('t') == 4 );
643 CPPUNIT_ASSERT( s.find('t', 5) == 8 );
652 CPPUNIT_ASSERT( s.find("four") == npos_local );
653 CPPUNIT_ASSERT( s.find("one", string::npos) == npos_local );
660 CPPUNIT_ASSERT( s.substr(s.find(empty), empty.size()) == empty );
665 /* ISO/IEC 14882 2003, 21.3.6.1 basic_string::find [li
[all...]

Completed in 125 milliseconds

1234567891011>>