/external/clang/test/ASTMerge/Inputs/ |
property2.m | 7 @property (getter = getProp2, setter = setProp2:) int Prop2; 23 @property int Prop2; 29 @synthesize Prop2 = ivar2;
|
property1.m | 21 @property int Prop2; 28 @synthesize Prop2 = ivar3;
|
/external/clang/test/FixIt/ |
atomic-property.m | 13 @property (copy, readwrite) id prop2; 17 @synthesize prop, prop1, prop2; 21 - (id) prop2 { return 0; }
|
/external/clang/test/SemaObjC/ |
synth-provisional-ivars.m | 11 @property int PROP2; 26 - (int) Meth2 { return PROP2; } // expected-error {{use of undeclared identifier 'PROP2'}} 27 @dynamic PROP2;
|
iboutletcollection-attr.m | 14 @property (nonatomic, retain) __attribute__((iboutletcollection(id))) id prop2; 29 @property (nonatomic, retain) __attribute__((iboutletcollection(B))) id prop2; // expected-error {{invalid type 'B' as argument of iboutletcollection attribute}}
|
default-synthesize-3.m | 95 @property (readonly) id prop2; 103 @property (readwrite) id prop2; 109 @property (assign,readwrite) id prop2;
|
property-10.m | 38 @property(nonatomic,weak) int (*PROP2)(); // expected-error {{property with 'weak' attribute must be of object type}}
|
/external/clang/test/Index/ |
complete-synthesized.m | 12 @property float prop2; 21 @synthesize prop2 = _prop2; 44 // CHECK-NOT: prop2
|
complete-properties.m | 11 @property float Prop2; 20 @synthesize Prop2, Prop1, Prop3 = StoredProp3; 33 @property id Prop2; 45 @synthesize Prop2 = Prop2_; 62 // CHECK-CC1: ObjCPropertyDecl:{ResultType float}{TypedText Prop2} 82 // CHECK-CC5-NEXT: ObjCPropertyDecl:{ResultType float}{TypedText Prop2} (35)
|
overrides.m | 60 @property (readonly) id prop2; 70 @property (readwrite) id prop2; 111 // CHECK: overrides.m:70:26: ObjCInstanceMethodDecl=prop2:70:26 [Overrides @60:25] Extent=[70:26 - 70:31]
|
get-cursor.m | 74 id prop2; 77 @property (assign) id prop2; 83 @synthesize prop1, prop2; 154 // CHECK-MULTISYNTH: 83:20 ObjCSynthesizeDecl=prop2:77:23 (Definition) Extent=[83:1 - 83:25] Spelling=prop2 ([83:20 - 83:25])
|
/external/chromium_org/content/test/data/indexeddb/ |
bug_109187.js | 19 'index2Name', 'prop2', {multiEntry: true});
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
ICalendarTest.java | 34 "prop2:value3\n" + 41 component.addProperty(new ICalendar.Property("prop2", "value3")); 53 "prop2:value2\n" + 60 child.addProperty(new ICalendar.Property("prop2", "value2")); 72 "PROP2:VALUE3\n" + 139 "PROP2:VALUE3\n" +
|
/external/clang/test/CodeGenObjC/ |
interface-layout-64.m | 67 @property char prop2; 73 @synthesize prop2 = _iv5;
|
/external/clang/test/PCH/ |
chain-categories2.m | 41 @property (copy) id prop2; 54 @synthesize prop1, prop2;
|
/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/chromium_org/third_party/WebKit/ManualTests/inspector/ |
console-log-formatting.html | 6 var o = { prop1: 1, prop2: 2 };
|
/external/chromium_org/v8/test/mjsunit/ |
object-freeze.js | 214 obj = { prop1: 1, prop2: 2 }; 215 obj2 = { prop1: 3, prop2: 4 }; 224 obj = { prop1: 1, prop2: 2, 75: 'foo' }; 225 obj2 = { prop1: 3, prop2: 4, 150: 'bar' };
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
array-find.js | 161 prop2: "val2", 163 return this.prop1 === "val1" && this.prop2 === "val2";
|
array-findindex.js | 162 prop2: "val2", 164 return this.prop1 === "val1" && this.prop2 === "val2";
|
/external/clang/test/Analysis/ |
objc_invalidation.m | 99 @property (assign) SomeInvalidationImplementingObject* Prop2; 149 - (SomeInvalidationImplementingObject*) Prop2 {
|
/build/ |
buildspec.mk.default | 86 # E.g., "ADDITIONAL_BUILD_PROPERTIES += ro.prop1=5 prop2=value"
|
/external/chromium_org/third_party/libxml/src/ |
testXPath.c | 56 <EXAMPLE prop1=\"gnome is great\" prop2=\"& linux too\">\n\
|
/external/clang/include/clang/Sema/ |
ScopeInfo.h | 143 /// self.prop1.prop2 | prop1 (ObjCPropertyDecl) | prop2 (ObjCPropertyDecl) 191 /// properties or ivars of 'self' (e.g. self.prop1.prop2) are considered to 193 /// (foo.prop1.prop2).
|
/external/v8/test/cctest/ |
test-log.cc | 427 inst->SetAccessor(v8_str("prop2"), Prop2Getter); 452 "code-creation,Callback,0x%" V8PRIxPTR ",1,\"get prop2\"",
|