HomeSort by relevance Sort by last modified time
    Searched refs:Find (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /external/chromium/base/
field_trial.cc 104 FieldTrial* field_trial = Find(name);
112 FieldTrial* field_trial = Find(name);
119 FieldTrial* FieldTrialList::Find(const std::string& name) {
127 RegistrationList::iterator it = registered_.find(name);
144 DCHECK_EQ(name.find(kPersistentStringSeparator), std::string::npos);
145 DCHECK_EQ(group_name.find(kPersistentStringSeparator), std::string::npos);
161 size_t name_end = prior_state.find(kPersistentStringSeparator, next_item);
164 size_t group_name_end = prior_state.find(kPersistentStringSeparator,
173 FieldTrial *field_trial(FieldTrialList::Find(name));
field_trial.h 89 // and can be used to find the trial (only one trial can be present for each
172 // The Find() method can be used to test to see if a named Trial was already
174 static FieldTrial* Find(const std::string& name);
  /external/skia/src/core/
SkGlobals.cpp 25 SkGlobals::Rec* SkGlobals::Find(uint32_t tag, Rec* (*create_proc)())
  /external/webkit/WebKit/android/wds/
DebugServer.cpp 98 Command* c = Command::Find(conn);
100 LOGE("Could not find matching command");
Command.cpp 133 Command* Command::Find(const Connection* conn) {
  /external/chromium/net/base/
x509_certificate.cc 67 DCHECK(cache_.find(cert->fingerprint()) == cache_.end());
76 CertMap::iterator pos(cache_.find(cert->fingerprint()));
82 // Find a certificate in the cache with the given fingerprint. If one does
84 X509Certificate* X509Certificate::Cache::Find(const Fingerprint& fingerprint) {
87 CertMap::iterator pos(cache_.find(fingerprint));
99 if (denied_.find(cert->fingerprint()) != denied_.end()) {
101 DCHECK(allowed_.find(cert->fingerprint()) == allowed_.end());
105 if (allowed_.find(cert->fingerprint()) != allowed_.end()) {
107 DCHECK(denied_.find(cert->fingerprint()) == denied_.end());
144 cache->Find(CalculateFingerprint(cert_handle))
    [all...]
x509_certificate.h 256 X509Certificate* Find(const Fingerprint& fingerprint);
  /external/webkit/WebCore/platform/wx/
FileSystemWx.cpp 151 if (afile.GetFullPath().Find(afile.GetPathSeparator()) == wxNOT_FOUND)
161 if (dirfile.GetFullPath().Find(dirfile.GetPathSeparator()) == wxNOT_FOUND)
  /sdk/emulator/qtools/
hash_table.h 25 T Find(const char *key);
150 typename HashTable<T>::value_type HashTable<T>::Find(const char *key)
161 // If we get here, then we didn't find the key
168 // Find the first non-NULL table entry.
199 // Find the next non-NULL table entry.
  /external/v8/test/cctest/
test-log.cc 241 const char* Find(const char* substr) {
245 const char* Find(const i::Vector<char>& substr) {
246 return Find(substr.start());
250 const char* s1_pos = Find(s1);
251 const char* s2_pos = Find(s2);
276 CHECK_NE(NULL, matcher->Find(code_creation));
315 CHECK_NE(NULL, matcher->Find(code_creation));
317 const bool ticks_found = matcher->Find(tick) != NULL;
564 char* pos = const_cast<char*>(matcher.Find(callback_rec));
611 CHECK_NE(NULL, matcher.Find(prop1_getter_record))
    [all...]
  /external/webkit/WebCore/bindings/scripts/
CodeGenerator.pm 27 use File::Find;
210 # IDLs in order to find out all inherited properties/methods.
244 $idlFiles->{$1} = $File::Find::name if /^([A-Z].*)\.idl$/;
245 $File::Find::prune = 1 if /^\../;
247 find($wanted, @directories);
261 # Step #1: Find the IDL file associated with 'interface'
263 or die("Could NOT find IDL file for interface \"$interfaceName\"!\n");
275 die("Could NOT find interface definition for $interface in $filename");
  /external/chromium/third_party/icu/source/tools/genpname/
gensvpa.pl 18 use File::Find;
  /external/icu4c/tools/genpname/
gensvpa.pl 18 use File::Find;
  /external/skia/src/animator/
SkDisplayType.h 190 static SkDisplayTypes Find(SkAnimateMaker* , const SkMemberInfo* );
SkMemberInfo.cpp 490 // Find Nth memberInfo
491 const SkMemberInfo* SkMemberInfo::Find(const SkMemberInfo info[], int count, int* index) {
495 const SkMemberInfo* result = SkMemberInfo::Find(inherited, info->fCount, index);
511 // Find named memberinfo
512 const SkMemberInfo* SkMemberInfo::Find(const SkMemberInfo info[], int count, const char** matchPtr) {
516 const SkMemberInfo* result = SkMemberInfo::Find(inherited, info->fCount, matchPtr);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
relabel.h 72 input_map.find(arc.ilabel);
76 it = output_map.find(arc.olabel);
113 new_isymbols->Find(syms_iter.Symbol())));
123 new_osymbols->Find(syms_iter.Symbol())));
211 input_map_[syms_iter.Value()] = new_isymbols->Find(syms_iter.Symbol());
222 new_osymbols->Find(syms_iter.Symbol());
281 input_map_.find(arc.ilabel);
288 output_map_.find(arc.olabel);
symbol-table.cpp 84 symbol_map_.find(symbol);
137 hash_map<string, int64>::const_iterator it = symbol_map_.find(symbol);
149 snprintf(line, kLineLen, "%s\t%lld\n", symbols_[i], Find(symbols_[i]));
  /external/webkit/WebKit/chromium/src/mac/
WebInputEventFactory.mm 683 // "Find"
685 return @"Find";
    [all...]
  /frameworks/base/tools/aidl/
Type.cpp 916 new MethodCall( NAMES.Find(type), "asInterface", 1,
1069 Type* t = Find(type->QualifiedName());
1087 Namespace::Find(const string& name) const
1099 Namespace::Find(const char* package, const char* name) const
1107 return Find(s);
1128 Type* result = Find(name);
1146 if (name.find('<') == name.npos) {
1153 // find the part before the '<', find a generic for it
1154 ssize_t baseIndex = normalized.find('<');
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
parser.h 315 bool Find(const Message* descriptor,
  /external/v8/src/
zone.h 234 bool Find(const Key& key, Locator* locator);
240 // Find the mapping with the greatest key in this tree.
247 // Find the mapping with the least key in this tree.
  /external/openssl/apps/
makeapps.com 469 $! Tell The User We Can't Find The LIBCRYPTO.OLB Library.
472 $ WRITE SYS$OUTPUT "Can't Find The Library ",CRYPTO_LIB,"."
489 $! Tell The User We Can't Find The LIBSSL.OLB Library.
492 $ WRITE SYS$OUTPUT "Can't Find The Library ",SSL_LIB,"."
572 $! Find Out Which One To Use.
621 $! Find out what socket library we have available
  /frameworks/base/tools/localize/
ValuesFile.cpp 117 string id = XMLAttribute::Find(attrs, "", "name", "");
125 string id = XMLAttribute::Find(attrs, "", "name", "");
  /external/tinyxml/
tinyxml.cpp 466 TiXmlAttribute* node = attributeSet.Find( name );
664 const TiXmlAttribute* node = attributeSet.Find( name );
703 const TiXmlAttribute* node = attributeSet.Find( name );
713 const TiXmlAttribute* node = attributeSet.Find( name );
747 TiXmlAttribute* node = attributeSet.Find( name );
1205 if (value.find ('\"') == TIXML_STRING::npos)
1214 if (value.find( '\"' ) != TIXML_STRING::npos)
1534 assert( !Find( addMe->Name() ) ); // Shouldn't be multiply adding to the set.
1561 const TiXmlAttribute* TiXmlAttributeSet::Find( const char * name ) const
1573 TiXmlAttribute* TiXmlAttributeSet::Find( const char * name
    [all...]
  /external/srec/tools/grxmlcompile/
fst-io.h 81 string symbol = syms->Find(id);
294 n = syms->Find(s);
321 typename hash_map<StateId, StateId>::const_iterator it = states_.find(n);

Completed in 813 milliseconds

12 3 4 5