/external/clang/test/ASTMerge/Inputs/ |
property1.m | 10 @property (readonly) float Prop1; 20 @property int Prop1; 27 @synthesize Prop1 = ivar1;
|
property2.m | 6 @property (readonly) int Prop1; 12 @property (readonly) int Prop1; 22 @property int Prop1; 30 @synthesize Prop1 = ivar1;
|
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/test_json/ |
ref_test_data_source.json | 12 { "name": "prop1" }
|
/external/clang/test/SemaObjC/ |
synth-provisional-ivars.m | 10 @property int PROP1; 23 @dynamic PROP1; 24 - (int) Meth1 { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}} 43 - (int) Meth { return PROP1; } // expected-error {{use of undeclared identifier 'PROP1'}}
|
objc-buffered-methods.m | 10 @property int prop1; 25 @synthesize prop1=global;
|
iboutletcollection-attr.m | 13 @property (nonatomic, retain) __attribute__((iboutletcollection(I))) id prop1; 28 @property (nonatomic, retain) __attribute__((iboutletcollection(I,2,3))) id prop1; // expected-error {{expected ')'}} expected-note {{to match}}
|
default-synthesize-3.m | 94 @property (readonly) id prop1; 108 @property (assign,readwrite) id prop1;
|
property-10.m | 37 @property(nonatomic,copy) int (*PROP1)(); // expected-error {{property with 'copy' attribute must be of object type}}
|
/external/clang/test/FixIt/ |
atomic-property.m | 9 @property ( ) id prop1; 17 @synthesize prop, prop1, prop2; 20 - (id) prop1 { return 0; }
|
/external/chromium_org/chrome/browser/chromeos/power/ |
power_data_collector_unittest.cc | 37 power_manager::PowerSupplyProperties prop1, prop2; local 39 prop1.set_external_power(power_manager::PowerSupplyProperties::DISCONNECTED); 40 prop1.set_battery_percent(20.00); 41 power_data_collector_->PowerChanged(prop1); 45 EXPECT_DOUBLE_EQ(prop1.battery_percent(), data1[0].battery_percent);
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
ICalendarTest.java | 15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1"); 27 assertEquals("prop1;param1=foo;param1=bar;param1=quux;" 35 "prop1:value1\n" + 36 "prop1:value2\n" + 42 component.addProperty(new ICalendar.Property("prop1", "value1")); 43 component.addProperty(new ICalendar.Property("prop1", "value2")); 50 "prop1:value1\n" + 51 "prop1:value12\n" + 62 parent.addProperty(new ICalendar.Property("prop1", "value1")); 63 parent.addProperty(new ICalendar.Property("prop1", "value12")) 80 ICalendar.Property prop1 = component.getFirstProperty("PROP1"); local [all...] |
/external/clang/test/ASTMerge/ |
property.m | 5 // CHECK: property2.m:12:26: error: property 'Prop1' declared with incompatible types in different translation units ('int' vs. 'float') 7 // CHECK: property2.m:12:26: error: instance method 'Prop1' has incompatible result types in different translation units ('int' vs. 'float') 8 // CHECK: property1.m:10:28: note: instance method 'Prop1' also declared here
|
/external/clang/test/Index/ |
complete-member-access.m | 17 @property int prop1; 21 ptr.prop1 = 0; 46 // CHECK-CC1: ObjCPropertyDecl:{ResultType int}{TypedText prop1} 64 // CHECK-CC3: ObjCPropertyDecl:{ResultType int}{TypedText prop1} (35) 75 // CHECK-CC4-NEXT: ObjCPropertyDecl:{ResultType int}{TypedText prop1} (35)
|
complete-properties.m | 10 @property int Prop1; 20 @synthesize Prop2, Prop1, Prop3 = StoredProp3; 37 I4 *Prop1; 61 // CHECK-CC1: ObjCPropertyDecl:{ResultType int}{TypedText Prop1} 67 // CHECK-CC2: ObjCPropertyDecl:{ResultType int}{TypedText Prop1} 81 // CHECK-CC5-NEXT: ObjCPropertyDecl:{ResultType int}{TypedText Prop1} (35) 92 // CHECK-CC7: ObjCIvarDecl:{ResultType I4 *}{TypedText Prop1} (17)
|
get-cursor.m | 73 id prop1; 76 @property (assign) id prop1; 83 @synthesize prop1, prop2; 95 @property (assign) id prop1; 99 @synthesize prop1 = _prop1; 153 // CHECK-MULTISYNTH: 83:13 ObjCSynthesizeDecl=prop1:76:23 (Definition) Extent=[83:1 - 83:18] Spelling=prop1 ([83:13 - 83:18]) 157 // CHECK-MULTISYNTH: 99:13 ObjCSynthesizeDecl=prop1:95:23 (Definition) Extent=[99:1 - 99:27] Spelling=prop1 ([99:13 - 99:18])
|
complete-synthesized.m | 6 @property int prop1;
|
overrides.m | 59 @property (readonly) id prop1; 65 @property (readwrite) id prop1; 109 // CHECK: overrides.m:65:26: ObjCInstanceMethodDecl=prop1:65:26 [Overrides @59:25] Extent=[65:26 - 65:31]
|
/external/chromium_org/content/test/data/indexeddb/ |
bug_109187.js | 17 window.index1 = store.createIndex('index1Name', 'prop1');
|
/external/clang/test/CodeGenObjCXX/ |
property-reference.mm | 38 @property (nonatomic) const test1::A &prop1; 41 @synthesize prop1 = ivar; 43 // CHECK: define internal nonnull [[A:%.*]]* @"\01-[Test1 prop1]"(
|
/external/clang/test/PCH/ |
chain-categories2.m | 17 @property (readonly) id prop1; 40 @property (readwrite,assign) id prop1; 54 @synthesize prop1, prop2;
|
/external/clang/test/CodeGenObjC/ |
interface-layout-64.m | 66 @property int prop1; 72 @synthesize prop1 = _iv7_synth;
|
/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/chrome/common/extensions/docs/server2/test_data/api_data_source/ |
canned_trunk_fs.py | 128 'prop1': {
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
array-find.js | 160 prop1: "val1", 163 return this.prop1 === "val1" && this.prop2 === "val2";
|