Home
last modified time | relevance | path

Searched refs:BridgeKeywordLoc (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Parse/
DParseExpr.cpp2215 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
2216 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
2217 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc) in ParseParenExpression()
2219 << FixItHint::CreateReplacement(BridgeKeywordLoc, ""); in ParseParenExpression()
2257 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
2272 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
2273 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain) in ParseParenExpression()
2274 << FixItHint::CreateReplacement(BridgeKeywordLoc, in ParseParenExpression()
2288 BridgeKeywordLoc, Ty.get(), in ParseParenExpression()
/external/clang/include/clang/AST/
DExprObjC.h1523 SourceLocation BridgeKeywordLoc;
1533 CastKind CK, SourceLocation BridgeKeywordLoc,
1537 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) { }
1554 SourceLocation getBridgeKeywordLoc() const { return BridgeKeywordLoc; }
/external/clang/lib/Sema/
DSemaExprObjC.cpp4229 SourceLocation BridgeKeywordLoc, in BuildObjCBridgedCast() argument
4255 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4262 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4263 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge"); in BuildObjCBridgedCast()
4264 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer) in BuildObjCBridgedCast()
4266 << FixItHint::CreateReplacement(BridgeKeywordLoc, in BuildObjCBridgedCast()
4298 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4306 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4307 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge "); in BuildObjCBridgedCast()
4308 Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained) in BuildObjCBridgedCast()
[all …]
/external/clang/include/clang/Sema/
DSema.h7662 SourceLocation BridgeKeywordLoc,
7669 SourceLocation BridgeKeywordLoc,
/external/clang/lib/Serialization/
DASTReaderStmt.cpp663 E->BridgeKeywordLoc = ReadSourceLocation(Record, Idx); in VisitObjCBridgedCastExpr()