HomeSort by relevance Sort by last modified time
    Searched full:ivars (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/clang/test/SemaObjC/
property-and-class-extension.m 4 When processing @synthesize, treat ivars in a class extension the same as ivars in the class @interface,
5 and treat ivars in a superclass extension the same as ivars in the superclass @interface.
6 In particular, when searching for an ivar to back an @synthesize, do look at ivars in the class's own class
7 extension but ignore any ivars in superclass class extensions.
stand-alone-implementation.m 3 // Allow injection of ivars into implementation's implicit class.
no-ivar-in-interface-block.m 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class -Wobjc-interface-ivars %s
ivar-ref-misuse.m 28 ((Sprite *)self)->spree = 18; /* ivars from within class methods! */
  /external/lldb/test/lang/objc/blocks/
Makefile 3 OBJC_SOURCES := ivars-in-blocks.m main.m
main.m 1 #import "ivars-in-blocks.h"
ivars-in-blocks.m 1 #import "ivars-in-blocks.h"
TestObjCIvarsInBlocks.py 1 """Test printing ivars and ObjC objects captured in blocks that are made in methods of an ObjC class."""
19 """Test printing the ivars of the self when captured in blocks"""
29 """Test printing the ivars of the self when captured in blocks"""
38 self.class_source = "ivars-in-blocks.m"
42 """Test printing the ivars of the self when captured in blocks"""
  /external/clang/test/CodeGenObjC/
debug-info-ivars-extension.m 3 // Make sure we generate debug symbols for ivars added by a class extension.
12 // poking into pi for primary class ivars.
23 // poking into pg for ivars for class extension
debug-info-ivars-private.m 3 // Debug symbols for private ivars. This test ensures that we are
4 // generating debug info for ivars added by the implementation.
stand-alone-implementation.m 4 // Allow injection of ivars into implementation's implicit class.
metadata-symbols-32.m 30 // Clang's Obj-C 32-bit doesn't emit ivars for the root class.
  /external/lldb/test/lang/objc/objc++/
TestObjCXX.py 2 Make sure that ivars of Objective-C++ classes are visible in LLDB.
17 """Test ivars of Objective-C++ classes"""
26 """Test ivars of Objective-C++ classes"""
33 """Test ivars of Objective-C++ classes"""
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 21 // the ivars or call another invalidation method (on self).
23 // Partial invalidor annotation allows to addess cases when ivars are
26 // method and all the partial methods cumulatively invalidate all ivars.
50 /// Check that all ivars are invalidated.
100 /// Statement visitor, which walks the method body and flags the ivars
103 /// The set of Ivars which need to be invalidated.
104 IvarSet &IVars;
155 : IVars(InIVars),
192 /// Given the property declaration, and the list of tracked ivars, finds
313 // We only track the ivars/properties that are defined in the current
    [all...]
ObjCUnusedIVarsChecker.cpp 1 //==- ObjCUnusedIVarsChecker.cpp - Check for unused ivars --------*- C++ -*-==//
12 // has any ivars that are never accessed.
114 // Iterate over the ivars.
115 for (const auto *Ivar : ID->ivars()) {
116 // Ignore ivars that...
136 // Any potentially unused ivars?
147 // We found some potentially unused ivars. Scan the entire translation unit
148 // for functions inside the @implementation that reference these ivars.
155 // Find ivars that are unused.
DirectIvarAssignment.cpp 17 // The checker does not warn about assignments to Ivars, annotated with
20 // checker. The annotation is allowed on properties and Ivars.
59 /// A helper class, which walks the AST and locates all assignments to ivars
99 // Check for synthesized ivars.
181 // Skip warnings on Ivars, annotated with
184 // annotation is allowed on properties and ivars.
CheckObjCDealloc.cpp 109 // Does the class contain any ivars that are pointers (or id<...>)?
116 for (const auto *Ivar : ID->ivars()) {
209 // Scan for missing and extra releases of ivars used by implementations
221 if (!T->isObjCObjectPointerType()) // Skip non-pointer ivars
228 // ivars cannot be set via read-only properties, so we'll skip them
  /external/lldb/test/lang/objc/rdar-11355592/
main.m 5 int32_t value_one; // ivars needed to make 32-bit happy
  /external/lldb/test/lang/objc/objc-ivar-stripped/
TestObjCIvarStripped.py 17 """Test that we can find stripped Objective-C ivars in the runtime"""
29 """Test that we can find stripped Objective-C ivars in the runtime"""
  /external/lldb/test/lang/objc/hidden-ivars/
TestHiddenIvars.py 1 """Test that hidden ivars in a shared library are visible from the main executable."""
11 mydir = os.path.join("lang", "objc", "hidden-ivars")
  /external/clang/test/ASTMerge/
property.m 9 // CHECK: property1.m:28:21: error: property 'Prop2' is synthesized to different ivars in different translation units ('ivar3' vs. 'ivar2')
  /external/clang/tools/libclang/
IndexDecl.cpp 167 // Index the ivars first to make sure the synthesized ivars are indexed
169 for (const auto *IvarI : D->ivars())
  /external/chromium_org/chrome/browser/ui/cocoa/
ui_localizer.mm 45 // The ivars are private, so this method lets us trigger the localization
  /external/clang/test/Analysis/
MissingDealloc.m 34 // Don't warn about iVars that are selectors.
55 // Don't warn about iVars that are IBOutlets.
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 393 SmallVectorImpl<ObjCIvarDecl *> &IVars);
    [all...]

Completed in 1328 milliseconds

1 2 3 4