Home
last modified time | relevance | path

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

/external/clang/lib/Edit/
DEditedSource.cpp378 SourceLocation BLoc = SourceMgr.getLocForStartOfFile(BeginOffs.getFID()); in getSourceText() local
379 BLoc = BLoc.getLocWithOffset(BeginOffs.getOffset()); in getSourceText()
380 assert(BLoc.isFileID()); in getSourceText()
382 ELoc = BLoc.getLocWithOffset(EndOffs.getOffset() - BeginOffs.getOffset()); in getSourceText()
383 return Lexer::getSourceText(CharSourceRange::getCharRange(BLoc, ELoc), in getSourceText()
/external/clang/lib/Analysis/
DLiveVariables.cpp591 SourceLocation BLoc = B->getLocStart(); in compare_vd_entries() local
592 return ALoc.getRawEncoding() < BLoc.getRawEncoding(); in compare_vd_entries()
/external/clang/lib/Frontend/
DTextDiagnostic.cpp1234 SourceLocation BLoc = I->RemoveRange.getBegin(); in emitParseableFixits() local
1237 std::pair<FileID, unsigned> BInfo = SM.getDecomposedLoc(BLoc); in emitParseableFixits()
1246 PresumedLoc PLoc = SM.getPresumedLoc(BLoc); in emitParseableFixits()
/external/clang/include/clang/AST/
DExpr.h3415 SourceLocation BLoc, SourceLocation RP);
3480 ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, in ChooseExpr() argument
3491 BuiltinLoc(BLoc), RParenLoc(RP), CondIsTrue(condIsTrue) { in ChooseExpr()
3585 VAArgExpr(SourceLocation BLoc, Expr* e, TypeSourceInfo *TInfo, in VAArgExpr() argument
3594 BuiltinLoc(BLoc), in VAArgExpr()
4660 AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args, QualType t,
/external/clang/lib/AST/
DExpr.cpp3535 QualType Type, SourceLocation BLoc, in ShuffleVectorExpr() argument
3541 BuiltinLoc(BLoc), RParenLoc(RP), NumExprs(args.size()) in ShuffleVectorExpr()
4059 AtomicExpr::AtomicExpr(SourceLocation BLoc, ArrayRef<Expr*> args, in AtomicExpr() argument
4063 NumSubExprs(args.size()), BuiltinLoc(BLoc), RParenLoc(RP), Op(op) in AtomicExpr()
/external/clang/include/clang/Serialization/
DASTReader.h1025 findBeginPreprocessedEntity(SourceLocation BLoc) const;
/external/clang/lib/Serialization/
DASTReader.cpp4278 ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const { in findBeginPreprocessedEntity()
4279 if (SourceMgr.isLocalSourceLocation(BLoc)) in findBeginPreprocessedEntity()
4284 BLoc.getOffset() - 1); in findBeginPreprocessedEntity()
4310 BLoc)){ in findBeginPreprocessedEntity()
/external/clang/tools/libclang/
DCIndex.cpp6638 CXSourceLocation BLoc = clang_getRangeStart(range); in operator <<() local
6643 clang_getFileLocation(BLoc, &BFile, &BLine, &BColumn, 0); in operator <<()