Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp75 static int bytesSincePreviousTabOrLineBegin(StringRef SourceLine, size_t i) { in bytesSincePreviousTabOrLineBegin() argument
78 if (SourceLine[--i]=='\t') in bytesSincePreviousTabOrLineBegin()
105 printableTextForNextCharacter(StringRef SourceLine, size_t *I, in printableTextForNextCharacter() argument
108 assert(*I < SourceLine.size() && "must point to a valid index"); in printableTextForNextCharacter()
110 if (SourceLine[*I] == '\t') { in printableTextForNextCharacter()
113 unsigned Col = bytesSincePreviousTabOrLineBegin(SourceLine, *I); in printableTextForNextCharacter()
124 const unsigned char *Begin = SourceLine.bytes_begin() + *I; in printableTextForNextCharacter()
135 if (End <= SourceLine.bytes_end() && llvm::isLegalUTF8Sequence(Begin, End)) { in printableTextForNextCharacter()
167 unsigned char Byte = SourceLine[*I]; in printableTextForNextCharacter()
174 static void expandTabs(std::string &SourceLine, unsigned TabStop) { in expandTabs() argument
[all …]
/freebsd/sys/contrib/dev/acpica/compiler/
H A Daslerror.c186 char *SourceLine,
199 char *SourceLine,
474 if (!Enode->SourceLine) in AePrintErrorSourceLine()
514 if (Enode->SourceLine && Enode->LineNumber) in AePrintErrorSourceLine()
517 Enode->LineNumber, 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()
[all …]
H A Dasltypes.h372 char *SourceLine; member
H A Daslcompiler.h541 char *SourceLine,
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h493 struct SourceLine { struct
498 SourceLine() = default; argument
500 bool operator==(const SourceLine &rhs) const {
504 bool operator!=(const SourceLine &rhs) const {
512 std::vector<SourceLine> lines; argument
527 static SourceLine GetFunctionDeclLineEntry(const SymbolContext &sc);
531 SourceLine &line,
544 const SymbolContext &sc, SourceLine &line);
549 SourceLine sl; in ElideMixedSourceAndDisassemblyLine()
/freebsd/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DRemark.h35 unsigned SourceLine = 0; member
164 LHS.SourceLine == RHS.SourceLine &&
173 return std::make_tuple(LHS.SourceFilePath, LHS.SourceLine, LHS.SourceColumn) <
174 std::make_tuple(RHS.SourceFilePath, RHS.SourceLine, RHS.SourceColumn);
H A DBitstreamRemarkParser.h63 std::optional<uint32_t> SourceLine; member
70 std::optional<uint32_t> SourceLine; member
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp114 Parser.SourceLine = Record[1]; in parseRecord()
133 Parser.TmpArgs.back().SourceLine = Record[3]; in parseRecord()
549 if (Helper.SourceFileNameIdx && Helper.SourceLine && Helper.SourceColumn) { in processRemark()
555 R.Loc->SourceLine = *Helper.SourceLine; in processRemark()
589 if (Arg.SourceFileNameIdx && Arg.SourceLine && Arg.SourceColumn) { in processRemark()
594 R.Args.back().Loc->SourceLine = *Arg.SourceLine; in processRemark()
H A DRemark.cpp41 << "File: " << SourceFilePath << ", Line: " << SourceLine in print()
83 return unwrap(DL)->SourceLine; in LLVMRemarkDebugLocGetSourceLine()
H A DBitstreamRemarkSerializer.cpp286 R.push_back(Loc->SourceLine); in emitRemarkBlock()
309 R.push_back(Arg.Loc->SourceLine); in emitRemarkBlock()
H A DYAMLRemarkSerializer.cpp70 unsigned Line = RL.SourceLine; in mapping()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp196 Disassembler::SourceLine
217 SourceLine decl_line; in GetFunctionDeclLineEntry()
227 SourceLine &line, in AddLineToSourceLineTables()
243 SourceLine &line) { in ElideMixedSourceAndDisassemblyLine()
360 SourceLine decl_line = GetFunctionDeclLineEntry(sc); in PrintInstructions()
365 SourceLine this_line; in PrintInstructions()
380 SourceLine previous_line; in PrintInstructions()
430 SourceLine this_line; in PrintInstructions()
454 SourceLine this_line; in PrintInstructions()
484 SourceLine previous_line; in PrintInstructions()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp118 uint32_t SourceLine) { in addInlineSite() argument
124 Entry.Header.SourceLineNum = SourceLine; in addInlineSite()
H A DRecordName.cpp223 UdtSourceLineRecord &SourceLine) { in visitKnownRecord() argument
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnostic.h115 void emitSnippet(StringRef SourceLine, unsigned MaxLineNoDisplayWidth,
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h105 void addInlineSite(TypeIndex FuncId, StringRef FileName, uint32_t SourceLine);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSourceMgr.cpp391 ArrayRef<char> SourceLine) { in buildFixItLine() argument
395 const char *LineStart = SourceLine.begin(); in buildFixItLine()
396 const char *LineEnd = SourceLine.end(); in buildFixItLine()
/freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtil.cpp
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h413 Error visitKnownRecord(CVType &Record, UdtSourceLineRecord &SourceLine,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2571 UdtSourceLineRecord &SourceLine, in visitKnownRecord() argument
2576 printTypeIndex("UDT", SourceLine.getUDT(), StreamIPI); in visitKnownRecord()
2577 printTypeIndex("SourceFile", SourceLine.getSourceFile(), StreamIPI); in visitKnownRecord()
2578 W.printNumber("LineNumber", SourceLine.getLineNumber()); in visitKnownRecord()
/freebsd/contrib/jemalloc/bin/
H A Djeprof.in1887 sub SourceLine {
2008 my $line = SourceLine($current_file, $l);