HomeSort by relevance Sort by last modified time
    Searched defs:FileID (Results 1 - 13 of 13) sorted by null

  /external/google-breakpad/src/common/linux/
file_id.h 45 class FileID {
47 explicit FileID(const char* path);
48 ~FileID() {}
file_id.cc 51 FileID::FileID(const char* path) : path_(path) {}
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/
file_id.h 42 class FileID {
44 FileID(const char *path);
45 ~FileID() {};
file_id.cc 47 FileID::FileID(const char *path) {
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/
file_id.h 41 class FileID {
43 FileID(const char *path);
44 ~FileID() {};
file_id.cc 131 FileID::FileID(const char *path) {
143 bool FileID::ElfFileIdentifier(unsigned char identifier[16]) {
174 bool FileID::ConvertIdentifierToString(const unsigned char identifier[16],
  /external/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 47 unsigned FileID;
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset)
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 37 int FileID; // used to produce UniqueIDs
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,
    [all...]
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 186 unsigned FileID = Function->CountedRegions.front().FileID;
189 if (CR.FileID == FileID)
  /external/clang/include/clang/Basic/
SourceLocation.h 39 class FileID {
44 FileID() : ID(0) {}
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 get(int V)
    [all...]
  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 164 unsigned FileID, ExpandedFileID;
168 CounterMappingRegion(Counter Count, unsigned FileID, unsigned ExpandedFileID,
171 : Count(Count), FileID(FileID), ExpandedFileID(ExpandedFileID),
176 makeRegion(Counter Count, unsigned FileID, unsigned LineStart,
178 return CounterMappingRegion(Count, FileID, 0, LineStart, ColumnStart,
183 makeExpansion(unsigned FileID, unsigned ExpandedFileID, unsigned LineStart,
185 return CounterMappingRegion(Counter(), FileID, ExpandedFileID, LineStart,
191 makeSkipped(unsigned FileID, unsigned LineStart, unsigned ColumnStart,
193 return CounterMappingRegion(Counter(), FileID, 0, LineStart, ColumnStart
    [all...]
  /external/clang/lib/CodeGen/
CoverageMappingGen.cpp 83 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 Parent)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 329 unsigned FileID = getOrCreateSourceID(File, Directory);
330 assert(FileID && "Invalid file id");
331 addUInt(Die, dwarf::DW_AT_decl_file, None, FileID);
    [all...]

Completed in 191 milliseconds