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

/external/clang/lib/Parse/
H A DParseExpr.cpp1990 SourceLocation BridgeKeywordLoc = ConsumeToken(); local
1991 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
1992 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc)
1994 << FixItHint::CreateReplacement(BridgeKeywordLoc, "");
2015 SourceLocation BridgeKeywordLoc = ConsumeToken(); local
2030 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc))
2031 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain)
2032 << FixItHint::CreateReplacement(BridgeKeywordLoc,
2045 BridgeKeywordLoc, Ty.get(),
/external/clang/include/clang/AST/
H A DExprObjC.h1495 SourceLocation BridgeKeywordLoc; member in class:clang::ObjCBridgedCastExpr
1503 CastKind CK, SourceLocation BridgeKeywordLoc,
1507 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) { }
1524 SourceLocation getBridgeKeywordLoc() const { return BridgeKeywordLoc; }
1502 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, CastKind CK, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *Operand) argument
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp3137 SourceLocation BridgeKeywordLoc,
3163 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
3170 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
3171 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge");
3172 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer)
3174 << FixItHint::CreateReplacement(BridgeKeywordLoc,
3206 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind)
3214 Diag(BridgeKeywordLoc, diag::note_arc_bridge)
3215 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge ");
3216 Diag(BridgeKeywordLoc, dia
3135 BuildObjCBridgedCast(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *SubExpr) argument
3246 ActOnObjCBridgedCast(Scope *S, SourceLocation LParenLoc, ObjCBridgeCastKind Kind, SourceLocation BridgeKeywordLoc, ParsedType Type, SourceLocation RParenLoc, Expr *SubExpr) argument
[all...]

Completed in 3283 milliseconds