Searched defs:find (Results 251 - 275 of 316) sorted by relevance

<<111213

/external/chromium_org/third_party/icu/source/common/
H A Duresbund.cpp102 * Internal function. Tries to find a resource in given Resource
308 UResourceDataEntry find; local
329 find.fName = (char *)name;
330 find.fPath = (char *)path;
333 /*hashkey.pointer = (void *)&find;*/
337 r = (UResourceDataEntry *)uhash_get(cache, &find);
2156 /* we didn't find one we were looking for - so openDirect */
2499 /* Now, see if we can find the kwVal collator.. start the search over.. */
2752 fprintf(stderr, "%s-%s values: Can't find in %s - skipping. (%s)\n",
/external/chromium_org/third_party/icu/source/i18n/
H A Drematch.cpp592 // find()
595 UBool RegexMatcher::find() { function in class:RegexMatcher
618 // to avoid sending find() into a loop on zero-length matches.
630 // A previous find() failed to match. Don't try again.
857 UBool RegexMatcher::find(int64_t start, UErrorCode &status) { function in class:RegexMatcher
878 return find();
884 // findUsingChunk() -- like find(), but with the advance knowledge that the
906 // to avoid sending find() into a loop on zero-length matches.
916 // A previous find() failed to match. Don't try again.
1794 while (find()) {
[all...]
H A Dtznames_impl.cpp756 * ZMatchInfo stores zone name match information used by find method
1283 TimeZoneNamesImpl::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { function in class:TimeZoneNamesImpl
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dwbnf.cpp167 RESULT find(const char *const var_name /*[in] c-string*/, Pick * * ref = NULL /*[out] Pick* */){ function in class:SymbolTable
186 switch(find(var_name)){
534 symbol_table->find(var_name, &var_ref);
1217 if (token == BAR || token == NUMBER){ // find a real alternation1, create it.
1304 if (par.symbols.find(top_node_name, &top_node_ref) == SymbolTable::HAS_REF) {
1523 pass = t.find(NULL) == SymbolTable::EMPTY;
1524 pass = pass && t.find("ccc") == SymbolTable::NO_VAR;
1525 pass = pass && t.find("bbb") == SymbolTable::NO_REF;
1526 pass = pass && t.find("abc") == SymbolTable::HAS_REF;
1527 pass = pass && t.find("
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPictureTest.cpp360 static bool find(SkPixelRef const * const * array, SkPixelRef const * ref, int count) { function
365 // colors[], find the corresponding value in refs[] and append that ref into
550 if (-1 == fromAnalytic.find(fromImage[i])) {
564 bool found = find(gatherRefs, fromAnalytic[i], gatherCount);
691 REPORTER_ASSERT(reporter, -1 != fromAnalytic.find(fromImage[i]));
697 REPORTER_ASSERT(reporter, -1 != gatheredRefs.find(fromAnalytic[i]));
/external/harfbuzz_ng/src/
H A Dhb-private.hh355 inline Type *find (T v) { function in struct:hb_prealloced_array_t
362 inline const Type *find (T v) const { function in struct:hb_prealloced_array_t
419 item_t *item = items.find (v);
444 item_t *item = items.find (v);
457 inline bool find (T v, item_t *i, lock_t &l) function in struct:hb_lockable_set_t
460 item_t *item = items.find (v);
471 item_t *item = items.find (v);
/external/icu/icu4c/source/common/
H A Duresbund.cpp102 * Internal function. Tries to find a resource in given Resource
308 UResourceDataEntry find; local
329 find.fName = (char *)name;
330 find.fPath = (char *)path;
333 /*hashkey.pointer = (void *)&find;*/
337 r = (UResourceDataEntry *)uhash_get(cache, &find);
2156 /* we didn't find one we were looking for - so openDirect */
2499 /* Now, see if we can find the kwVal collator.. start the search over.. */
2752 fprintf(stderr, "%s-%s values: Can't find in %s - skipping. (%s)\n",
/external/icu/icu4c/source/i18n/
H A Drematch.cpp583 // find()
586 UBool RegexMatcher::find() { function in class:RegexMatcher
609 // to avoid sending find() into a loop on zero-length matches.
621 // A previous find() failed to match. Don't try again.
848 UBool RegexMatcher::find(int64_t start, UErrorCode &status) { function in class:RegexMatcher
869 return find();
875 // findUsingChunk() -- like find(), but with the advance knowledge that the
897 // to avoid sending find() into a loop on zero-length matches.
907 // A previous find() failed to match. Don't try again.
1757 while (find()) {
[all...]
H A Dtznames_impl.cpp756 * ZMatchInfo stores zone name match information used by find method
1283 TimeZoneNamesImpl::find(const UnicodeString& text, int32_t start, uint32_t types, UErrorCode& status) const { function in class:TimeZoneNamesImpl
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h71 /// find - Finds the subtree associated with the specified key value.
73 ImutAVLTree* find(key_type_ref K) { function in class:llvm::ImutAVLTree
168 bool contains(key_type_ref K) { return (bool) find(K); }
616 // if find a collision compare those trees by their contents.
/external/llvm/include/llvm/CodeGen/
H A DMachineScheduler.h504 iterator find(SUnit *SU) { function in class:llvm::ReadyQueue
505 return std::find(Queue.begin(), Queue.end(), SU);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp961 int find = SubstName.Find(FX_BSTRC(","), 0); local
962 if (find >= 0) {
963 family = SubstName.Left(find);
965 style = SubstName.Mid(find + 1);
996 find = family.ReverseFind('-');
997 if (find >= 0) {
998 style = family.Mid(find + 1);
999 family = family.Left(find);
/external/skia/tests/
H A DPictureTest.cpp362 static bool find(SkPixelRef const * const * array, SkPixelRef const * ref, int count) { function
367 // colors[], find the corresponding value in refs[] and append that ref into
552 if (-1 == fromAnalytic.find(fromImage[i])) {
566 bool found = find(gatherRefs, fromAnalytic[i], gatherCount);
656 REPORTER_ASSERT(reporter, -1 != fromAnalytic.find(fromImage[i]));
662 REPORTER_ASSERT(reporter, -1 != gatheredRefs.find(fromAnalytic[i]));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime_3.6.0.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jar ... next int i int i public int size () private int find (int) int key int pos int i private boolean _put ...
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jar ... synchronized org.osgi.util.measurement.Unit find (long) int i int size long type org.osgi ...
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebLocalFrameImpl.cpp1347 bool WebLocalFrameImpl::find(int identifier, const WebString& searchText, const WebFindOptions& options, bool wrapWithinFrame, WebRect* selectionRect) function in class:WebLocalFrameImpl
1349 return ensureTextFinder().find(identifier, searchText, options, wrapWithinFrame, selectionRect);
1704 // Try to find the first focusable node up the chain, which will, for
1726 // Iterate over all the nodes in the range until we find a focusable node.
1749 // We just finished the find 'session' and we don't want future (potentially
1750 // unrelated) find 'sessions' operations to start at the same place.
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Drdopt.c1226 /* find first label */
1538 int find=0; local
1635 find = 1;
1645 if(!find)
1658 find = 1;
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp458 T* find (deUint32 name);
506 T* ObjectManager<T>::find (deUint32 name) function in class:sglr::rc::ObjectManager
508 typename std::map<deUint32, T*>::iterator it = m_objects.find(name);
518 DE_ASSERT(find(object->getName()) == object);
525 DE_ASSERT(find(object->getName()) == object);
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c1227 /* find first label */
1539 int find=0; local
1636 find = 1;
1646 if(!find)
1659 find = 1;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp113 iterator find(const KeyT &Key) { function in class:__anon26262::MapVector
114 typename MapTy::iterator It = Map.find(Key);
119 const_iterator find(const KeyT &Key) const { function in class:__anon26262::MapVector
120 typename MapTy::const_iterator It = Map.find(Key);
129 typename MapTy::iterator It = Map.find(Key);
623 /// Attempt to find the PtrState object describing the top down state for
625 /// state for Arg if we do not find one.
630 /// Attempt to find the PtrState object describing the bottom up state for
632 /// state for Arg if we do not find one.
637 /// Attempt to find th
[all...]
/external/stlport/stlport/stl/
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
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp497 const RetainSummary * find(const ObjCInterfaceDecl *D, Selector S) { function in class:__anon18229::ObjCSummaryCache
498 // Do a lookup with the (D,S) pair. If we find a match return
501 MapTy::iterator I = M.find(K);
508 // Walk the super chain. If we find a hit with a parent, we'll end
515 if ((I = M.find(ObjCSummaryKey(C, S))) != M.end())
529 const RetainSummary *find(IdentifierInfo* II, Selector S) { function in class:__anon18229::ObjCSummaryCache
532 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
535 I = M.find(ObjCSummaryKey(S));
873 return FName.find("MakeCollectable") != StringRef::npos;
1004 FuncSummariesTy::iterator I = FuncSummaries.find(F
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 1428 milliseconds

<<111213