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

1 2 3 4

  /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/llvm/include/llvm/DebugInfo/
DIContext.h 29 SmallString<16> FileName;
35 : FileName("<invalid>"), FunctionName("<invalid>"),
37 DILineInfo(const SmallString<16> &fileName,
40 : FileName(fileName), FunctionName(functionName),
43 const char *getFileName() { return FileName.c_str(); }
50 FileName.equals(RHS.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...]
jhead.h 79 char FileName [PATH_MAX+1];
226 void MyGlob(const char * Pattern , void (*FileFuncParm)(const char * FileName));
231 int EnsurePathExists(const char * FileName);
238 int ReadJpegFile(const char * FileName, ReadMode_t ReadMode);
244 int WriteJpegFile(const char * FileName);
  /external/clang/lib/Frontend/
DependencyGraph.cpp 52 StringRef FileName,
73 StringRef FileName,
118 StringRef FileName = AllFiles[I]->getName();
119 if (FileName.startswith(SysRoot))
120 FileName = FileName.substr(SysRoot.size());
122 OS << DOT::EscapeString(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/Serialization/
ModuleManager.cpp 37 ModuleManager::addModule(StringRef FileName, ModuleKind Type,
40 const FileEntry *Entry = FileMgr.getFile(FileName);
41 if (!Entry && FileName != "-") {
52 New->FileName = FileName.str();
58 if (llvm::MemoryBuffer *Buffer = lookupBuffer(FileName)) {
65 if (FileName == "-") {
70 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
90 void ModuleManager::addInMemoryBuffer(StringRef FileName,
93 const FileEntry *Entry = FileMgr.getVirtualFile(FileName,
    [all...]
Module.cpp 72 llvm::errs() << "\nModule: " << FileName << "\n";
78 llvm::errs() << Imports[I]->FileName;
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 168 uint64_t FileIndex, bool NeedsAbsoluteFilePath, std::string &FileName) {
172 FileName))
174 if (NeedsAbsoluteFilePath && sys::path::is_relative(FileName)) {
180 sys::path::append(AbsolutePath, FileName);
181 FileName = AbsolutePath.str();
188 uint64_t Address, bool NeedsAbsoluteFilePath, std::string &FileName,
199 NeedsAbsoluteFilePath, FileName))
211 std::string FileName = "<invalid>";
234 FileName, Line, Column);
236 return DILineInfo(StringRef(FileName), StringRef(FunctionName)
    [all...]
  /external/llvm/include/llvm/Support/
LockFileManager.h 60 LockFileManager(StringRef FileName);
  /external/webrtc/src/system_wrappers/source/
file_impl.h 26 virtual int FileName(char* fileNameUTF8,
  /external/clang/include/clang/Lex/
PPCallbacks.h 66 /// \param FileName The name of the file being included, as written in the
75 virtual bool FileNotFound(StringRef FileName,
90 /// \param FileName The name of the file being included, as written in the
112 /// file was found. This is equal to FileName except for framework includes.
115 StringRef FileName,
259 virtual bool FileNotFound(StringRef FileName,
261 return First->FileNotFound(FileName, RecoveryPath) ||
262 Second->FileNotFound(FileName, RecoveryPath);
267 StringRef FileName,
273 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, File
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 91 /// \param FileName The file name of the module to be loaded.
106 addModule(StringRef FileName, ModuleKind Type, ModuleFile *ImportedBy,
110 void addInMemoryBuffer(StringRef FileName, llvm::MemoryBuffer *Buffer);
  /external/llvm/lib/MC/
MCContext.cpp 256 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
276 // Separate the directory part from the basename of the FileName.
277 StringRef tFileName = sys::path::filename(FileName);
279 Directory = sys::path::parent_path(FileName);
281 FileName = tFileName;
311 char *Buf = static_cast<char *>(Allocate(FileName.size()));
312 memcpy(Buf, FileName.data(), FileName.size());
313 File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex)
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
script-line-number.js 13 // ErrorName: ErrorDescription at FileName:LineNumber:ColumnNumber
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 70 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName,
77 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
94 StringRef FileName("/path/to/a-file.cpp");
98 FileName,
101 "\"file\":\"" + FileName + "\"}]").str(),
114 "\"file\":\"" + FileName + "\"}]").str(),
122 StringRef FileName("/path/to/a-file.cpp");
126 FileName,
129 "\"file\":\"" + FileName + "\"}]").str(),
138 StringRef FileName("/path/to/a-file.cpp")
    [all...]
  /external/clang/utils/analyzer/
SATestBuild.py 229 def hasNoExtension(FileName):
230 (Root, Ext) = os.path.splitext(FileName)
235 def isValidSingleInputFile(FileName):
236 (Root, Ext) = os.path.splitext(FileName)
261 FileName = os.path.basename(FullFileName)
265 if (hasNoExtension(FileName)):
267 if (isValidSingleInputFile(FileName) == False):
272 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
273 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
274 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b"
    [all...]
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 58 StringRef FileName,
64 void WriteLineInfo(const char *Filename, int Line,
91 /// markers depending on what mode we're in, including the \p Filename and
94 void InclusionRewriter::WriteLineInfo(const char *Filename, int Line,
100 OS << "#line" << ' ' << Line << ' ' << '"' << Filename << '"';
104 OS << '#' << ' ' << Line << ' ' << '"' << Filename << '"';
153 StringRef /*FileName*/,
255 const char *FileName = FromFile.getBufferIdentifier();
262 WriteLineInfo(FileName, 1, FileType, EOL, " 1");
298 WriteLineInfo(FileName, Line, FileType, EOL, " 2")
    [all...]
  /external/clang/include/clang/Tooling/
Tooling.h 96 /// \param FileName The file name which 'Code' will be mapped as.
100 const Twine &FileName = "input.cc");
108 /// \param FileName The file name which 'Code' will be mapped as.
113 const Twine &FileName = "input.cc");
  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA1/
SDL_main.cpp 105 exeName.Set(thisProcess.FileName(), NULL, NULL);
  /external/srec/srec/include/
ann_util.h 76 void save_annotations(annotate_info* hAnnotation, char* FileName);
  /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);

Completed in 691 milliseconds

1 2 3 4