OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjCPropertyRefExpr
(Results
1 - 25
of
36
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp
61
static const NamedDecl *getBestPropertyDecl(const
ObjCPropertyRefExpr
*PropE) {
94
const
ObjCPropertyRefExpr
*BaseProp =
95
dyn_cast<
ObjCPropertyRefExpr
>(POE->getSyntacticForm());
117
const
ObjCPropertyRefExpr
*PropE)
181
if (const
ObjCPropertyRefExpr
*RefExpr = dyn_cast<
ObjCPropertyRefExpr
>(E)) {
SemaPseudoObject.cpp
55
Expr *rebuildObjCPropertyRefExpr(
ObjCPropertyRefExpr
*refExpr) {
62
return new (S.Context)
ObjCPropertyRefExpr
(
67
return new (S.Context)
ObjCPropertyRefExpr
(
108
if (auto *PRE = dyn_cast<
ObjCPropertyRefExpr
>(e))
265
ObjCPropertyRefExpr
*RefExpr;
266
ObjCPropertyRefExpr
*SyntacticRefExpr;
275
ObjCPropertyOpBuilder(Sema &S,
ObjCPropertyRefExpr
*refExpr, bool IsUnique)
548
const
ObjCPropertyRefExpr
*PRE) {
712
if (
ObjCPropertyRefExpr
*
713
refE = dyn_cast<
ObjCPropertyRefExpr
>(syntacticBase->IgnoreParens())
[
all
...]
SemaFixItUtils.cpp
82
isa<
ObjCPropertyRefExpr
>(Expr) ||
SemaExprObjC.cpp
2007
ObjCPropertyRefExpr
(PD, Context.PseudoObjectTy, VK_LValue,
2011
ObjCPropertyRefExpr
(PD, Context.PseudoObjectTy, VK_LValue,
2023
return new (Context)
ObjCPropertyRefExpr
(
2028
ObjCPropertyRefExpr
(PD, Context.PseudoObjectTy, VK_LValue,
2094
ObjCPropertyRefExpr
(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2098
ObjCPropertyRefExpr
(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2250
ObjCPropertyRefExpr
(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
2254
return new (Context)
ObjCPropertyRefExpr
(
3700
ACCResult VisitObjCPropertyRefExpr(
ObjCPropertyRefExpr
*e) {
4192
if (
ObjCPropertyRefExpr
*PRE = dyn_cast<ObjCPropertyRefExpr>(castExpr))
[
all
...]
SemaExprMember.cpp
1502
ObjCPropertyRefExpr
(PD, S.Context.PseudoObjectTy, VK_LValue,
1518
ObjCPropertyRefExpr
(OMD, SMD, S.Context.PseudoObjectTy, VK_LValue,
1574
return new (S.Context)
ObjCPropertyRefExpr
(
SemaAvailability.cpp
695
bool VisitObjCPropertyRefExpr(
ObjCPropertyRefExpr
*PRE) {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ComputeDependence.h
99
class
ObjCPropertyRefExpr
;
189
ExprDependence computeDependence(
ObjCPropertyRefExpr
*E);
ExprObjC.h
612
///
ObjCPropertyRefExpr
- A dot-syntax expression to access an ObjC
614
class
ObjCPropertyRefExpr
: public Expr {
648
ObjCPropertyRefExpr
(ObjCPropertyDecl *PD, QualType t, ExprValueKind VK,
656
ObjCPropertyRefExpr
(ObjCPropertyDecl *PD, QualType t, ExprValueKind VK,
665
ObjCPropertyRefExpr
(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
675
ObjCPropertyRefExpr
(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
686
ObjCPropertyRefExpr
(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
697
explicit
ObjCPropertyRefExpr
(EmptyShell Empty)
795
auto Children = const_cast<
ObjCPropertyRefExpr
*>(this)->children();
JSONNodeDumper.h
297
void VisitObjCPropertyRefExpr(const
ObjCPropertyRefExpr
*OPRE);
TextNodeDumper.h
292
void VisitObjCPropertyRefExpr(const
ObjCPropertyRefExpr
*Node);
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp
195
ObjCPropertyRefExpr
*PropRefExp =
196
dyn_cast<
ObjCPropertyRefExpr
>(BO->getLHS()->IgnoreParens());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp
133
/// Checks if
ObjCPropertyRefExpr
refers to the tracked IVar, if yes, marks
135
void checkObjCPropertyRefExpr(const
ObjCPropertyRefExpr
*PA);
616
const
ObjCPropertyRefExpr
*PA) {
656
if (const
ObjCPropertyRefExpr
*PropRef = dyn_cast<
ObjCPropertyRefExpr
>(E)) {
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
Extract.cpp
86
if (const auto *PRE = dyn_cast<
ObjCPropertyRefExpr
>(Code[0])) {
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprClassification.cpp
262
if (isa<
ObjCPropertyRefExpr
>(Op))
505
if (isa<
ObjCPropertyRefExpr
>(Base))
531
if (isa<
ObjCPropertyRefExpr
>(Base))
639
if (const auto *Expr = dyn_cast<
ObjCPropertyRefExpr
>(E)) {
ExprObjC.cpp
96
QualType
ObjCPropertyRefExpr
::getReceiverType(const ASTContext &ctx) const {
ComputeDependence.cpp
376
ExprDependence clang::computeDependence(
ObjCPropertyRefExpr
*E) {
Expr.cpp
2999
if (!isa<
ObjCPropertyRefExpr
>(E))
3804
const
ObjCPropertyRefExpr
*Expr::getObjCProperty() const {
3821
return cast<
ObjCPropertyRefExpr
>(E);
JSONNodeDumper.cpp
1116
void JSONNodeDumper::VisitObjCPropertyRefExpr(const
ObjCPropertyRefExpr
*OPRE) {
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h
53
class
ObjCPropertyRefExpr
;
277
WeakObjectProfileTy(const
ObjCPropertyRefExpr
*RE);
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexBody.cpp
238
const auto *PRE = dyn_cast<
ObjCPropertyRefExpr
>(E);
288
bool VisitObjCPropertyRefExpr(
ObjCPropertyRefExpr
*E) {
/src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp
902
isa<
ObjCPropertyRefExpr
>(Expr) ||
929
isa<
ObjCPropertyRefExpr
>(Expr) ||
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXCursor.cpp
1662
if (auto *PropRefE = dyn_cast<
ObjCPropertyRefExpr
>(E)) {
1692
if (auto *PropRefE = dyn_cast<
ObjCPropertyRefExpr
>(E)) {
/src/external/apache2/llvm/dist/clang/lib/Analysis/
CalledOnceCheck.cpp
446
bool VisitObjCPropertyRefExpr(const
ObjCPropertyRefExpr
*E) {
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp
1083
auto *RefExpr = cast<
ObjCPropertyRefExpr
>(Syntactic);
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1481
void ASTStmtReader::VisitObjCPropertyRefExpr(
ObjCPropertyRefExpr
*E) {
3062
S = new (Context)
ObjCPropertyRefExpr
(Empty);
Completed in 67 milliseconds
1
2
Indexes created Tue Feb 24 08:35:24 UTC 2026