OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ObjCPropertyImplDecl
(Results
1 - 25
of
35
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp
31
llvm::DenseMap<ObjCPropertyDecl*,
ObjCPropertyImplDecl
*> SynthesizedProperties;
57
for (llvm::DenseMap<ObjCPropertyDecl*,
ObjCPropertyImplDecl
*>::iterator
117
ObjCPropertyImplDecl
::Synthesize) {
172
for (llvm::DenseMap<ObjCPropertyDecl*,
ObjCPropertyImplDecl
*>::iterator
175
ObjCPropertyImplDecl
*PropImpDecl = P->second;
TransProperties.cpp
61
ObjCPropertyImplDecl
*ImplD;
102
typedef DeclContext::specific_decl_iterator<
ObjCPropertyImplDecl
>
107
ObjCPropertyImplDecl
*implD = *I;
108
if (implD->getPropertyImplementation() !=
ObjCPropertyImplDecl
::Synthesize)
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp
68
static bool isSynthesizedRetainableProperty(const
ObjCPropertyImplDecl
*I,
72
if (I->getPropertyImplementation() !=
ObjCPropertyImplDecl
::Synthesize)
146
const
ObjCPropertyImplDecl
*
151
getDeallocReleaseRequirement(const
ObjCPropertyImplDecl
*PropImpl) const;
164
findShadowedPropertyDecl(const
ObjCPropertyImplDecl
*PropImpl) const;
175
bool isReleasedByCIFilterDealloc(const
ObjCPropertyImplDecl
*PropImpl) const;
176
bool isNibLoadedIvarWithoutRetain(const
ObjCPropertyImplDecl
*PropImpl) const;
204
const
ObjCPropertyImplDecl
*PropImplRequiringRelease = nullptr;
560
const
ObjCPropertyImplDecl
*PropImpl =
605
const
ObjCPropertyImplDecl
*
[
all
...]
ObjCUnusedIVarsChecker.cpp
63
static void Scan(IvarUsageMap& M, const
ObjCPropertyImplDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp
454
if (!isa<
ObjCPropertyImplDecl
>(I) ||
455
cast<
ObjCPropertyImplDecl
>(I)->getLocation().isValid())
523
bool VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D) {
538
if (D->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
541
assert(D->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Synthesize);
IndexingContext.cpp
66
if (isa<
ObjCPropertyImplDecl
>(D)) {
67
D = cast<
ObjCPropertyImplDecl
>(D)->getPropertyDecl();
267
isa<
ObjCPropertyImplDecl
>(D))
USRGeneration.cpp
96
void VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D);
485
void USRGenerator::VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D) {
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp
2129
void ObjCImplDecl::addPropertyImplementation(
ObjCPropertyImplDecl
*property) {
2153
ObjCPropertyImplDecl
*ObjCImplDecl::
2162
/// FindPropertyImplDecl - This method looks up a previous
ObjCPropertyImplDecl
2165
ObjCPropertyImplDecl
*ObjCImplDecl::
2168
ObjCPropertyImplDecl
*ClassPropImpl = nullptr;
2305
//
ObjCPropertyImplDecl
2308
ObjCPropertyImplDecl
*
ObjCPropertyImplDecl
::Create(ASTContext &C,
2316
return new (C, DC)
ObjCPropertyImplDecl
(DC, atLoc, L, property, PK, ivar,
2320
ObjCPropertyImplDecl
*ObjCPropertyImplDecl::CreateDeserialized(ASTContext &C
[
all
...]
DeclPrinter.cpp
97
void VisitObjCPropertyImplDecl(
ObjCPropertyImplDecl
*D);
1582
void DeclPrinter::VisitObjCPropertyImplDecl(
ObjCPropertyImplDecl
*PID) {
1583
if (PID->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Synthesize)
JSONNodeDumper.cpp
1045
void JSONNodeDumper::VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D) {
1048
ObjCPropertyImplDecl
::Synthesize
TextNodeDumper.cpp
2266
void TextNodeDumper::VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D) {
2268
if (D->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Synthesize)
/src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h
234
bool VisitObjCPropertyImplDecl(
ObjCPropertyImplDecl
*PD);
CXIndexDataConsumer.h
401
bool handleSynthesizedObjCProperty(const
ObjCPropertyImplDecl
*D);
CXIndexDataConsumer.cpp
106
bool VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D) {
820
const
ObjCPropertyImplDecl
*D) {
CIndex.cpp
1219
bool CursorVisitor::VisitObjCPropertyImplDecl(
ObjCPropertyImplDecl
*PD) {
4592
if (const
ObjCPropertyImplDecl
*PropImpl =
4593
dyn_cast<
ObjCPropertyImplDecl
>(D))
5774
} else if (const
ObjCPropertyImplDecl
*PropImp =
5775
dyn_cast_or_null<
ObjCPropertyImplDecl
>(
6299
if (const
ObjCPropertyImplDecl
*PropImpl =
6300
dyn_cast<
ObjCPropertyImplDecl
>(D))
/src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h
56
class
ObjCPropertyImplDecl
;
2440
void addPropertyImplementation(
ObjCPropertyImplDecl
*property);
2442
ObjCPropertyImplDecl
*FindPropertyImplDecl(IdentifierInfo *propertyId,
2444
ObjCPropertyImplDecl
*FindPropertyImplIvarDecl(IdentifierInfo *ivarId) const;
2447
using propimpl_iterator = specific_decl_iterator<
ObjCPropertyImplDecl
>;
2449
llvm::iterator_range<specific_decl_iterator<
ObjCPropertyImplDecl
>>;
2737
///
ObjCPropertyImplDecl
- Represents implementation declaration of a property
2741
class
ObjCPropertyImplDecl
: public Decl {
2778
ObjCPropertyImplDecl
(DeclContext *DC, SourceLocation atLoc, SourceLocation L,
2791
static
ObjCPropertyImplDecl
*Create(ASTContext &C, DeclContext *DC
[
all
...]
JSONNodeDumper.h
262
void VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D);
TextNodeDumper.h
368
void VisitObjCPropertyImplDecl(const
ObjCPropertyImplDecl
*D);
ASTContext.h
121
class
ObjCPropertyImplDecl
;
1896
ObjCPropertyImplDecl
*getObjCPropertyImplDeclForPropertyDecl(
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp
1423
ObjCPropertyImplDecl
*PIDecl =
1424
ObjCPropertyImplDecl
::Create(Context, CurContext, AtLoc, PropertyLoc,
1427
ObjCPropertyImplDecl
::Synthesize
1428
:
ObjCPropertyImplDecl
::Dynamic),
1560
if (
ObjCPropertyImplDecl
*PPIDecl =
1568
if (
ObjCPropertyImplDecl
*PPIDecl
1599
if (
ObjCPropertyImplDecl
*PPIDecl =
1607
if (
ObjCPropertyImplDecl
*PPIDecl =
1616
if (PIDecl->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic &&
1919
if (
ObjCPropertyImplDecl
*PID
[
all
...]
SemaDeclObjC.cpp
2978
if (PImpl->getPropertyImplementation() !=
ObjCPropertyImplDecl
::Dynamic)
4087
if (const
ObjCPropertyImplDecl
*PIDecl
4091
==
ObjCPropertyImplDecl
::Dynamic)
4837
for (
ObjCPropertyImplDecl
*PropertyImpl : ImpDecl->property_impls()) {
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp
898
const
ObjCPropertyImplDecl
*propImpl);
913
const
ObjCPropertyImplDecl
*propImpl) {
1044
const
ObjCPropertyImplDecl
*PID) {
1056
static bool hasTrivialGetExpr(const
ObjCPropertyImplDecl
*propImpl) {
1112
const
ObjCPropertyImplDecl
*propImpl,
1369
static bool hasTrivialSetExpr(const
ObjCPropertyImplDecl
*PID) {
1401
const
ObjCPropertyImplDecl
*propImpl,
1576
const
ObjCPropertyImplDecl
*PID) {
3660
const
ObjCPropertyImplDecl
*PID) {
3744
const
ObjCPropertyImplDecl
*PID)
[
all
...]
CodeGenFunction.h
73
class
ObjCPropertyImplDecl
;
2047
const
ObjCPropertyImplDecl
*PID);
2049
const
ObjCPropertyImplDecl
*propImpl,
2059
const
ObjCPropertyImplDecl
*PID);
2061
const
ObjCPropertyImplDecl
*propImpl,
2086
const
ObjCPropertyImplDecl
*PID);
2088
const
ObjCPropertyImplDecl
*PID);
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
319
void RewritePropertyImplDecl(
ObjCPropertyImplDecl
*PID,
917
void RewriteModernObjC::RewritePropertyImplDecl(
ObjCPropertyImplDecl
*PID,
935
if (PID->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
7042
if (Prop->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
7292
if (Prop->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
RewriteObjC.cpp
267
void RewritePropertyImplDecl(
ObjCPropertyImplDecl
*PID,
767
void RewriteObjC::RewritePropertyImplDecl(
ObjCPropertyImplDecl
*PID,
781
if (PID->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
5367
if (Prop->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
5645
if (Prop->getPropertyImplementation() ==
ObjCPropertyImplDecl
::Dynamic)
Completed in 57 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026