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

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
CompileUnit.h 235 /// Get the full path for file \a FileNum in the line table
236 StringRef getResolvedPath(unsigned FileNum) {
237 if (FileNum >= ResolvedPaths.size())
239 return ResolvedPaths[FileNum];
242 /// Set the fully resolved path for the line-table's file \a FileNum
244 void setResolvedPath(unsigned FileNum, StringRef Path) {
245 if (ResolvedPaths.size() <= FileNum)
246 ResolvedPaths.resize(FileNum + 1);
247 ResolvedPaths[FileNum] = Path;
DeclContext.cpp 123 if (unsigned FileNum =
131 FileNum = 1;
133 if (LT->hasFileAtIndex(FileNum)) {
137 StringRef ResolvedPath = U.getResolvedPath(FileNum);
143 FileNum, U.getOrigUnit().getCompilationDir(),
151 U.setResolvedPath(FileNum, FileRef);
DwarfStreamer.cpp 469 unsigned FileNum = 1;
498 if (FileNum != Row.File) {
499 FileNum = Row.File;
501 MS->EmitULEB128IntValue(FileNum);
502 LineSectionSize += 1 + getULEB128Size(FileNum);
566 LastLine = FileNum = IsStatement = 1;
  /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...]
MCContext.h 489 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
492 CurrentDwarfLoc.setFileNum(FileNum);
  /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...]
MCContext.h 238 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
241 CurrentDwarfLoc.setFileNum(FileNum);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCCodeView.h 34 uint32_t FileNum;
42 MCCVLoc(unsigned functionid, unsigned fileNum, unsigned line, unsigned column,
44 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column),
53 /// Get the FileNum of this MCCVLoc.
54 unsigned getFileNum() const { return FileNum; }
67 /// Set the FileNum of this MCCVLoc.
68 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
    [all...]
MCDwarf.h 69 uint32_t FileNum;
89 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
91 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
98 /// Get the FileNum of this MCDwarfLoc.
99 unsigned getFileNum() const { return FileNum; }
116 /// Set the FileNum of this MCDwarfLoc.
117 void setFileNum(unsigned fileNum) { FileNum = fileNum; }
    [all...]
MCContext.h 577 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column,
580 CurrentDwarfLoc.setFileNum(FileNum);
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
InstallPkg.py 466 FileNum = 0
481 FileNum += 1
482 if FileNum > ToolFileNum:
    [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-7.0/llvm/lib/MC/
MCDwarf.cpp 153 unsigned FileNum = 1;
165 if (FileNum != LineEntry.getFileNum()) {
166 FileNum = LineEntry.getFileNum();
168 MCOS->EmitULEB128IntValue(FileNum);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
build.py     [all...]

Completed in 444 milliseconds