HomeSort by relevance Sort by last modified time
    Searched refs:FileName (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/opencv3/modules/viz/src/vtk/
vtkXYZReader.h 63 vtkSetStringMacro(FileName)
64 vtkGetStringMacro(FileName)
70 char* FileName;
vtkXYZWriter.h 66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName;
vtkXYZReader.cpp 55 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);
vtkOBJWriter.h 66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName;
vtkXYZWriter.cpp 64 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/
types.c 3 struct FileName {
4 struct FileName *next;
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";
  /external/jhead/
jhead.c 68 // the filename to store the thumbnail to.
71 // the filename to retrieve the thumbnail from.
294 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);
    [all...]
  /external/libchrome/sandbox/win/src/
policy_params.h 31 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/
SanitizerBlacklist.cpp 36 bool SanitizerBlacklist::isBlacklistedFile(StringRef FileName,
38 return SCL->inSection("src", FileName, Category);
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 69 StringRef Element(llvm::sys::path::filename(
73 StringRef Element(llvm::sys::path::filename(
79 /// 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
84 /// \c Filename's trailing characters already consumed during recursion.
100 StringRef FileName,
104 if (Comparator.equivalent(StringRef(Path), FileName))
108 StringRef Element(llvm::sys::path::filename(FileName.drop_back
    [all...]
  /external/llvm/include/llvm/Support/
LockFileManager.h 53 SmallString<128> FileName;
70 LockFileManager(StringRef FileName);
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 38 /// in the compilation database are keyed by filename, a simple string match
73 /// Returns file name stored in this trie that is equivalent to 'FileName'
78 StringRef findEquivalent(StringRef FileName,
  /external/webrtc/webrtc/system_wrappers/include/
file_wrapper.h 61 virtual int FileName(char* file_name_utf8,
  /external/llvm/lib/Support/
Process.cpp 30 const std::string& FileName)
32 assert(!path::is_absolute(FileName));
47 path::append(FilePath, FileName);
  /external/clang/lib/Frontend/
DependencyGraph.cpp 50 StringRef FileName, bool IsAngled,
70 StringRef FileName,
116 StringRef FileName = AllFiles[I]->getName();
117 if (FileName.startswith(SysRoot))
118 FileName = FileName.substr(SysRoot.size());
120 OS << DOT::EscapeString(FileName)
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 217 DiagnosticInfoSampleProfile(StringRef FileName, unsigned LineNum,
220 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
222 DiagnosticInfoSampleProfile(StringRef FileName, const Twine &Msg,
224 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
237 StringRef getFileName() const { return FileName; }
243 StringRef FileName;
256 DiagnosticInfoPGOProfile(const char *FileName, const Twine &Msg,
258 : DiagnosticInfo(DK_PGOProfile, Severity), FileName(FileName), Msg(Msg) {
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCheckerImpl.h 51 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/
perf_video.cpp 63 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/
SanitizerBlacklist.h 38 bool isBlacklistedFile(StringRef FileName,
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 32 std::string FileName;
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyldChecker.h 92 std::pair<uint64_t, std::string> getSectionAddr(StringRef FileName,
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractEngine.cpp 6 #include "../../../Windows/FileName.h"
27 FString FileName;
40 if (!fi.Find(FileName))
53 options.filePath = fs2us(FileName);
101 HRESULT ExtractArchive(CCodecs *codecs, const FString &fileName, const FString &destFolder,
108 t.FileName = fileName;
  /external/clang/unittests/AST/
MatchVerifier.h 95 StringRef FileName;
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/Tooling/
CompilationDatabaseTest.cpp 114 EXPECT_EQ(FileName1, Commands[0].Filename) << ErrorMessage;
118 EXPECT_EQ(FileName2, Commands[1].Filename) << ErrorMessage;
133 EXPECT_EQ(FileName2, Commands[0].Filename) << ErrorMessage;
137 EXPECT_EQ(FileName1, Commands[1].Filename) << ErrorMessage;
142 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName,
149 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
158 StringRef FileName("//net/dir/filename");
164 FileName,
168 "\"file\":\"" + FileName + "\"}]").str()
    [all...]

Completed in 447 milliseconds

1 2 3 4 5 6 7 8