Searched defs:FileName (Results 1 - 25 of 88) sorted by relevance

1234

/external/opencv3/modules/viz/src/vtk/
H A DvtkXYZReader.h63 vtkSetStringMacro(FileName)
64 vtkGetStringMacro(FileName)
70 char* FileName; member in class:cv::viz::vtkXYZReader
H A DvtkOBJWriter.h66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName; member in class:cv::viz::vtkOBJWriter
H A DvtkXYZWriter.h66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName; member in class:cv::viz::vtkXYZWriter
/external/llvm/lib/Support/
H A DProcess.cpp30 const std::string& FileName)
32 assert(!path::is_absolute(FileName));
47 path::append(FilePath, FileName);
29 FindInEnvPath(const std::string& EnvName, const std::string& FileName) argument
H A DLockFileManager.cpp143 LockFileManager::LockFileManager(StringRef FileName) argument
145 this->FileName = FileName;
146 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
150 LockFileName = this->FileName;
285 if (!sys::fs::exists(FileName))
/external/clang/lib/Basic/
H A DSanitizerBlacklist.cpp36 bool SanitizerBlacklist::isBlacklistedFile(StringRef FileName, argument
38 return SCL->inSection("src", FileName, Category);
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h32 std::string FileName; member in struct:llvm::DILineInfo
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
/external/clang/include/clang/Frontend/
H A DCommandLineSourceLoc.h26 std::string FileName; member in struct:clang::ParsedSourceLocation
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
76 if (Val.FileName.empty()) {
/external/clang/test/CodeGen/
H A Dtypes.c3 struct FileName { struct
4 struct FileName *next;
/external/llvm/include/llvm/Support/
H A DLockFileManager.h53 SmallString<128> FileName; member in class:llvm::LockFileManager
70 LockFileManager(StringRef FileName);
/external/clang/include/clang/Serialization/
H A DGlobalModuleIndex.h81 std::string FileName; member in struct:clang::GlobalModuleIndex::ModuleInfo
/external/clang/lib/Frontend/
H A DDependencyGraph.cpp50 StringRef FileName, bool IsAngled,
70 StringRef FileName,
116 StringRef FileName = AllFiles[I]->getName(); local
117 if (FileName.startswith(SysRoot))
118 FileName = FileName.substr(SysRoot.size());
120 OS << DOT::EscapeString(FileName)
68 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
/external/clang/lib/Tooling/
H A DFileMatchTrie.cpp79 /// matches 'FileName'.
81 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
82 /// \c true and an empty string is returned. If no path fits 'FileName', an
100 StringRef FileName,
104 if (Comparator.equivalent(StringRef(Path), FileName))
108 StringRef Element(llvm::sys::path::filename(FileName.drop_back(
114 Comparator, FileName, IsAmbiguous,
123 if (Comparator.equivalent(AllChildren[i], FileName)) {
178 StringRef FileMatchTrie::findEquivalent(StringRef FileName, argument
180 if (llvm::sys::path::is_relative(FileName)) {
99 findEquivalent(const PathComparator& Comparator, StringRef FileName, bool &IsAmbiguous, unsigned ConsumedLength = 0) const argument
[all...]
H A DJSONCompilationDatabase.cpp325 StringRef FileName = File->getValue(FileStorage); local
327 if (llvm::sys::path::is_relative(FileName)) {
331 llvm::sys::path::append(AbsolutePath, FileName);
334 llvm::sys::path::native(FileName, NativeFilePath);
/external/clang/unittests/AST/
H A DDeclPrinterTest.cpp73 StringRef FileName) {
80 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
68 PrintedDeclMatches( StringRef Code, const std::vector<std::string> &Args, const DeclarationMatcher &NodeMatch, StringRef ExpectedPrinted, StringRef FileName) argument
H A DNamedDeclPrinterTest.cpp67 StringRef ExpectedPrinted, StringRef FileName) {
74 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
64 PrintedNamedDeclMatches(StringRef Code, const std::vector<std::string> &Args, bool SuppressUnwrittenScope, const DeclarationMatcher &NodeMatch, StringRef ExpectedPrinted, StringRef FileName) argument
H A DMatchVerifier.h95 StringRef FileName; local
99 FileName = "input.c";
103 FileName = "input.c";
107 FileName = "input.cc";
111 FileName = "input.cc";
114 FileName = "input.cl";
117 FileName = "input.mm";
123 if (!tooling::runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp134 const char *FileName = "C:test"; local
136 statCache->InjectFile(FileName, 45);
150 file = manager.getFile(FileName);
/external/llvm/lib/Fuzzer/
H A DFuzzerIO.cpp90 const std::string &FileName) {
91 return DirPath + "/" + FileName;
89 DirPlusFile(const std::string &DirPath, const std::string &FileName) argument
/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp142 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName, argument
149 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
158 StringRef FileName("//net/dir/filename");
164 FileName,
168 "\"file\":\"" + FileName + "\"}]").str(),
261 StringRef FileName("//net/path/to/a-file.cpp");
265 FileName,
268 "\"file\":\"" + FileName + "\"}]").str(),
282 "\"file\":\"" + FileName + "\"}]").str(),
290 StringRef FileName("//ne
[all...]
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp166 std::string FileName = Import.substr(Idx + 1, std::string::npos); local
169 std::unique_ptr<Module> M = loadFile(argv0, FileName, Context, false);
171 errs() << argv0 << ": error loading file '" << FileName << "'\n"; local
176 errs() << argv0 << ": " << FileName local
184 << FunctionName << " from " << FileName << "\n"; local
192 << " from " << FileName << "\n"; local
197 errs() << "Importing " << FunctionName << " from " << FileName << "\n"; local
214 auto &TempMDVals = ModuleToTempMDValsMap[FileName];
/external/lzma/CPP/7zip/Bundles/SFXSetup/
H A DExtractEngine.cpp6 #include "../../../Windows/FileName.h"
27 FString FileName; member in struct:CThreadExtracting
40 if (!fi.Find(FileName))
53 options.filePath = fs2us(FileName);
108 t.FileName = fileName;
/external/webrtc/webrtc/system_wrappers/source/
H A Dfile_impl.cc76 int FileWrapperImpl::FileName(char* file_name_utf8, size_t size) const { function in class:webrtc::FileWrapperImpl
/external/clang/lib/Driver/
H A DJob.cpp212 void Command::setResponseFile(const char *FileName) { argument
213 ResponseFile = FileName;
215 ResponseFileFlag += FileName;
/external/clang/tools/clang-format/
H A DClangFormat.cpp113 static FileID createInMemoryFile(StringRef FileName, MemoryBuffer *Source, argument
116 MemFS->addFileNoOwn(FileName, 0, Source);
117 return Sources.createFileID(Files.getFile(FileName), SourceLocation(),
240 static bool format(StringRef FileName) { argument
242 MemoryBuffer::getFileOrSTDIN(FileName);
253 StringRef AssumedFileName = (FileName == "-") ? AssumeFileName : FileName;
293 if (FileName == "-")

Completed in 626 milliseconds

1234