Home
last modified time | relevance | path

Searched refs:FindFile (Results 1 – 17 of 17) sorted by relevance

/external/google-breakpad/src/common/
Dmodule_unittest.cc93 Module::File* file = m.FindFile("file_name.cc"); in TEST()
119 Module::File* file1 = m.FindFile("filename-b.cc"); in TEST()
120 Module::File* file2 = m.FindFile("filename-a.cc"); in TEST()
176 Module::File* file1 = m.FindFile("filename1"); in TEST()
177 m.FindFile("filename2"); // not used by any line in TEST()
178 Module::File* file3 = m.FindFile("filename3"); in TEST()
227 Module::File* file1 = m.FindFile("filename.cc"); in TEST()
398 Module::File* file1 = m.FindFile("foo"); in TEST()
399 Module::File* file2 = m.FindFile(string("bar")); in TEST()
400 Module::File* file3 = m.FindFile(string("foo")); in TEST()
[all …]
Dmodule.h241 File *FindFile(const string &name);
242 File *FindFile(const char *name);
Dstabs_to_module.cc73 current_source_file_ = module_->FindFile(name); in StartCompilationUnit()
122 current_source_file_ = module_->FindFile(name); in Line()
Dmodule.cc164 Module::File *Module::FindFile(const string &name) { in FindFile() function in google_breakpad::Module
186 Module::File *Module::FindFile(const char *name) { in FindFile() function in google_breakpad::Module
188 return FindFile(name_string); in FindFile()
Ddwarf_line_to_module.cc103 files_[file_num] = module_->FindFile(full_name); in DefineFile()
Ddwarf_cu_to_module_unittest.cc317 l.file = module_.FindFile(filename); in PushLine()
/external/skqp/infra/bots/recipes/
Dupload_calmbench_results.py25 def FindFile(api, suffix): function
46 json_src = FindFile(api, "json")
47 csv_src = FindFile(api, "csv")
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_suppressions.cpp50 static const char *FindFile(const char *file_path, in FindFile() function
63 static const char *FindFile(const char *file_path, char *, uptr) { in FindFile() function
73 filename = FindFile(filename, new_file_path.data(), new_file_path.size()); in ParseFromFile()
/external/llvm-project/lldb/include/lldb/Target/
DPathMappingList.h104 bool FindFile(const FileSpec &orig_spec, FileSpec &new_spec) const;
/external/protobuf/src/google/protobuf/
Ddescriptor_database.cc245 Value SimpleDescriptorDatabase::DescriptorIndex<Value>::FindFile( in FindFile() function in google::protobuf::SimpleDescriptorDatabase::DescriptorIndex
349 return MaybeCopy(index_.FindFile(filename), output); in FindFileByName()
413 return MaybeParse(index_.FindFile(filename), output); in FindFileByName()
Ddescriptor_database.h207 Value FindFile(const std::string& filename);
Ddescriptor.cc598 inline const FileDescriptor* FindFile(const std::string& key) const;
957 inline const FileDescriptor* DescriptorPool::Tables::FindFile( in FindFile() function in google::protobuf::DescriptorPool::Tables
1318 return tables_->FindFile(filename) != nullptr; in InternalIsFileLoaded()
1396 const FileDescriptor* result = tables_->FindFile(name); in FindFileByName()
1403 result = tables_->FindFile(name); in FindFileByName()
1920 || tables_->FindFile(file_proto.name()) != nullptr in TryFindSymbolInFallbackDatabase()
1941 if (tables_->FindFile(file_proto.name()) != nullptr) { in TryFindExtensionInFallbackDatabase()
4223 const FileDescriptor* existing_file = tables_->FindFile(filename_); in BuildFile()
4257 if (tables_->FindFile(proto.dependency(i)) == nullptr && in BuildFile()
4372 const FileDescriptor* dependency = tables_->FindFile(proto.dependency(i)); in BuildFileImpl()
/external/llvm-project/lldb/source/Symbol/
DLineEntry.cpp258 if (target_sp->GetSourcePathMap().FindFile(original_file, new_file_spec)) in ApplyFileMappings()
/external/clang/lib/Frontend/
DCompilerInstance.cpp756 const FileEntry *FindFile = FileMgr.getFile(Opts.FindPchSource); in InitializeSourceManager() local
757 if (!FindFile) { in InitializeSourceManager()
764 Includers.push_back(std::make_pair(FindFile, FindFile->getDir())); in InitializeSourceManager()
/external/llvm-project/lldb/source/Target/
DPathMappingList.cpp200 bool PathMappingList::FindFile(const FileSpec &orig_spec, in FindFile() function in PathMappingList
/external/llvm-project/lldb/source/Core/
DSourceManager.cpp448 if (target->GetSourcePathMap().FindFile(m_file_spec, new_file_spec) || in CommonInitializer()
DModule.cpp1615 return m_source_mappings.FindFile(orig_spec, new_spec); in FindSourceFile()