Home
last modified time | relevance | path

Searched refs:sources_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium/googleurl/src/
Durl_canon.h641 sources_.scheme = s; in SetScheme()
645 bool IsSchemeOverridden() const { return sources_.scheme != NULL; } in IsSchemeOverridden()
649 sources_.username = s; in SetUsername()
653 sources_.username = Placeholder(); in ClearUsername()
656 bool IsUsernameOverridden() const { return sources_.username != NULL; } in IsUsernameOverridden()
660 sources_.password = s; in SetPassword()
664 sources_.password = Placeholder(); in ClearPassword()
667 bool IsPasswordOverridden() const { return sources_.password != NULL; } in IsPasswordOverridden()
671 sources_.host = s; in SetHost()
675 sources_.host = Placeholder(); in ClearHost()
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor_database.cc453 sources_.push_back(source1); in MergedDescriptorDatabase()
454 sources_.push_back(source2); in MergedDescriptorDatabase()
458 : sources_(sources) {} in MergedDescriptorDatabase()
464 for (int i = 0; i < sources_.size(); i++) { in FindFileByName()
465 if (sources_[i]->FindFileByName(filename, output)) { in FindFileByName()
475 for (int i = 0; i < sources_.size(); i++) { in FindFileContainingSymbol()
476 if (sources_[i]->FindFileContainingSymbol(symbol_name, output)) { in FindFileContainingSymbol()
483 if (sources_[j]->FindFileByName(output->name(), &temp)) { in FindFileContainingSymbol()
498 for (int i = 0; i < sources_.size(); i++) { in FindFileContainingExtension()
499 if (sources_[i]->FindFileContainingExtension( in FindFileContainingExtension()
[all …]
Ddescriptor_database.h359 vector<DescriptorDatabase*> sources_;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dshortest-distance.h87 vector<StateId> sources_; // Source state for ith state in 'distance_', variable
120 while ((StateId)sources_.size() <= source) in ShortestDistance()
121 sources_.push_back(kNoStateId); in ShortestDistance()
122 sources_[source] = source; in ShortestDistance()
153 while ((StateId)sources_.size() <= arc.nextstate) in ShortestDistance()
154 sources_.push_back(kNoStateId); in ShortestDistance()
155 if (sources_[arc.nextstate] != source) { in ShortestDistance()
159 sources_[arc.nextstate] = source; in ShortestDistance()