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

1 2 3

  /external/llvm/include/llvm/DebugInfo/
DIContext.h 28 const char *FileName;
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
33 DILineInfo(const char *fileName, uint32_t line, uint32_t column)
34 : FileName(fileName), Line(line), Column(column) {}
36 const char *getFileName() const { return FileName; }
42 std::strcmp(FileName, RHS.FileName) == 0;
  /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...]
jhead.h 74 char FileName [PATH_MAX+1];
220 void MyGlob(const char * Pattern , void (*FileFuncParm)(const char * FileName));
225 int EnsurePathExists(const char * FileName);
232 int ReadJpegFile(const char * FileName, ReadMode_t ReadMode);
238 int WriteJpegFile(const char * FileName);
jpgfile.c 520 int ReadJpegFile(const char * FileName, ReadMode_t ReadMode)
525 infile = fopen(FileName, "rb"); // Unix ignores 'b', windows needs it.
528 LOGE("can't open '%s'", FileName);
529 fprintf(stderr, "can't open '%s'\n", FileName);
537 LOGV("Cannot parse JPEG sections for file: %s", FileName);
538 fprintf(stderr,"Not JPEG: %s\n",FileName);
563 // A filename of '-' indicates thumbnail goes to stdout.
784 int WriteJpegFile(const char * FileName)
794 outfile = fopen(FileName,"wb");
  /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,
39 const FileEntry *Entry = FileMgr.getFile(FileName);
40 if (!Entry && FileName != "-") {
51 New->FileName = FileName.str();
57 if (llvm::MemoryBuffer *Buffer = lookupBuffer(FileName)) {
64 if (FileName == "-") {
69 New->Buffer.reset(FileMgr.getBufferForFile(FileName, &ErrorStr));
89 void ModuleManager::addInMemoryBuffer(StringRef FileName,
92 const FileEntry *Entry = FileMgr.getVirtualFile(FileName,
    [all...]
Module.cpp 71 llvm::errs() << "\nModule: " << FileName << "\n";
77 llvm::errs() << Imports[I]->FileName;
  /external/llvm/lib/Target/PTX/
PTXAsmPrinter.h 42 unsigned GetOrCreateSourceID(StringRef FileName,
PTXAsmPrinter.cpp 516 unsigned PTXAsmPrinter::GetOrCreateSourceID(StringRef FileName,
519 if (FileName.empty())
522 // MCStream expects full path name as filename.
523 if (!DirName.empty() && !sys::path::is_absolute(FileName)) {
525 sys::path::append(FullPathName, FileName);
530 StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName);
  /external/webrtc/src/system_wrappers/interface/
file_wrapper.h 50 virtual WebRtc_Word32 FileName(WebRtc_Word8* fileNameUTF8,
  /external/webrtc/src/system_wrappers/source/
file_impl.h 25 virtual WebRtc_Word32 FileName(WebRtc_Word8* fileNameUTF8,
  /external/clang/include/clang/Serialization/
ModuleManager.h 91 /// \param FileName The file name of the module to be loaded.
104 addModule(StringRef FileName, ModuleKind Type, Module *ImportedBy,
108 void addInMemoryBuffer(StringRef FileName, llvm::MemoryBuffer *Buffer);
Module.h 68 std::string FileName;
  /external/webkit/LayoutTests/fast/js/resources/
script-line-number.js 13 // ErrorName: ErrorDescription at FileName:LineNumber:ColumnNumber
  /external/llvm/lib/MC/
MCContext.cpp 251 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
271 // Separate the directory part from the basename of the FileName.
272 std::pair<StringRef, StringRef> Slash = FileName.rsplit('/');
275 FileName = Slash.first;
304 char *Buf = static_cast<char *>(Allocate(FileName.size()));
305 memcpy(Buf, FileName.data(), FileName.size());
306 File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex);
MCNullStreamer.cpp 85 virtual void EmitFileDirective(StringRef Filename) {}
87 StringRef Filename) {
93 StringRef FileName) {}
MCLoggingStreamer.cpp 206 virtual void EmitFileDirective(StringRef Filename) {
207 LogCall("EmitFileDirective", "FileName:" + Filename);
208 return Child->EmitFileDirective(Filename);
212 StringRef Filename) {
215 " Filename:" + Filename);
216 return Child->EmitDwarfFileDirective(FileNo, Directory, Filename);
222 StringRef FileName) {
228 Isa, Discriminator, FileName);
    [all...]
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 27 StringRef FileName,
34 = (char*)PPRec.Allocate(FileName.size() + 1, llvm::alignOf<char>());
35 memcpy(Memory, FileName.data(), FileName.size());
36 Memory[FileName.size()] = 0;
37 this->FileName = StringRef(Memory, FileName.size());
293 StringRef FileName,
324 = new (*this) clang::InclusionDirective(*this, Kind, FileName, !IsAngled,
  /external/clang/include/clang/Lex/
PPCallbacks.h 71 /// \param FileName The name of the file being included, as written in the
93 /// file was found. This is equal to FileName except for framework includes.
96 StringRef FileName,
236 StringRef FileName,
242 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, File,
244 Second->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, File,
PreprocessingRecord.h 216 StringRef FileName;
232 InclusionKind Kind, StringRef FileName,
239 StringRef getFileName() const { return FileName; }
522 StringRef FileName,
  /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);
  /external/clang/lib/Frontend/
DependencyFile.cpp 40 bool FileMatchesDepCriteria(const char *Filename,
42 void AddFilename(StringRef Filename);
59 StringRef FileName,
96 /// FileMatchesDepCriteria - Determine whether the given Filename should be
98 bool DependencyFileCallback::FileMatchesDepCriteria(const char *Filename,
100 if (strcmp("<built-in>", Filename) == 0)
125 StringRef Filename = FE->getName();
126 if (!FileMatchesDepCriteria(Filename.data(), FileType))
130 while (Filename.size() > 2 && Filename[0] == '.' &
    [all...]

Completed in 533 milliseconds

1 2 3