Searched defs:FileID (Results 1 - 15 of 15) sorted by relevance

/external/google-breakpad/src/common/linux/
H A Dfile_id.h45 class FileID { class in namespace:google_breakpad
47 explicit FileID(const char* path);
48 ~FileID() {}
H A Dfile_id.cc51 FileID::FileID(const char* path) : path_(path) {} function in class:google_breakpad::FileID
141 bool FileID::ElfFileIdentifierFromMappedFile(const void* base,
151 bool FileID::ElfFileIdentifier(uint8_t identifier[kMDGUIDSize]) {
160 void FileID::ConvertIdentifierToString(const uint8_t identifier[kMDGUIDSize],
/external/google-breakpad/src/common/mac/
H A Dfile_id.h42 class FileID { class in namespace:google_breakpad
44 FileID(const char *path);
45 ~FileID() {};
H A Dfile_id.cc47 FileID::FileID(const char *path) { function in class:google_breakpad::FileID
51 bool FileID::FileIdentifier(unsigned char identifier[16]) {
73 bool FileID::MachoIdentifier(cpu_type_t cpu_type,
85 void FileID::ConvertIdentifierToString(const unsigned char identifier[16],
/external/google-breakpad/src/common/solaris/
H A Dfile_id.h41 class FileID { class in namespace:google_breakpad
43 FileID(const char *path);
44 ~FileID() {};
H A Dfile_id.cc131 FileID::FileID(const char *path) { function in class:google_breakpad::FileID
143 bool FileID::ElfFileIdentifier(unsigned char identifier[16]) {
174 bool FileID::ConvertIdentifierToString(const unsigned char identifier[16],
/external/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h47 unsigned FileID; member in struct:clang::serialized_diags::Location
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) argument
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
/external/clang/unittests/Basic/
H A DVirtualFileSystemTest.cpp37 int FileID; // used to produce UniqueIDs member in class:__anon3232::DummyFileSystem
46 DummyFileSystem() : FSID(getNextFSID()), FileID(0) {}
117 vfs::Status S(Path, UniqueID(FSID, FileID++), sys::TimeValue::now(), 0, 0,
123 vfs::Status S(Path, UniqueID(FSID, FileID++), sys::TimeValue::now(), 0, 0,
129 vfs::Status S(Path, UniqueID(FSID, FileID++), sys::TimeValue::now(), 0, 0,
/external/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp186 unsigned FileID = Function->CountedRegions.front().FileID; local
189 if (CR.FileID == FileID)
/external/llvm/lib/ProfileData/
H A DCoverageMapping.cpp258 void insert(const FunctionRecord &Function, unsigned FileID) { argument
260 while (I != E && I->FileID != FileID)
373 FilenameEquivalence[CR.FileID])
404 static bool isExpansion(const CountedRegion &R, unsigned FileID) { argument
405 return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
418 if (FileIDs.test(CR.FileID)) {
461 if (CR.FileID == *MainFileID) {
477 Expansion.Function.Filenames[Expansion.FileID]);
[all...]
/external/clang/include/clang/Basic/
H A DSourceLocation.h39 class FileID { class in namespace:clang
44 FileID() : ID(0) {} function in class:clang::FileID
49 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
50 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
51 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
52 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
53 bool operator>(const FileID &RHS) const { return RHS < *this; }
54 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
56 static FileID getSentinel() { return get(-1); }
64 static FileID ge
[all...]
/external/clang/include/clang/Lex/
H A DPPCallbacks.h52 FileID PrevFID = FileID()) {
335 FileID PrevFID) override {
50 FileChanged(SourceLocation Loc, FileChangeReason Reason, SrcMgr::CharacteristicKind FileType, FileID PrevFID = FileID()) argument
/external/llvm/include/llvm/ProfileData/
H A DCoverageMapping.h164 unsigned FileID, ExpandedFileID; member in struct:llvm::coverage::CounterMappingRegion
168 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID, argument
171 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID),
176 makeRegion(Counter Count, unsigned FileID, unsigned LineStart, argument
178 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart,
183 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart, argument
185 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart,
191 makeSkipped(unsigned FileID, unsigned LineStart, unsigned ColumnStart, argument
193 return CounterMappingRegion(Counter(), FileID,
314 unsigned FileID; member in struct:llvm::coverage::ExpansionRecord
[all...]
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp83 llvm::SmallDenseMap<FileID, std::pair<unsigned, SourceLocation>, 8>
155 SmallVector<FileID, 8> Visited;
159 FileID File = SM.getFileID(Loc);
174 FileID SpellingFile = SM.getDecomposedSpellingLoc(Loc).first;
196 bool hasExistingCoverageFileID(FileID File) const {
210 FileLineRanges[R.FileID].first =
211 std::min(FileLineRanges[R.FileID].first, R.LineStart);
212 FileLineRanges[R.FileID].second =
213 std::max(FileLineRanges[R.FileID].second, R.LineEnd);
452 bool isNestedIn(SourceLocation Loc, FileID Paren
1026 unsigned FileID = FileEntries.size(); local
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp329 unsigned FileID = getOrCreateSourceID(File, Directory); local
330 assert(FileID && "Invalid file id");
331 addUInt(Die, dwarf::DW_AT_decl_file, None, FileID);

Completed in 2028 milliseconds