Searched defs:LLoc (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/Rewrite/Core/
H A DHTMLRewrite.cpp522 std::pair<SourceLocation, SourceLocation> LLoc = local
526 if (SM.getFileID(LLoc.first) != FID) {
531 assert(SM.getFileID(LLoc.second) == FID &&
546 SM.getExpansionLoc(Tok.getLocation()) == LLoc.first) {
575 HighlightRange(R, LLoc.first, LLoc.second,
/external/clang/include/clang/AST/
H A DExpr.h3325 AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelDecl *L, argument
3329 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {}
/external/clang/lib/Sema/
H A DSemaOverload.cpp8979 SourceLocation LLoc = GetLocationForCandidate(L); local
8983 if (LLoc.isInvalid()) return false;
8986 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
9170 SourceLocation LLoc = GetLocationForCandidate(L);
9174 if (LLoc.isInvalid())
9179 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
10764 Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc, argument
10777 DeclarationNameInfo OpNameInfo(OpName, LLoc);
10778 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
10801 OverloadCandidateSet CandidateSet(LLoc);
[all...]
H A DSemaExpr.cpp3626 Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc, argument
3673 Diag(LLoc, diag::err_subscript_nonfragile_interface)
3689 Diag(LLoc, diag::err_subscript_nonfragile_interface)
3729 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
3734 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
3740 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
3754 Diag(LLoc, diag::ext_gnu_subscript_void_type)
3761 RequireCompleteType(LLoc, ResultType,

Completed in 149 milliseconds