OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:property2
(Results
1 - 7
of
7
) sorted by null
/external/v8/test/webkit/
Object-defineProperties.js
29
shouldBe("JSON.stringify(Object.defineProperties({},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}}))", '\'{"property":"foo","
property2
":"foo"}\'');
30
shouldBe("JSON.stringify(Object.defineProperties({},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}}))", '\'{"
property2
":"foo"}\'');
31
shouldBe("JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}}))", '\'{"property":"foo","
property2
":"foo"}\'');
32
shouldBe("JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:false},
property2
:{value:'foo', enumerable:true}}))", '\'{"
property2
":"foo"}\'');
33
shouldBe("JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}}))", '\'{"property":"foo","
property2
":"foo"}\'')
[
all
...]
Object-defineProperties-expected.txt
32
PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}})) is '{"property":"foo","
property2
":"foo"}'
33
PASS JSON.stringify(Object.defineProperties({},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}})) is '{"
property2
":"foo"}'
34
PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}})) is '{"property":"foo","
property2
":"foo"}'
35
PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo', enumerable:false},
property2
:{value:'foo', enumerable:true}})) is '{"
property2
":"foo"}'
36
PASS JSON.stringify(Object.defineProperties({property:'foo'},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}})) is '{"property":"foo","
property2
":"foo"}
[
all
...]
Object-create-expected.txt
33
PASS JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}})) is '{"property":"foo","
property2
":"foo"}'
34
PASS JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}})) is '{"property":"foo","
property2
":"foo"}'
35
PASS JSON.stringify(Object.create({},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}})) is '{"
property2
":"foo"}'
36
PASS JSON.stringify(Object.create(null,{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}})) is '{"
property2
":"foo"}'
Object-create.js
30
shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}}))", '\'{"property":"foo","
property2
":"foo"}\'');
31
shouldBe("JSON.stringify(Object.create({},{property:{value:'foo', enumerable:true},
property2
:{value:'foo', enumerable:true}}))", '\'{"property":"foo","
property2
":"foo"}\'');
32
shouldBe("JSON.stringify(Object.create({},{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}}))", '\'{"
property2
":"foo"}\'');
33
shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo'},
property2
:{value:'foo', enumerable:true}}))", '\'{"
property2
":"foo"}\'');
/external/clang/test/ASTMerge/
property.m
2
// RUN: %clang_cc1 -emit-pch -o %t.2.ast %S/Inputs/
property2
.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')
10
// CHECK:
property2
.m:29:21: note: property is synthesized to ivar 'ivar2' here
12
// CHECK:
property2
.m:31:13: note: property 'Prop3' is implemented with @synthesize here
/external/clang/test/SemaObjC/
default-synthesize-3.m
68
@property char
Property2
;
76
@synthesize
Property2
= Property1; // expected-note {{property synthesized here}}
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java
[
all
...]
Completed in 685 milliseconds