HomeSort by: relevance | last modified time | path
    Searched refs:LineNo (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/lib/
debug.c 36 IN INTN LineNo,
40 DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceManagerInternals.h 37 unsigned LineNo;
57 E.LineNo = Line;
111 unsigned LineNo, int FilenameID,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SourceMgr.cpp 124 unsigned LineNo) const {
129 if (LineNo != 0)
130 --LineNo;
136 if (LineNo == 0)
138 if (LineNo > Offsets.size())
140 return BufStart + Offsets[LineNo - 1] + 1;
146 SourceMgr::SrcBuffer::getPointerForLineNumber(unsigned LineNo) const {
149 return getPointerForLineNumberSpecialized<uint8_t>(LineNo);
151 return getPointerForLineNumberSpecialized<uint16_t>(LineNo);
153 return getPointerForLineNumberSpecialized<uint32_t>(LineNo);
    [all...]
SpecialCaseList.cpp 133 unsigned LineNo = 1;
136 for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
145 Error = (Twine("malformed section header on line ") + Twine(LineNo) +
169 Error = (Twine("malformed line ") + Twine(LineNo) + ": '" +
182 if (!M->insert(std::string(Section), LineNo, REError)) {
193 if (!Entry.insert(std::move(Regexp), LineNo, REError)) {
194 Error = (Twine("malformed regex in line ") + Twine(LineNo) + ": '" +
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MIRFSDiscriminator.cpp 62 // have the same lineno and discriminator, but residing in different BBs,
95 unsigned LineNo = DIL->getLine();
96 if (LineNo == 0)
99 LocationDiscriminator LD{DIL->getFilename(), LineNo, Discriminator};
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DIBuilder.h 248 /// \param LineNo Line number.
252 unsigned LineNo, DIScope *Context,
274 /// \param LineNo Line number.
281 DIFile *File, unsigned LineNo,
292 /// \param LineNo Line number.
301 DIFile *File, unsigned LineNo,
312 /// \param LineNo Line number.
319 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo,
328 /// \param LineNo Line number.
334 DIFile *File, unsigned LineNo,
    [all...]
DebugInfoMetadata.h 2299 unsigned LineNo;
2302 DIModule(LLVMContext &Context, StorageType Storage, unsigned LineNo,
2305 LineNo(LineNo), IsDecl(IsDecl) {}
2311 unsigned LineNo, bool IsDecl, StorageType Storage,
2316 getCanonicalMDString(Context, APINotesFile), LineNo, IsDecl,
2322 MDString *APINotesFile, unsigned LineNo, bool IsDecl,
2335 StringRef APINotesFile, unsigned LineNo,
2338 APINotesFile, LineNo, IsDecl))
2342 MDString *APINotesFile, unsigned LineNo,
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/CrossTU/
CrossTranslationUnit.h 63 IndexError(index_error_code C) : Code(C), LineNo(0) {}
64 IndexError(index_error_code C, std::string FileName, int LineNo = 0)
65 : Code(C), FileName(std::move(FileName)), LineNo(LineNo) {}
74 int getLineNum() const { return LineNo; }
82 int LineNo;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SourceMgr.h 70 const char *getPointerForLineNumber(unsigned LineNo) const;
72 const char *getPointerForLineNumberSpecialized(unsigned LineNo) const;
182 SMLoc FindLocForLineAndColumn(unsigned BufferID, unsigned LineNo,
255 int LineNo = 0;
267 : Filename(filename), LineNo(-1), ColumnNo(-1), Kind(Knd), Message(Msg) {}
278 int getLineNo() const { return LineNo; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageView.h 173 int64_t LineNo;
175 LineRef(StringRef Line, int64_t LineNo) : Line(Line), LineNo(LineNo) {}
211 virtual void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) = 0;
SourceCoverageViewText.h 71 void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) override;
SourceCoverageViewText.cpp 101 unsigned LineNumber = L.LineNo;
163 unsigned LineNo) {
166 BufferOS << LineNo;
SourceCoverageViewHTML.h 80 void renderLineNumberColumn(raw_ostream &OS, unsigned LineNo) override;
SourceCoverageViewHTML.cpp 501 unsigned LineNo = L.LineNo;
574 errs() << "Highlighted line " << LineNo << ", " << Range.first << " -> ";
629 unsigned LineNo) {
630 std::string LineNoStr = utostr(uint64_t(LineNo));
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
HTMLRewrite.cpp 209 static void AddLineNumber(RewriteBuffer &RB, unsigned LineNo,
214 OS << "<tr class=\"codeline\" data-linenumber=\"" << LineNo << "\">"
215 << "<td class=\"num\" id=\"LN" << LineNo << "\">" << LineNo
237 unsigned LineNo = 0;
242 ++LineNo;
263 AddLineNumber(RB, LineNo, LineStartPos, LineEndPos);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp 809 unsigned LineNo = PLoc.getLine();
821 OS << ':' << LineNo;
823 case DiagnosticOptions::MSVC: OS << '(' << LineNo; break;
824 case DiagnosticOptions::Vi: OS << " +" << LineNo; break;
975 /// Highlight a SourceRange (with ~'s) for any characters on LineNo.
977 unsigned LineNo, FileID FID,
988 if (StartLineNo > LineNo || SM.getFileID(Begin) != FID)
992 if (EndLineNo < LineNo || SM.getFileID(End) != FID)
997 if (StartLineNo == LineNo) {
1004 if (EndLineNo == LineNo) {
    [all...]
PrintPreprocessedOutput.cpp 162 bool MoveToLine(unsigned LineNo);
168 void WriteLineInfo(unsigned LineNo, const char *Extra=nullptr,
187 void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo,
194 OS << "#line" << ' ' << LineNo << ' ' << '"';
198 OS << '#' << ' ' << LineNo << ' ' << '"';
217 bool PrintPPOutputPPCallbacks::MoveToLine(unsigned LineNo) {
220 if (LineNo-CurLine <= 8) {
221 if (LineNo-CurLine == 1)
223 else if (LineNo == CurLine)
227 OS.write(NewLines, LineNo-CurLine)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm-c/
DebugInfo.h 328 * \param LineNo Line number.
340 LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty,
738 * \param LineNo Line number.
747 size_t NameLen, LLVMMetadataRef File, unsigned LineNo,
794 * \param LineNo Line number.
805 LLVMMetadataRef File, unsigned LineNo,
816 * \param LineNo Line number.
827 LLVMMetadataRef File, unsigned LineNo,
878 * \param LineNo Line number.
884 LLVMMetadataRef File, unsigned LineNo,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DIBuilder.cpp 316 DIFile *File, unsigned LineNo,
320 LineNo, getNonCompileUnitScope(Context), Ty, 0,
529 DIFile *File, unsigned LineNo,
533 DIDerivedType::get(VMContext, dwarf::DW_TAG_set_type, Name, File, LineNo,
732 unsigned LineNo, DIType *Ty, bool AlwaysPreserve, DINode::DIFlags Flags,
742 File, LineNo, Ty, ArgNo, Flags, AlignInBits);
755 DIFile *File, unsigned LineNo,
760 /* ArgNo */ 0, File, LineNo, Ty, AlwaysPreserve,
766 unsigned LineNo, DIType *Ty, bool AlwaysPreserve, DINode::DIFlags Flags) {
769 File, LineNo, Ty, AlwaysPreserve, Flags
    [all...]
DebugInfo.cpp 928 LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty,
933 unwrapDI<DIFile>(File), LineNo, unwrapDI<DISubroutineType>(Ty), ScopeLine,
1170 size_t NameLen, LLVMMetadataRef File, unsigned LineNo, uint64_t SizeInBits,
1174 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo, SizeInBits, AlignInBits,
1200 LLVMMetadataRef File, unsigned LineNo,
1205 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo,
1214 LLVMMetadataRef File, unsigned LineNo,
1220 {Name, NameLen}, unwrapDI<DIFile>(File), LineNo,
1234 LLVMMetadataRef File, unsigned LineNo,
1237 unwrapDI<DIType>(Type), {Name, NameLen}, unwrapDI<DIFile>(File), LineNo,
    [all...]
LLVMContextImpl.h 866 unsigned LineNo;
869 Metadata *File, unsigned LineNo)
870 : Scope(Scope), Decl(Decl), Name(Name), File(File), LineNo(LineNo) {}
873 File(N->getRawFile()), LineNo(N->getLineNo()) {}
878 LineNo == RHS->getLineNo();
882 return hash_combine(Scope, Decl, Name, File, LineNo);
893 unsigned LineNo;
898 MDString *APINotesFile, unsigned LineNo, bool IsDecl)
901 APINotesFile(APINotesFile), LineNo(LineNo), IsDecl(IsDecl) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
AddressSanitizer.h 27 int LineNo = 0;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtil.cpp 136 int LineNo = 0;
139 LineNo++;
147 Printf("ParseDictionaryFile: error in line %d\n\t\t%s\n", LineNo,
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 201 /// presumed location to LineNo/FilenameID. If EntryExit is 0, then this doesn't
205 void LineTableInfo::AddLineNote(FileID FID, unsigned Offset, unsigned LineNo,
234 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
272 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
296 LineTable->AddLineNote(LocInfo.first, LocInfo.second, LineNo, FilenameID,
1433 unsigned LineNo = Pos-SourceLineCacheStart;
1438 LastLineNoResult = LineNo;
1439 return LineNo;
1541 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1570 LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmtAsm.cpp 388 unsigned LineNo = 0;
405 LineNo = SrcMgr.getLineNumber(FID, ExpAsmLoc.second);
433 LineNo = SrcMgr.getLineNumber(FID, ExpSemiLoc.second);
441 SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second) != LineNo) {
456 LineNo = SrcMgr.getLineNumber(ExpLoc.first, ExpLoc.second);
462 LineNo = SrcMgr.getLineNumber(FID, ExpLoc.second);

Completed in 57 milliseconds

1 2