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

1 2 3

  /external/opencv3/modules/viz/src/vtk/
vtkXYZReader.h 63 vtkSetStringMacro(FileName)
64 vtkGetStringMacro(FileName)
70 char* FileName;
vtkOBJWriter.h 66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName;
vtkXYZWriter.h 66 vtkSetStringMacro(FileName)
67 vtkGetStringMacro(FileName)
82 char *FileName;
  /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/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/clang/test/CodeGen/
types.c 3 struct FileName {
4 struct FileName *next;
  /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/clang/unittests/Basic/
FileManagerTest.cpp 134 const char *FileName = "C:test";
136 statCache->InjectFile(FileName, 45);
150 file = manager.getFile(FileName);
  /external/llvm/include/llvm/Support/
LockFileManager.h 53 SmallString<128> FileName;
70 LockFileManager(StringRef FileName);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sfc.h 30 WCHAR FileName[MAX_PATH];
  /external/clang/include/clang/Serialization/
GlobalModuleIndex.h 81 std::string FileName;
  /external/llvm/tools/llvm-link/
llvm-link.cpp 44 "override", cl::ZeroOrMore, cl::value_desc("filename"),
51 "import", cl::ZeroOrMore, cl::value_desc("function:filename"),
52 cl::desc("Pair of function name and filename, where function should be "
53 "imported from bitcode in filename"));
61 cl::desc("Function index filename"),
63 cl::value_desc("filename"));
66 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
67 cl::value_desc("filename"));
166 std::string FileName = Import.substr(Idx + 1, std::string::npos);
169 std::unique_ptr<Module> M = loadFile(argv0, FileName, Context, false)
    [all...]
  /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/webrtc/webrtc/system_wrappers/source/
file_impl.cc 76 int FileWrapperImpl::FileName(char* file_name_utf8, size_t size) const {
  /ndk/sources/host-tools/make-3.81/
vmsfunctions.c 159 static struct dsc$descriptor_s FileName =
192 Nam.nam$l_esa = EName; /* expanded filename */
194 Nam.nam$l_rsa = RName; /* resultant filename */
207 FileName.dsc$a_pointer = Nam.nam$l_name;
208 FileName.dsc$w_length = Nam.nam$b_name + Nam.nam$b_type + Nam.nam$b_ver;
223 &FibDesc, &FileName, 0, 0, &Atr, 0);
  /external/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 67 StringRef FileName, bool IsAngled,
71 void WriteLineInfo(const char *Filename, int Line,
102 /// markers depending on what mode we're in, including the \p Filename and
105 void InclusionRewriter::WriteLineInfo(const char *Filename, int Line,
112 OS.write_escaped(Filename);
118 OS.write_escaped(Filename);
175 StringRef /*FileName*/,
340 StringRef Filename;
368 Filename = FilenameBuffer;
374 Filename = PP.getSpelling(Tok, FilenameBuffer, &Invalid)
    [all...]
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 325 StringRef FileName = File->getValue(FileStorage);
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/
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/Lex/
PPCallbacksTest.cpp 57 StringRef FileName, bool IsAngled,
63 this->FileName = FileName.str();
74 SmallString<16> FileName;
188 // Callbacks have been executed at this point -- return filename range.
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 644 const char *FileName = Entry.Name;
646 sys::path::is_absolute(FileName)) {
647 Result = FileName;
660 // We know that FileName is not absolute, the only way to have an
667 sys::path::append(FilePath, IncludeDir, FileName);
683 if (!getFileNameByIndex(Row.File, CompDir, Kind, Result.FileName))
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 579 const char *FileName;
580 error(coff->getAuxSymbol<char>(SI + 1, FileName));
582 StringRef Name(FileName, Symbol->getNumberOfAuxSymbols() *
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 99 StringRef Filename;
104 WeightedFile(StringRef F, uint64_t W) : Filename{F}, Weight{W} {}
125 auto ReaderOrErr = InstrProfReader::create(Input.Filename);
127 exitWithErrorCode(ec, Input.Filename);
134 handleMergeWriterError(EC, Input.Filename, I.Name, firstTime);
138 exitWithErrorCode(Reader->getError(), Input.Filename);
164 SampleProfileReader::create(Input.Filename, getGlobalContext());
166 exitWithErrorCode(EC, Input.Filename);
175 exitWithErrorCode(EC, Input.Filename);
186 handleMergeWriterError(EC, Input.Filename, FName)
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 214 StringRef FileName;
234 InclusionKind Kind, StringRef FileName,
242 StringRef getFileName() const { return FileName; }
494 StringRef FileName, bool IsAngled,
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 433 SmallString<128> FileName;
436 // Include the filename in the symbol name. Including "sub_" matches gcc and
439 FileName = llvm::sys::path::filename(MainFile->getName());
441 FileName = "<null>";
444 for (size_t i = 0; i < FileName.size(); ++i) {
447 if (!isPreprocessingNumberBody(FileName[i]))
448 FileName[i] = '_';
452 FTy, llvm::Twine("_GLOBAL__sub_I_", FileName), FI);
  /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...]

Completed in 1431 milliseconds

1 2 3