Searched defs:BridgeKeywordLoc (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Parse/
H A DParseExpr.cpp2215 SourceLocation BridgeKeywordLoc = ConsumeToken(); local
2216 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
2217 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc)
2219 << FixItHint::CreateReplacement(BridgeKeywordLoc, "");
2257 SourceLocation BridgeKeywordLoc = ConsumeToken(); local
2272 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
2273 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain)
2274 << FixItHint::CreateReplacement(BridgeKeywordLoc,
2288 BridgeKeywordLoc, Ty.get(),
/external/clang/include/clang/AST/
H A DExprObjC.h1523 SourceLocation BridgeKeywordLoc; member in class:clang::final
1533 CastKind CK, SourceLocation BridgeKeywordLoc,
1537 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) { }
1554 SourceLocation getBridgeKeywordLoc() const { return BridgeKeywordLoc; }
1532 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, CastKind CK, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *Operand) argument
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp4229 SourceLocation BridgeKeywordLoc,
4255 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4262 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4263 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge");
4264 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer)
4266 << FixItHint::CreateReplacement(BridgeKeywordLoc,
4298 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
4306 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
4307 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge ");
4308 Diag(BridgeKeywordLoc, dia
4227 BuildObjCBridgedCast(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *SubExpr) argument
4338 ActOnObjCBridgedCast(Scope *S, SourceLocation LParenLoc, ObjCBridgeCastKind Kind, SourceLocation BridgeKeywordLoc, ParsedType Type, SourceLocation RParenLoc, Expr *SubExpr) argument
[all...]

Completed in 1101 milliseconds