Home
last modified time | relevance | path

Searched refs:BLoc (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/Edit/
DEditedSource.cpp436 SourceLocation BLoc = SourceMgr.getLocForStartOfFile(BeginOffs.getFID()); in getSourceText() local
437 BLoc = BLoc.getLocWithOffset(BeginOffs.getOffset()); in getSourceText()
438 assert(BLoc.isFileID()); in getSourceText()
440 ELoc = BLoc.getLocWithOffset(EndOffs.getOffset() - BeginOffs.getOffset()); in getSourceText()
441 return Lexer::getSourceText(CharSourceRange::getCharRange(BLoc, ELoc), in getSourceText()
/external/llvm/lib/MC/MCParser/
DDarwinAsmParser.cpp605 SMLoc BLoc = SMLoc::getFromPointer(SectionVal.data() + B); in parseDirectiveSection() local
608 SMRange(BLoc, ELoc)); in parseDirectiveSection()
610 "\"", SMRange(BLoc, ELoc)); in parseDirectiveSection()
/external/clang/lib/Frontend/
DTextDiagnostic.cpp1235 SourceLocation BLoc = I->RemoveRange.getBegin(); in emitParseableFixits() local
1238 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc); in emitParseableFixits()
1247 PresumedLoc PLoc = SM.getPresumedLoc(BLoc); in emitParseableFixits()
/external/clang/include/clang/AST/
DExpr.h3500 SourceLocation BLoc, SourceLocation RP);
3619 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() argument
3630 BuiltinLoc(BLoc), RParenLoc(RP), CondIsTrue(condIsTrue) { in ChooseExpr()
3726 VAArgExpr(SourceLocation BLoc, Expr *e, TypeSourceInfo *TInfo, in VAArgExpr() argument
3733 Val(e), TInfo(TInfo, IsMS), BuiltinLoc(BLoc), RParenLoc(RPLoc) {} in VAArgExpr()
4928 AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args, QualType t,
/external/clang/lib/AST/
DExpr.cpp3566 QualType Type, SourceLocation BLoc, in ShuffleVectorExpr() argument
3572 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size()) in ShuffleVectorExpr()
3966 AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args, in AtomicExpr() argument
3970 NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op) in AtomicExpr()
/external/clang/tools/libclang/
DCIndex.cpp7548 CXSourceLocation BLoc = clang_getRangeStart(range); in operator <<() local
7553 clang_getFileLocation(BLoc, &BFile, &BLine, &BColumn, nullptr); in operator <<()