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

  /external/llvm/include/llvm/MC/
MCCodeView.h 33 uint32_t FileNum;
41 MCCVLoc(unsigned functionid, unsigned fileNum, unsigned line, unsigned column,
43 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column),
52 /// \brief Get the FileNum of this MCCVLoc.
53 unsigned getFileNum() const { return FileNum; }
66 /// \brief Set the FileNum of this MCCVLoc.
67 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
    [all...]
MCDwarf.h 55 uint32_t FileNum;
74 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
76 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
83 /// \brief Get the FileNum of this MCDwarfLoc.
84 unsigned getFileNum() const { return FileNum; }
101 /// \brief Set the FileNum of this MCDwarfLoc.
102 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCDwarf.h 78 // FileNum - the file number.
79 unsigned FileNum;
102 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
104 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
111 /// getFileNum - Get the FileNum of this MCDwarfLoc.
112 unsigned getFileNum() const { return FileNum; }
129 /// setFileNum - Set the FileNum of this MCDwarfLoc.
130 void setFileNum(unsigned fileNum) { FileNum = fileNum;
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 103 unsigned FileNum = 1;
115 if (FileNum != LineEntry.getFileNum()) {
116 FileNum = LineEntry.getFileNum();
118 MCOS->EmitULEB128IntValue(FileNum);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCDwarf.cpp 132 unsigned FileNum = 1;
144 if (FileNum != it->getFileNum()) {
145 FileNum = it->getFileNum();
147 MCOS->EmitULEB128IntValue(FileNum);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 317 /// Get the full path for file \a FileNum in the line table
318 StringRef getResolvedPath(unsigned FileNum) {
319 if (FileNum >= ResolvedPaths.size())
321 return ResolvedPaths[FileNum];
324 /// Set the fully resolved path for the line-table's file \a FileNum
326 void setResolvedPath(unsigned FileNum, StringRef Path) {
327 if (ResolvedPaths.size() <= FileNum)
328 ResolvedPaths.resize(FileNum + 1);
329 ResolvedPaths[FileNum] = Path;
    [all...]

Completed in 722 milliseconds