HomeSort by: relevance | last modified time | path
    Searched refs:Synthesize (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp 10 // @synthesize declarations.
1075 /// as \@synthesize or \@dynamic.
1080 bool Synthesize,
1105 // We always synthesize an interface for an implementation
1116 if (property->isClassProperty() && Synthesize) {
1138 if (Synthesize && (PIkind & ObjCPropertyAttribute::kind_readonly) &&
1169 if (Synthesize && isa<ObjCProtocolDecl>(property->getDeclContext()))
1174 if (Synthesize) {
1204 // Check that we have a valid, previously declared ivar for @synthesize
1205 if (Synthesize) {
    [all...]
SemaCodeComplete.cpp 3923 case ObjCPropertyImplDecl::Synthesize:
6520 // @synthesize
6521 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "synthesize"));
8046 // Figure out where this @synthesize lives.
8085 // Figure out where this @synthesize lives.
8148 // Create ivar result _propName, that the user can use to synthesize
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 117 ObjCPropertyImplDecl::Synthesize) {
TransProperties.cpp 108 if (implD->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp 446 // Visit implicit @synthesize property implementations first as their
541 assert(D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize);
555 // corresponding @synthesize. If there isn't one, use the containing
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 72 if (I->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
84 // Shouldn't be able to synthesize a property that doesn't exist.
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 769 // Synthesize ivar for this property
2739 /// \@synthesize prop1 = ivar1;
2744 Synthesize,
2749 SourceLocation AtLoc; // location of \@synthesize or \@dynamic
2751 /// For \@synthesize, the location of the ivar, if it was written in
2755 /// \@synthesize int a = b
2762 /// Null for \@dynamic. Required for \@synthesize.
2811 return PropertyIvarDecl ? Synthesize : Dynamic;
2825 /// For \@synthesize, returns true if an ivar name was explicitly
2829 /// \@synthesize int a = b; // tru
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclPrinter.cpp 1583 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
1584 Out << "@synthesize ";
JSONNodeDumper.cpp 1048 ObjCPropertyImplDecl::Synthesize
1049 ? "synthesize"
TextNodeDumper.cpp 2128 OS << " synthesize";
2268 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize)
2269 OS << " synthesize";
ASTImporter.cpp 5183 // Import the ivar (for an @synthesize).
5211 // Check that we have the same kind of property implementation (@synthesize
5227 // For @synthesize, check that we have the same
5228 if (D->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize &&
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 1896 ObjCPropertyImplDecl::Synthesize) {
3380 ObjCPropertyImplDecl::Synthesize);
CodeGenModule.cpp 5543 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
5770 // Categories have properties but don't support synthesize so we
CGObjCMac.cpp 2180 // Direct methods will synthesize the proper `_cmd` internally,
3610 if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) {
4168 // only synthesize _cmd if it's referenced
5148 // A flag indicating that the module has no instances of a @synthesize of a

Completed in 106 milliseconds