Searched defs:find (Results 176 - 200 of 316) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
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...]
/external/chromium_org/base/containers/
H A Dsmall_map.h386 iterator find(const key_type& key) { function in class:base::SmallMap
396 return iterator(map()->find(key));
400 const_iterator find(const key_type& key) const { function in class:base::SmallMap
410 return const_iterator(map()->find(key));
528 iterator iter = find(key);
535 return (find(key) == end()) ? 0 : 1;
/external/chromium_org/base/strings/
H A Dstring_piece.h25 // functions (find, find_first_of, etc.) are found to be useful in this context.
73 BASE_EXPORT size_t find(const StringPiece& self,
76 BASE_EXPORT size_t find(const StringPiece16& self,
79 BASE_EXPORT size_t find(const StringPiece& self,
82 BASE_EXPORT size_t find(const StringPiece16& self,
286 // find: Search for a character or substring at a given offset.
287 size_type find(const BasicStringPiece<STRING_TYPE>& s, function in class:base::BasicStringPiece
289 return internal::find(*this, s, pos);
291 size_type find(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
292 return internal::find(*thi
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLElementStack.cpp422 HTMLElementStack::ElementRecord* HTMLElementStack::find(Element* element) const function in class:blink::HTMLElementStack
442 return !!find(element);
H A DTextResourceDecoder.cpp60 // You might think we should put these find functions elsewhere, perhaps with the
64 static int find(const char* subject, size_t subjectLength, const char* target) function in namespace:blink
154 int pos = find(str, len, "encoding");
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h113 iterator find(KeyPeekInType);
114 const_iterator find(KeyPeekInType) const;
136 // An alternate version of find() that finds the object by hashing and comparing
141 template<typename HashTranslator, typename T> iterator find(const T&);
142 template<typename HashTranslator, typename T> const_iterator find(const T&) const;
312 inline typename HashMap<T, U, V, W, X, Y>::iterator HashMap<T, U, V, W, X, Y>::find(KeyPeekInType key) function in class:WTF::HashMap
314 return m_impl.find(key);
318 inline typename HashMap<T, U, V, W, X, Y>::const_iterator HashMap<T, U, V, W, X, Y>::find(KeyPeekInType key) const function in class:WTF::HashMap
320 return m_impl.find(key);
332 HashMap<T, U, V, W, X, Y>::find(cons function in class:WTF::HashMap
340 HashMap<T, U, V, W, X, Y>::find(const TYPE& value) const function in class:WTF::HashMap
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.cpp415 return atomicStrings().find<HashAndCharactersTranslator<CharacterType> >(buffer);
418 StringImpl* AtomicString::find(const StringImpl* stringImpl) function in class:WTF::AtomicString
/external/chromium_org/third_party/icu/source/i18n/
H A Dtznames.cpp119 MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const;
282 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { function in class:TimeZoneNamesDelegate
283 return fTZnamesCacheEntry->names->find(text, start, types, status);
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dwrtjava.c203 strrch(const char* source,uint32_t sourceLen,char find){ argument
206 if(*tSourceEnd==find){
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
H A Dunicodetext.cc318 UnicodeText::const_iterator UnicodeText::find(const UnicodeText& look, function in class:i18n::phonenumbers::UnicodeText
325 UnicodeText::const_iterator UnicodeText::find(const UnicodeText& look) const { function in class:i18n::phonenumbers::UnicodeText
336 searching.find(look_piece, start_pos.utf8_data() - utf8_data());
345 // return find(replacement_char) != end();
348 return searching.find(looking_for) != StringPiece::npos;
/external/chromium_org/third_party/skia/include/core/
H A DSkString.h136 int find(const char substring[]) const { function in class:SkString
/external/chromium_org/third_party/skia/src/core/
H A DSkResourceCache.cpp190 bool SkResourceCache::find(const Key& key, VisitorProc visitor, void* context) { function in class:SkResourceCache
191 Rec* rec = fHash->find(key);
207 Rec* existing = fHash->find(rec->getKey());
467 return get_cache()->find(key, visitor, context);
/external/chromium_org/v8/src/
H A Darray.js1481 find: true,
/external/deqp/executor/
H A DxeTestCase.cpp96 if (parent->m_childNames.find(name) != parent->m_childNames.end())
146 const TestNode* TestNode::find (const char* path) const function in class:TestNode
173 TestNode* TestNode::find (const char* path) function in class:TestNode
175 return const_cast<TestNode*>(const_cast<const TestNode*>(this)->find(path));
208 // Try to find matching children.
303 std::map<std::string, TestGroup*>::const_iterator groupPos = m_groupMap.find(curGroupPath);
356 if (nodeSet.find(group->getChild(ndx)) != nodeSet.end())
411 if (m_set.find(testCase) != m_set.end())
420 if (m_set.find(testGroup) != m_set.end())
/external/easymock/src/org/easymock/
H A DEasyMock.java1319 public static String find(String regex) { method in class:EasyMock
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java636 * #tryFind)} or {@link #find(Iterable, Predicate, T)} instead.
641 public static <T> T find(Iterable<T> iterable, method in class:Iterables
643 return Iterators.find(iterable.iterator(), predicate);
654 public static <T> T find(Iterable<T> iterable, method in class:Iterables
656 return Iterators.find(iterable.iterator(), predicate, defaultValue);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java594 * #tryFind)} or {@link #find(Iterable, Predicate, T)} instead.
599 public static <T> T find(Iterable<T> iterable, method in class:Iterables
601 return Iterators.find(iterable.iterator(), predicate);
612 public static <T> T find(Iterable<T> iterable, method in class:Iterables
614 return Iterators.find(iterable.iterator(), predicate, defaultValue);
/external/icu/icu4c/source/i18n/
H A Dtznames.cpp119 MatchInfoCollection* find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const;
282 TimeZoneNamesDelegate::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { function in class:TimeZoneNamesDelegate
283 return fTZnamesCacheEntry->names->find(text, start, types, status);
/external/icu/icu4c/source/tools/genrb/
H A Dwrtjava.c203 strrch(const char* source,uint32_t sourceLen,char find){ argument
206 if(*tSourceEnd==find){
/external/javassist/src/main/javassist/
H A DClassPool.java40 * to find a class file and then it creates a <code>CtClass</code> object
60 * a parent pool, <code>get()</code> first asks the parent pool to find
61 * a class file. Only if the parent could not find the class file,
213 * <p>If the default class pool cannot find any class files,
457 * @see #find(String)
557 if ((!useCache || getCached(base) == null) && find(base) == null)
563 if (find(classname) == null)
578 public URL find(String classname) { method in class:ClassPool
579 return source.find(classname);
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Dconfig.cpp61 const CNfcParam* find(const char* p_name) const;
402 const CNfcParam* pParam = find(name);
429 const CNfcParam* pParam = find(name);
453 const CNfcParam* pParam = find(name);
467 ** Function: CNfcConfig::find()
474 const CNfcParam* CNfcConfig::find(const char* p_name) const function in class:CNfcConfig
671 const CNfcParam* pParam = rConfig.find(name);
/external/libnfc-nci/src/adaptation/
H A Dconfig.cpp61 const CNfcParam* find(const char* p_name) const;
417 const CNfcParam* pParam = find(name);
444 const CNfcParam* pParam = find(name);
468 const CNfcParam* pParam = find(name);
482 ** Function: CNfcConfig::find()
489 const CNfcParam* CNfcConfig::find(const char* p_name) const function in class:CNfcConfig
686 const CNfcParam* pParam = rConfig.find(name);
/external/llvm/lib/Transforms/Scalar/
H A DSeparateConstOffsetFromGEP.cpp113 /// index, and tries to find a constant integer that can be hoisted to the
151 APInt find(Value *V, bool SignExtended, bool ZeroExtended, bool NonNegative);
157 /// index I' according to UserChain produced by function "find".
211 /// index is "a * b + (c + 5)". After running function find, UserChain[0] will
380 APInt ConstantOffset = find(BO->getOperand(0), SignExtended, ZeroExtended,
388 ConstantOffset = find(BO->getOperand(1), SignExtended, ZeroExtended,
397 APInt ConstantOffsetExtractor::find(Value *V, bool SignExtended, function in class:ConstantOffsetExtractor
418 ConstantOffset = find(U->getOperand(0), /* SignExtended */ true,
426 find(U->getOperand(0), /* SignExtended */ false,
488 // Function find onl
[all...]
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketFrame.java148 OpCode opCode = OpCode.find((byte) (head & 0x0F));
350 public static OpCode find(byte value) { method in class:WebSocketFrame.OpCode
375 public static CloseCode find(int value) { method in class:WebSocketFrame.CloseCode
395 _closeCode = CloseCode.find((wrap.getBinaryPayload()[0] & 0xFF) << 8 |
/external/skia/include/core/
H A DSkString.h136 int find(const char substring[]) const { function in class:SkString

Completed in 1951 milliseconds

1234567891011>>