Home
last modified time | relevance | path

Searched refs:SourceLine (Results 1 – 17 of 17) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp71 if (SourceLine[--i]=='\t') in bytesSincePreviousTabOrLineBegin()
103 if (SourceLine[*i]=='\t') { in printableTextForNextCharacter()
163 size_t i = SourceLine.size(); in expandTabs()
166 if (SourceLine[i]!='\t') in expandTabs()
201 if (SourceLine.empty()) { in byteToColumn()
235 if (SourceLine.empty()) { in columnToByte()
256 : m_SourceLine(SourceLine) { in SourceColumnMap()
450 while (NewEnd < SourceLine.size() && isWhitespace(SourceLine[NewEnd])) in selectInterestingSourceRegion()
454 while (NewEnd < SourceLine.size() && isWhitespace(SourceLine[NewEnd])) in selectInterestingSourceRegion()
1241 SourceLine = ' ' + SourceLine; in emitSnippetAndCaret()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Daslerror.c186 char *SourceLine,
199 char *SourceLine,
474 if (!Enode->SourceLine) in AePrintErrorSourceLine()
831 char *SourceLine, in AslInitEnode() argument
848 Enode->SourceLine = NULL; in AslInitEnode()
862 if (SourceLine) in AslInitEnode()
864 Enode->SourceLine = UtLocalCalloc (strlen (SourceLine) + 1); in AslInitEnode()
865 strcpy (Enode->SourceLine, SourceLine); in AslInitEnode()
921 char *SourceLine, in AslCommonError2() argument
1003 char *SourceLine, in AslLogNewError() argument
[all …]
H A Dasltypes.h372 char *SourceLine; member
H A Daslcompiler.h541 char *SourceLine,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h455 struct SourceLine { struct
460 SourceLine() : file() {} in SourceLine() argument
462 bool operator==(const SourceLine &rhs) const {
466 bool operator!=(const SourceLine &rhs) const {
474 std::vector<SourceLine> lines; argument
489 static SourceLine GetFunctionDeclLineEntry(const SymbolContext &sc);
493 SourceLine &line,
506 const SymbolContext &sc, SourceLine &line);
511 SourceLine sl; in ElideMixedSourceAndDisassemblyLine()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemark.h33 unsigned SourceLine = 0; member
130 LHS.SourceLine == RHS.SourceLine &&
139 return std::make_tuple(LHS.SourceFilePath, LHS.SourceLine, LHS.SourceColumn) <
140 std::make_tuple(RHS.SourceFilePath, RHS.SourceLine, RHS.SourceColumn);
H A DBitstreamRemarkParser.h63 Optional<uint32_t> SourceLine; member
70 Optional<uint32_t> SourceLine; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp112 Parser.SourceLine = Record[1]; in parseRecord()
131 Parser.TmpArgs.back().SourceLine = Record[3]; in parseRecord()
550 if (Helper.SourceFileNameIdx && Helper.SourceLine && Helper.SourceColumn) { in processRemark()
556 R.Loc->SourceLine = *Helper.SourceLine; in processRemark()
590 if (Arg.SourceFileNameIdx && Arg.SourceLine && Arg.SourceColumn) { in processRemark()
595 R.Args.back().Loc->SourceLine = *Arg.SourceLine; in processRemark()
H A DRemark.cpp45 return unwrap(DL)->SourceLine; in LLVMRemarkDebugLocGetSourceLine()
H A DBitstreamRemarkSerializer.cpp283 R.push_back(Loc->SourceLine); in emitRemarkBlock()
306 R.push_back(Arg.Loc->SourceLine); in emitRemarkBlock()
H A DYAMLRemarkSerializer.cpp82 unsigned Line = RL.SourceLine; in mapping()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp196 Disassembler::SourceLine
213 SourceLine decl_line; in GetFunctionDeclLineEntry()
223 SourceLine &line, in AddLineToSourceLineTables()
239 SourceLine &line) { in ElideMixedSourceAndDisassemblyLine()
361 SourceLine this_line; in PrintInstructions()
376 SourceLine previous_line; in PrintInstructions()
421 SourceLine this_line; in PrintInstructions()
445 SourceLine this_line; in PrintInstructions()
475 SourceLine previous_line; in PrintInstructions()
490 SourceLine next_line; in PrintInstructions()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp117 uint32_t SourceLine) { in addInlineSite() argument
123 Entry.Header.SourceLineNum = SourceLine; in addInlineSite()
H A DRecordName.cpp219 UdtSourceLineRecord &SourceLine) { in visitKnownRecord() argument
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnostic.h106 void emitSnippet(StringRef SourceLine);
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h105 void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp380 ArrayRef<char> SourceLine) { in buildFixItLine() argument
384 const char *LineStart = SourceLine.begin(); in buildFixItLine()
385 const char *LineEnd = SourceLine.end(); in buildFixItLine()