Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExprObjC.h1636 SourceLocation BridgeKeywordLoc; variable
1642 CastKind CK, SourceLocation BridgeKeywordLoc,
1646 LParenLoc(LParenLoc), BridgeKeywordLoc(BridgeKeywordLoc), Kind(Kind) {}
1663 SourceLocation getBridgeKeywordLoc() const { return BridgeKeywordLoc; } in getBridgeKeywordLoc()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp4647 SourceLocation BridgeKeywordLoc, in BuildObjCBridgedCast() argument
4674 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4681 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4682 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge"); in BuildObjCBridgedCast()
4683 Diag(BridgeKeywordLoc, diag::note_arc_bridge_transfer) in BuildObjCBridgedCast()
4685 << FixItHint::CreateReplacement(BridgeKeywordLoc, in BuildObjCBridgedCast()
4717 Diag(BridgeKeywordLoc, diag::err_arc_bridge_cast_wrong_kind) in BuildObjCBridgedCast()
4725 Diag(BridgeKeywordLoc, diag::note_arc_bridge) in BuildObjCBridgedCast()
4726 << FixItHint::CreateReplacement(BridgeKeywordLoc, "__bridge "); in BuildObjCBridgedCast()
4727 Diag(BridgeKeywordLoc, diag::note_arc_bridge_retained) in BuildObjCBridgedCast()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp2645 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
2646 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
2647 Diag(BridgeKeywordLoc, diag::warn_arc_bridge_cast_nonarc) in ParseParenExpression()
2649 << FixItHint::CreateReplacement(BridgeKeywordLoc, ""); in ParseParenExpression()
2691 SourceLocation BridgeKeywordLoc = ConsumeToken(); in ParseParenExpression() local
2706 if (!PP.getSourceManager().isInSystemHeader(BridgeKeywordLoc)) in ParseParenExpression()
2707 Diag(BridgeKeywordLoc, diag::err_arc_bridge_retain) in ParseParenExpression()
2708 << FixItHint::CreateReplacement(BridgeKeywordLoc, in ParseParenExpression()
2724 BridgeKeywordLoc, Ty.get(), in ParseParenExpression()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h766 SourceLocation BridgeKeywordLoc,
771 SourceLocation BridgeKeywordLoc,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1110 E->BridgeKeywordLoc = readSourceLocation(); in VisitObjCBridgedCastExpr()