Searched refs:FileName (Results 1 - 25 of 156) sorted by relevance

1234567

/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 DvtkXYZReader.cpp55 this->FileName = 0;
67 os << indent << "FileName: " << (this->FileName ? this->FileName : "(none)") << "\n";
73 if(!this->FileName)
75 vtkErrorMacro("A FileName must be specified.");
80 ifstream fin(this->FileName);
83 vtkErrorMacro("Error opening file " << this->FileName);
92 vtkDebugMacro("Reading points from file " << this->FileName);
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
H A DvtkXYZWriter.cpp64 if (!this->FileName )
66 vtkErrorMacro(<< "No FileName specified! Can't write!");
72 ostream *outfilep = new ofstream(this->FileName, ios::out);
75 vtkErrorMacro(<< "Unable to open file: "<< this->FileName);
97 vtkErrorMacro("Ran out of disk space; deleting file: " << this->FileName);
98 unlink(this->FileName);
/external/clang/test/CodeGen/
H A Dtypes.c3 struct FileName { struct
4 struct FileName *next;
/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/jhead/
H A Djhead.c294 printf("not resizing %dx%x '%s'\n",ImageInfo.Height, ImageInfo.Width, ImageInfo.FileName);
352 static void DoCommand(const char * FileName, int ShowIt)
362 // (a is the number of characters to copy from FileName)
363 a = strlen(FileName)-1;
364 while(a > 0 && FileName[a-1] != SLASH) a--;
365 memcpy(TempName, FileName, a);
379 e += shellescape(ExecString+e, FileName);
410 unlink(FileName);
411 rename(TempName, FileName);
480 void RenameAssociated(const char * FileName, cha
[all...]
/external/libchrome/sandbox/win/src/
H A Dpolicy_params.h31 POLPARAMS_BEGIN(FileName)
34 POLPARAMS_END(FileName)
36 static_assert(OpenFile::NAME == static_cast<int>(FileName::NAME),
38 static_assert(OpenFile::BROKER == static_cast<int>(FileName::BROKER),
/external/clang/lib/Basic/
H A DSanitizerBlacklist.cpp36 bool SanitizerBlacklist::isBlacklistedFile(StringRef FileName, argument
38 return SCL->inSection("src", FileName, Category);
/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...]
/external/llvm/include/llvm/Support/
H A DLockFileManager.h53 SmallString<128> FileName; member in class:llvm::LockFileManager
70 LockFileManager(StringRef FileName);
/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
/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/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCheckerImpl.h51 StringRef FileName,
54 std::pair<uint64_t, std::string> getSectionAddr(StringRef FileName,
58 std::pair<uint64_t, std::string> getStubAddrFor(StringRef FileName,
/external/opencv3/modules/cudacodec/perf/
H A Dperf_video.cpp63 DEF_PARAM_TEST_1(FileName, string);
70 PERF_TEST_P(FileName, VideoReader, Values("gpu/video/768x576.avi", "gpu/video/1920x1080.avi"))
106 PERF_TEST_P(FileName, VideoWriter, Values("gpu/video/768x576.avi", "gpu/video/1920x1080.avi"))
/external/clang/include/clang/Basic/
H A DSanitizerBlacklist.h38 bool isBlacklistedFile(StringRef FileName,
/external/clang/include/clang/Tooling/
H A DFileMatchTrie.h73 /// Returns file name stored in this trie that is equivalent to 'FileName'
78 StringRef findEquivalent(StringRef 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/include/
H A Dfile_wrapper.h61 virtual int FileName(char* file_name_utf8,
/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/sancov/
H A Dsancov.cc145 return std::tie(FileName, Line) < std::tie(RHS.FileName, RHS.Line);
148 std::string FileName; member in struct:__anon12675::FileLoc
186 SmallString<256> FileName(FrameInfo.FileName);
187 sys::path::remove_dots(FileName, /* remove_dot_dot */ true);
188 FileLoc Loc = {FileName.str(), FrameInfo.Line};
206 std::string FileName = P.first.FileName; local
209 if (LastFileName != FileName)
343 getCoveragePoints(std::string FileName) argument
404 read(std::string FileName) argument
[all...]
/external/llvm/include/llvm/IR/
H A DDiagnosticInfo.h217 DiagnosticInfoSampleProfile(StringRef FileName, unsigned LineNum, argument
220 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
222 DiagnosticInfoSampleProfile(StringRef FileName, const Twine &Msg, argument
224 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
237 StringRef getFileName() const { return FileName; }
243 StringRef FileName; member in class:llvm::DiagnosticInfoSampleProfile
256 DiagnosticInfoPGOProfile(const char *FileName, const Twine &Msg, argument
258 : DiagnosticInfo(DK_PGOProfile, Severity), FileName(FileNam
272 const char *FileName; member in class:llvm::DiagnosticInfoPGOProfile
[all...]
/external/clang/lib/Serialization/
H A DModuleManager.cpp57 ModuleManager::addModule(StringRef FileName, ModuleKind Type, argument
77 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) {
82 if (!Entry && FileName != "-") {
94 New->FileName = FileName.str();
116 if (std::unique_ptr<llvm::MemoryBuffer> Buffer = lookupBuffer(FileName)) {
123 if (FileName == "-") {
247 ModuleManager::addInMemoryBuffer(StringRef FileName, argument
251 FileMgr.getVirtualFile(FileName, Buffer->getBufferSize(), 0);
412 bool ModuleManager::lookupModuleFile(StringRef FileName, argument
[all...]
/external/clang/unittests/Format/
H A DSortIncludesTest.cpp23 std::string sort(llvm::StringRef Code, StringRef FileName = "input.cpp") {
26 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
28 reformat(Style, Sorted, Ranges, FileName));

Completed in 1683 milliseconds

1234567