Searched defs:Col (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Support/
H A DSourceMgr.cpp219 int Line, int Col, SourceMgr::DiagKind Kind,
223 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
218 SMDiagnostic(const SourceMgr &sm, SMLoc L, const std::string &FN, int Line, int Col, SourceMgr::DiagKind Kind, const std::string &Msg, const std::string &LineStr, ArrayRef<std::pair<unsigned,unsigned> > Ranges) argument
/external/llvm/lib/VMCore/
H A DDebugLoc.cpp73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, argument
81 if (Col > 255) Col = 0;
83 Result.LineCol = Line | (Col << 24);
125 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(1)))
126 ColNo = Col->getZExtValue();
141 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(3)))
142 ColNo = Col->getZExtValue();
/external/clang/include/clang/Basic/
H A DSourceLocation.h349 unsigned Line, Col; member in class:clang::PresumedLoc
354 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
373 unsigned getColumn() const { return Col; }
/external/llvm/lib/Analysis/
H A DDIBuilder.cpp867 unsigned Line, unsigned Col) {
874 ConstantInt::get(Type::getInt32Ty(VMContext), Col),
866 createLexicalBlock(DIDescriptor Scope, DIFile File, unsigned Line, unsigned Col) argument
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2149 unsigned Line = Record[0], Col = Record[1]; local
2155 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1351 void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, argument
1384 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn);

Completed in 87 milliseconds