/external/llvm/lib/Support/ |
SourceMgr.cpp | 92 unsigned LineNo = 1; 103 LineNo = Cache->LineNoOfQuery; 109 if (*Ptr == '\n') ++LineNo; 120 Cache.LineNoOfQuery = LineNo; 121 return LineNo; 212 if (LineNo != -1) { 213 S << ':' << LineNo; 222 if (LineNo != -1 && ColumnNo != -1 && ShowLine) {
|
/external/clang/include/clang/Basic/ |
SourceManagerInternals.h | 32 /// LineNo - The presumed line number of this line entry: #line 4. 33 unsigned LineNo; 52 E.LineNo = Line; 108 unsigned LineNo, int FilenameID); 110 unsigned LineNo, int FilenameID,
|
SourceManager.h | [all...] |
/external/llvm/include/llvm/Analysis/ |
DIBuilder.h | 119 /// @param LineNo Line number. 122 unsigned LineNo, DIDescriptor Context); 141 /// @param LineNo Line number. 148 unsigned LineNo, uint64_t SizeInBits, 156 /// @param LineNo Line number. 168 unsigned LineNo, uint64_t SizeInBits, 180 /// @param LineNo Line number. 202 /// @param LineNo Line number. 217 /// @param LineNo Line number. 234 /// @param LineNo Line number [all...] |
/external/llvm/include/llvm/Support/ |
SourceMgr.h | 153 int LineNo, ColumnNo; 159 SMDiagnostic() : SM(0), LineNo(0), ColumnNo(0), ShowLine(0) {} 162 : SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), 170 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Message(Msg), 176 int getLineNo() const { return LineNo; }
|
/external/llvm/lib/Analysis/ |
DbgInfoPrinter.cpp | 120 std::string &Type, unsigned &LineNo, 133 LineNo = Var.getLineNumber(); 144 LineNo = Var.getLineNumber(); 155 LineNo = Var.getLineNumber(); 174 unsigned LineNo; 176 if (!getLocationInfo(V, DisplayName, Type, LineNo, File, Directory)) 191 Out << File << ":" << LineNo << "\n";
|
DIBuilder.cpp | 163 unsigned LineNo, DIDescriptor Context) { 171 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo), 303 DIType Ty, MDNode *File, unsigned LineNo, 311 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo), 322 MDNode *File, unsigned LineNo, 331 ConstantInt::get(Type::getInt32Ty(VMContext), LineNo), 619 unsigned LineNo, DIType Ty, 627 ConstantInt::get(Type::getInt32Ty(VMContext), (LineNo | (ArgNo << 24))), 654 unsigned LineNo, 662 Elts.push_back(ConstantInt::get(Type::getInt32Ty(VMContext), (LineNo | (ArgNo << 24)))) [all...] |
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 140 bool MoveToLine(unsigned LineNo); 146 void WriteLineInfo(unsigned LineNo, const char *Extra=0, unsigned ExtraLen=0); 158 void PrintPPOutputPPCallbacks::WriteLineInfo(unsigned LineNo, 169 OS << "#line" << ' ' << LineNo << ' ' << '"'; 173 OS << '#' << ' ' << LineNo << ' ' << '"'; 192 bool PrintPPOutputPPCallbacks::MoveToLine(unsigned LineNo) { 195 if (LineNo-CurLine <= 8) { 196 if (LineNo-CurLine == 1) 198 else if (LineNo == CurLine) 202 OS.write(NewLines, LineNo-CurLine) [all...] |
TextDiagnosticPrinter.cpp | 78 /// any characters in LineNo that intersect the SourceRange. 81 unsigned LineNo, FileID FID, 100 if (StartLineNo > LineNo || SM.getFileID(Begin) != FID) 104 if (EndLineNo < LineNo || SM.getFileID(End) != FID) 109 if (StartLineNo == LineNo) { 116 if (EndLineNo == LineNo) { 471 unsigned LineNo = SM.getLineNumber(FID, FileOffset); 474 HighlightRange(Ranges[i], SM, LineNo, FID, CaretLine, SourceLine); [all...] |
/external/llvm/lib/VMCore/ |
DebugLoc.cpp | 122 unsigned LineNo = 0, ColNo = 0; 124 LineNo = Line->getZExtValue(); 128 return get(LineNo, ColNo, Scope, dyn_cast_or_null<MDNode>(N->getOperand(3))); 138 unsigned LineNo = 0, ColNo = 0; 140 LineNo = Line->getZExtValue(); 144 return get(LineNo, ColNo, Scope, NULL);
|
/external/clang/include/clang/Frontend/ |
TextDiagnosticPrinter.h | 61 unsigned LineNo, FileID FID,
|
/external/clang/lib/Rewrite/ |
HTMLRewrite.cpp | 210 static void AddLineNumber(RewriteBuffer &RB, unsigned LineNo, 216 << LineNo << "\">" 217 << LineNo << "</td><td class=\"line\">"; 238 unsigned LineNo = 0; 243 ++LineNo; 264 AddLineNumber(RB, LineNo, LineStartPos, LineEndPos);
|
/external/clang/lib/Basic/ |
SourceManager.cpp | 188 /// location to LineNo/FilenameID. 190 unsigned LineNo, int FilenameID) { 211 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind, 221 unsigned LineNo, int FilenameID, 247 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind, 290 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo, 306 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID); 310 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo, 319 return AddLineNote(Loc, LineNo, FilenameID); 351 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID [all...] |
/external/clang/lib/Lex/ |
PPDirectives.cpp | 755 unsigned LineNo; 756 if (GetLineValue(DigitTok, LineNo, diag::err_pp_line_requires_integer,*this)) 762 if (LineNo >= LineLimit) 794 SourceMgr.AddLineNote(DigitTok.getLocation(), LineNo, FilenameID); 891 unsigned LineNo; 892 if (GetLineValue(DigitTok, LineNo, diag::err_pp_linemarker_requires_integer, [all...] |
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | 509 unsigned LineNo = getLineNumber(CurLoc); 512 Unit, LineNo, FieldOffset, 0, 534 LineNo, FieldSize, FieldAlign, 542 Unit, LineNo, FieldOffset, 0, [all...] |
CodeGenModule.h | 633 const AnnotateAttr *AA, unsigned LineNo);
|
CodeGenModule.cpp | 651 unsigned LineNo) { 681 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), LineNo) [all...] |
/external/clang/lib/Parse/ |
ParseStmt.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | [all...] |
ASTWriter.cpp | [all...] |