Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/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.h362 vector<DescriptorDatabase*> sources_;
/frameworks/base/tools/aapt2/process/
DSymbolTable.cpp59 sources_.push_back(std::move(source)); in AppendSource()
66 sources_.insert(sources_.begin(), std::move(source)); in PrependSource()
99 std::unique_ptr<Symbol> symbol = delegate_->FindByName(*mangled_name, sources_); in FindByName()
128 std::unique_ptr<Symbol> symbol = delegate_->FindById(id, sources_); in FindById()
DSymbolTable.h106 std::vector<std::unique_ptr<ISymbolSource>> sources_; variable