Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp3058 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
3059 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
3060 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc) in ParseParenExpression()
3062 << FixItHint::CreateReplacement(BridgeKeywordLoc, ""); in ParseParenExpression()
3104 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
3119 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
3120 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain) in ParseParenExpression()
3121 << FixItHint::CreateReplacement(BridgeKeywordLoc, in ParseParenExpression()
3137 BridgeKeywordLoc, Ty.get(), in ParseParenExpression()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp4653 SourceLocation BridgeKeywordLoc, in BuildObjCBridgedCast() argument
4680 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4687 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4688 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge"); in BuildObjCBridgedCast()
4689 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer) in BuildObjCBridgedCast()
4691 << FixItHint::CreateReplacement(BridgeKeywordLoc, in BuildObjCBridgedCast()
4723 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4731 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4732 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge "); in BuildObjCBridgedCast()
4733 Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained) in BuildObjCBridgedCast()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h774 SourceLocation BridgeKeywordLoc,
779 SourceLocation BridgeKeywordLoc,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1097 E->BridgeKeywordLoc = readSourceLocation(); in VisitObjCBridgedCastExpr()