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

1 2 3 4 5 6 7

  /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/llvm/lib/ExecutionEngine/
EventListenerCommon.h 28 // Holds the filename of each Scope, so that we can pass a null-terminated
36 std::string &Filename = Filenames[Scope];
37 if (Filename.empty()) {
39 Filename = DIScope.getFilename();
41 return Filename.c_str();
49 StringRef FileName = DIScope.getFilename();
54 if (FileName != "") {
55 sys::path::append(FullPath, FileName);
  /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/chromium_org/sandbox/win/src/
policy_params.h 30 POLPARAMS_BEGIN(FileName)
33 POLPARAMS_END(FileName)
35 COMPILE_ASSERT(OpenFile::NAME == static_cast<int>(FileName::NAME),
37 COMPILE_ASSERT(OpenFile::BROKER == static_cast<int>(FileName::BROKER),
filesystem_dispatcher.cc 95 const wchar_t* filename = name->c_str(); local
99 params[OpenFile::NAME] = ParamPickerMake(filename);
137 const wchar_t* filename = name->c_str(); local
141 params[OpenFile::NAME] = ParamPickerMake(filename);
180 const wchar_t* filename = name->c_str(); local
181 CountedParameterSet<FileName> params;
182 params[FileName::NAME] = ParamPickerMake(filename);
183 params[FileName::BROKER] = ParamPickerMake(broker);
218 const wchar_t* filename = name->c_str() local
270 const wchar_t* filename = name.c_str(); local
    [all...]
filesystem_interception.cc 194 CountedParameterSet<FileName> params;
195 params[FileName::NAME] = ParamPickerMake(name);
196 params[FileName::BROKER] = ParamPickerMake(broker);
252 CountedParameterSet<FileName> params;
253 params[FileName::NAME] = ParamPickerMake(name);
254 params[FileName::BROKER] = ParamPickerMake(broker);
311 object_name.Buffer = file_rename_info->FileName;
324 CountedParameterSet<FileName> params;
325 params[FileName::NAME] = ParamPickerMake(name);
326 params[FileName::BROKER] = ParamPickerMake(broker)
    [all...]
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 67 StringRef Element(llvm::sys::path::filename(
71 StringRef Element(llvm::sys::path::filename(
77 /// matches 'FileName'.
79 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
80 /// \c true and an empty string is returned. If no path fits 'FileName', an
82 /// \c Filename's trailing characters already consumed during recursion.
98 StringRef FileName,
102 if (Comparator.equivalent(StringRef(Path), FileName))
106 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/src/system_wrappers/interface/
file_wrapper.h 53 virtual int FileName(char* fileNameUTF8,
  /external/netperf/
netserver.c 174 char FileName[PATH_MAX]; /* for opening the debug log file */
175 strcpy(FileName, DEBUG_LOG_FILE);
179 snprintf(&FileName[strlen(FileName)], sizeof(FileName) - strlen(FileName), "_%d", getpid());
180 if ((where = fopen(FileName, "w")) == NULL) {
185 chmod(FileName,0644);
797 char FileName[PATH_MAX]; /* for opening the debug log file */
918 strcpy(FileName, DEBUG_LOG_FILE)
    [all...]
  /external/clang/lib/Frontend/
DependencyGraph.cpp 50 StringRef FileName, bool IsAngled,
69 StringRef FileName,
115 StringRef FileName = AllFiles[I]->getName();
116 if (FileName.startswith(SysRoot))
117 FileName = FileName.substr(SysRoot.size());
119 OS << DOT::EscapeString(FileName)
  /external/llvm/lib/Support/
LockFileManager.cpp 74 LockFileManager::LockFileManager(StringRef FileName)
76 this->FileName = FileName;
77 if (std::error_code EC = sys::fs::make_absolute(this->FileName)) {
81 LockFileName = this->FileName;
217 if (sys::fs::exists(FileName.str())) {
Process.cpp 73 const std::string& FileName)
89 path::append(FilePath, FileName);
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
file_wrapper.h 61 virtual int FileName(char* file_name_utf8,
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
39 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
43 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 204 DiagnosticInfoSampleProfile(const char *FileName, unsigned LineNum,
207 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
209 DiagnosticInfoSampleProfile(const char *FileName, const Twine &Msg,
211 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(FileName),
215 : DiagnosticInfo(DK_SampleProfile, Severity), FileName(nullptr),
225 const char *getFileName() const { return FileName; }
231 const char *FileName;
281 void getLocation(StringRef *Filename, unsigned *Line, unsigned *Column) const
    [all...]
  /external/webrtc/src/system_wrappers/source/
file_impl.h 26 virtual int FileName(char* fileNameUTF8,
  /external/clang/unittests/AST/
MatchVerifier.h 85 StringRef FileName;
89 FileName = "input.c";
93 FileName = "input.c";
97 FileName = "input.cc";
101 FileName = "input.cc";
104 FileName = "input.cl";
109 if (!tooling::runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
  /external/clang/include/clang/Serialization/
ModuleManager.h 164 /// \param FileName The file name of the module to be loaded.
189 AddModuleResult addModule(StringRef FileName, ModuleKind Type,
202 void addInMemoryBuffer(StringRef FileName, llvm::MemoryBuffer *Buffer);
259 /// \param FileName The name of the module file.
274 bool lookupModuleFile(StringRef FileName,
  /external/clang/lib/Serialization/
ModuleManager.cpp 55 ModuleManager::addModule(StringRef FileName, ModuleKind Type,
66 if (lookupModuleFile(FileName, ExpectedSize, ExpectedModTime, Entry)) {
71 if (!Entry && FileName != "-") {
83 New->FileName = FileName.str();
101 if (llvm::MemoryBuffer *Buffer = lookupBuffer(FileName)) {
108 if (FileName == "-") {
190 void ModuleManager::addInMemoryBuffer(StringRef FileName,
193 const FileEntry *Entry = FileMgr.getVirtualFile(FileName,
399 bool ModuleManager::lookupModuleFile(StringRef FileName,
    [all...]
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
file_impl.h 28 virtual int FileName(char* file_name_utf8,
  /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/tools/clang-format/
ClangFormat.cpp 76 AssumeFilename("assume-filename",
78 "filename to look for a style config file (with\n"
106 static FileID createInMemoryFile(StringRef FileName, MemoryBuffer *Source,
108 const FileEntry *Entry = Files.getVirtualFile(FileName == "-" ? "<stdin>" :
109 FileName,
206 static bool format(StringRef FileName) {
213 MemoryBuffer::getFileOrSTDIN(FileName);
221 FileID ID = createInMemoryFile(FileName, Code.get(), Sources, Files);
227 Style, (FileName == "-") ? AssumeFilename : FileName, FallbackStyle)
    [all...]

Completed in 549 milliseconds

1 2 3 4 5 6 7