/external/llvm-project/llvm/lib/DWARFLinker/ |
D | DWARFLinkerDeclContext.cpp | 125 if (unsigned FileNum = in getChildDeclContext() local 133 FileNum = 1; in getChildDeclContext() 135 if (LT->hasFileAtIndex(FileNum)) { in getChildDeclContext() 139 StringRef ResolvedPath = U.getResolvedPath(FileNum); in getChildDeclContext() 145 FileNum, U.getOrigUnit().getCompilationDir(), in getChildDeclContext() 153 U.setResolvedPath(FileNum, FileRef); in getChildDeclContext()
|
D | DWARFStreamer.cpp | 499 unsigned FileNum = 1; in emitLineTableForUnit() local 528 if (FileNum != Row.File) { in emitLineTableForUnit() 529 FileNum = Row.File; in emitLineTableForUnit() 531 MS->emitULEB128IntValue(FileNum); in emitLineTableForUnit() 532 LineSectionSize += 1 + getULEB128Size(FileNum); in emitLineTableForUnit() 596 LastLine = FileNum = IsStatement = 1; in emitLineTableForUnit()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DWARFLinker/ |
D | DWARFLinkerDeclContext.cpp | 121 if (unsigned FileNum = in getChildDeclContext() local 129 FileNum = 1; in getChildDeclContext() 131 if (LT->hasFileAtIndex(FileNum)) { in getChildDeclContext() 135 StringRef ResolvedPath = U.getResolvedPath(FileNum); in getChildDeclContext() 141 FileNum, U.getOrigUnit().getCompilationDir(), in getChildDeclContext() 149 U.setResolvedPath(FileNum, FileRef); in getChildDeclContext()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerCompileUnit.h | 237 StringRef getResolvedPath(unsigned FileNum) { in getResolvedPath() argument 238 if (FileNum >= ResolvedPaths.size()) in getResolvedPath() 240 return ResolvedPaths[FileNum]; in getResolvedPath() 245 void setResolvedPath(unsigned FileNum, StringRef Path) { in setResolvedPath() argument 246 if (ResolvedPaths.size() <= FileNum) in setResolvedPath() 247 ResolvedPaths.resize(FileNum + 1); in setResolvedPath() 248 ResolvedPaths[FileNum] = Path; in setResolvedPath()
|
/external/llvm-project/llvm/include/llvm/DWARFLinker/ |
D | DWARFLinkerCompileUnit.h | 241 StringRef getResolvedPath(unsigned FileNum) { in getResolvedPath() argument 242 if (FileNum >= ResolvedPaths.size()) in getResolvedPath() 244 return ResolvedPaths[FileNum]; in getResolvedPath() 249 void setResolvedPath(unsigned FileNum, StringRef Path) { in setResolvedPath() argument 250 if (ResolvedPaths.size() <= FileNum) in setResolvedPath() 251 ResolvedPaths.resize(FileNum + 1); in setResolvedPath() 252 ResolvedPaths[FileNum] = Path; in setResolvedPath()
|
/external/llvm/include/llvm/MC/ |
D | MCCodeView.h | 33 uint32_t FileNum; variable 43 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column), in MCCVLoc() 53 unsigned getFileNum() const { return FileNum; } in getFileNum() 67 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCDwarf.h | 55 uint32_t FileNum; variable 76 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), in MCDwarfLoc() 84 unsigned getFileNum() const { return FileNum; } in getFileNum() 102 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCContext.h | 489 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, in setCurrentDwarfLoc() argument 492 CurrentDwarfLoc.setFileNum(FileNum); in setCurrentDwarfLoc()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCCodeView.h | 34 uint32_t FileNum; variable 44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc() 56 unsigned getFileNum() const { return FileNum; } in getFileNum() 72 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCDwarf.h | 76 uint32_t FileNum; variable 98 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), in MCDwarfLoc() 106 unsigned getFileNum() const { return FileNum; } in getFileNum() 124 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCContext.h | 656 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, in setCurrentDwarfLoc() argument 659 CurrentDwarfLoc.setFileNum(FileNum); in setCurrentDwarfLoc()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCCodeView.h | 34 uint32_t FileNum; variable 44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc() 56 unsigned getFileNum() const { return FileNum; } in getFileNum() 72 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCDwarf.h | 71 uint32_t FileNum; variable 93 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), in MCDwarfLoc() 101 unsigned getFileNum() const { return FileNum; } in getFileNum() 119 void setFileNum(unsigned fileNum) { FileNum = fileNum; } in setFileNum()
|
D | MCContext.h | 601 void setCurrentDwarfLoc(unsigned FileNum, unsigned Line, unsigned Column, in setCurrentDwarfLoc() argument 604 CurrentDwarfLoc.setFileNum(FileNum); in setCurrentDwarfLoc()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
D | BreakpadRecords.h | 114 size_t FileNum) in LineRecord() argument 116 FileNum(FileNum) {} in LineRecord() 121 size_t FileNum; variable
|
D | BreakpadRecords.cpp | 319 size_t FileNum; in parse() local 321 if (!to_integer(Str, FileNum)) in parse() 324 return LineRecord(Address, Size, LineNum, FileNum); in parse() 329 L.FileNum == R.FileNum; in operator ==() 334 R.LineNum, R.FileNum); in operator <<()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 318 StringRef getResolvedPath(unsigned FileNum) { in getResolvedPath() argument 319 if (FileNum >= ResolvedPaths.size()) in getResolvedPath() 321 return ResolvedPaths[FileNum]; in getResolvedPath() 326 void setResolvedPath(unsigned FileNum, StringRef Path) { in setResolvedPath() argument 327 if (ResolvedPaths.size() <= FileNum) in setResolvedPath() 328 ResolvedPaths.resize(FileNum + 1); in setResolvedPath() 329 ResolvedPaths[FileNum] = Path; in setResolvedPath() 915 unsigned FileNum = 1; in emitLineTableForUnit() local 945 if (FileNum != Row.File) { in emitLineTableForUnit() 946 FileNum = Row.File; in emitLineTableForUnit() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
D | SymbolFileBreakpad.cpp | 214 if (record && record->FileNum < m_files->size()) in ParseCompileUnitAtIndex() 215 spec = (*m_files)[record->FileNum]; in ParseCompileUnitAtIndex() 743 map[record->FileNum], /*is_start_of_statement*/ true, in ParseLineTableAndSupportFiles()
|
/external/llvm/lib/MC/ |
D | MCDwarf.cpp | 103 unsigned FileNum = 1; in EmitDwarfLineTable() local 115 if (FileNum != LineEntry.getFileNum()) { in EmitDwarfLineTable() 116 FileNum = LineEntry.getFileNum(); in EmitDwarfLineTable() 118 MCOS->EmitULEB128IntValue(FileNum); in EmitDwarfLineTable()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCDwarf.cpp | 152 unsigned FileNum = 1; in EmitDwarfLineTable() local 164 if (FileNum != LineEntry.getFileNum()) { in EmitDwarfLineTable() 165 FileNum = LineEntry.getFileNum(); in EmitDwarfLineTable() 167 MCOS->EmitULEB128IntValue(FileNum); in EmitDwarfLineTable()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCDwarf.cpp | 170 unsigned FileNum = 1; in emitDwarfLineTable() local 182 if (FileNum != LineEntry.getFileNum()) { in emitDwarfLineTable() 183 FileNum = LineEntry.getFileNum(); in emitDwarfLineTable() 185 MCOS->emitULEB128IntValue(FileNum); in emitDwarfLineTable()
|
/external/autotest/metadata/tests/ |
D | platform.star | 268 'platform/FileNum',
|
/external/autotest/metadata/generated/ |
D | config.cfg | 1077 "name": "remoteTestDrivers/tauto/tests/platform/FileNum",
|