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

1 2

  /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/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/llvm/include/llvm/Transforms/Instrumentation/
AddressSanitizer.h 27 int LineNo = 0;
  /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/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/llvm/lib/Support/
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) + ": '" +
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...]
  /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.cpp 101 unsigned LineNumber = L.LineNo;
163 unsigned LineNo) {
166 BufferOS << LineNo;
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/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/clang/lib/CrossTU/
CrossTranslationUnit.cpp 157 unsigned LineNo = 1;
173 index_error_code::multiple_definitions, IndexPath.str(), LineNo);
176 index_error_code::invalid_index_format, IndexPath.str(), LineNo);
177 ++LineNo;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
FrontendAction.cpp 255 unsigned LineNo;
260 .getAsInteger(10, LineNo))
278 LineNoLoc, LineNo, SourceMgr.getLineTableFilenameID(InputFile), false,
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/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 407 for (unsigned LineNo : I->second) {
408 if (LineNo != *(I->second.begin()))
411 os << "\"" << LineNo << "\": 1";
439 var lineNo = el.getAttribute("data-linenumber");
440 if (!lines_in_fid[lineNo]) {
BugReporter.cpp 1962 unsigned LineNo = Loc.getLineNumber();
1964 ExecutedLines[FID].insert(LineNo);
3125 unsigned LineNo = SM.getExpansionLineNumber(ExpansionLoc);
3126 ExecutedLines[FID].insert(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/Lex/
PPDirectives.cpp 1182 unsigned LineNo;
1183 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this))
1186 if (LineNo == 0)
1194 if (LineNo >= LineLimit)
1196 else if (LangOpts.CPlusPlus11 && LineNo >= 32768U)
1243 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID, false,
1340 unsigned LineNo;
1341 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer,
1386 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID, IsFileEntry,
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1252 unsigned LineNo = P.getLine();
1253 unsigned ScopeLine = LineNo;
1255 FContext, P.getName(), StringRef(), Unit, LineNo,
1277 SP, Arg.getName(), ++ArgIdx, Unit, LineNo, KSDbgInfo.getDoubleTy(),
1281 DILocation::get(SP->getContext(), LineNo, 0, SP),
  /src/external/apache2/llvm/dist/llvm/lib/IR/
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/clang/lib/Serialization/
ASTReader.cpp 1303 unsigned LineNo = Record[Idx++];
1308 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 1162 unsigned LineNo, SmallVectorImpl<llvm::Metadata *> &EltTys) {
1188 Unit, "__descriptor", nullptr, LineNo, FieldSize, FieldAlign,
3576 unsigned &LineNo, QualType &T,
3581 LineNo = getLineNumber(VD->getLocation());
3771 const Decl *D, llvm::DISubroutineType *FnType, unsigned LineNo,
3800 InterfaceType->getFile(), LineNo, FnType, LineNo, Flags, SPFlags);
3951 const unsigned LineNo = getLineNumber(Loc.isValid() ? Loc : CurLoc);
3957 ? getObjCMethodDeclaration(D, DIFnType, LineNo, Flags, SPFlags)
3966 FDContext, Name, LinkageName, Unit, LineNo, DIFnType, ScopeLine
    [all...]
CodeGenModule.cpp 2496 unsigned LineNo = PLoc.isValid() ? PLoc.getLine() :
2498 return llvm::ConstantInt::get(Int32Ty, LineNo);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 2425 /// for the Filename and LineNo if any in the diagnostic.
2447 // print the normal diagnostic using its Filename and LineNo.
2464 int LineNo =
2467 SMDiagnostic NewDiag(*Diag.getSourceMgr(), Diag.getLoc(), Filename, LineNo,

Completed in 117 milliseconds

1 2