/external/v8/test/mjsunit/ |
new.js | 28 function Construct(x) { return x; } 30 assertFalse(null == new Construct(null)); 31 assertFalse(void 0 == new Construct(void 0)); 32 assertFalse(0 == new Construct(0)); 33 assertFalse(1 == new Construct(1)); 34 assertFalse(4.2 == new Construct(4.2)); 35 assertFalse('foo' == new Construct('foo')); 36 assertFalse(true == new Construct(true)); 39 assertTrue(x === new Construct(x)); 40 assertFalse(x === new Construct(null)) [all...] |
/external/v8/test/mjsunit/harmony/ |
reflect-construct.js | 9 assertEquals(2, Reflect.construct.length); 15 new Reflect.construct(function(){}, []); 22 assertInstanceof(Reflect.construct(Constructor, []), Constructor); 28 assertInstanceof(Reflect.construct(Constructor, []), Constructor); 35 assertSame(R, Reflect.construct(Constructor, [])); 42 assertSame(R, Reflect.construct(Constructor, [])); 49 var O = Reflect.construct(Constructor, [], Array); 60 var O = Reflect.construct(Constructor, [], Array); 75 var O = Reflect.construct(Array, [1, 2, 3], Constructor); 93 var O = Reflect.construct(Array, [1, 2, 3], Constructor) [all...] |
proxies-construct.js | 61 construct(t, c, args) { 76 construct(target, args, new_target) { 80 return Reflect.construct(target, args, new_target); 91 var instance2 = Reflect.construct(proxy, ['a1', 'b1'], Array); 102 construct(target, args, new_target) { 121 'Array, { construct(target, args, new_target) { return args }} )'); 136 '({ construct(target, args, new_target) {return args} })'); 141 // realm of the Reflect.construct function. 142 var result = Reflect.construct(proxy, argsRealm1); 145 var ReflectConstructRealm1 = Realm.eval(realm1, 'Reflect.construct'); [all...] |
proxies-hash.js | 33 function TestWithProxies(test, construct, handler) { 34 test(construct, handler, function(h) { return new Proxy({}, h) }) 36 // test(construct, handler, function(h) { 44 function TestSet(construct, fix) { 45 TestWithProxies(TestSet2, construct, fix) 48 function TestSet2(construct, fix, create) { 55 var s = new construct(); 81 function TestMap(construct, fix) { 82 TestWithProxies(TestMap2, construct, fix) 85 function TestMap2(construct, fix, create) [all...] |
/external/v8/test/webkit/ |
polymorphic-construct-expected.txt | 29 PASS construct(Foo).field is 'foo' 30 PASS construct(Foo).field is 'foo' 31 PASS construct(Foo).field is 'foo' 32 PASS construct(Foo).field is 'foo' 33 PASS construct(Bar).field is 'bar' 34 PASS construct(Baz).field is 'baz' 35 PASS construct(Foo).field is 'foo' 36 PASS construct(Bar).field is 'bar' 37 PASS construct(Baz).field is 'baz' 38 PASS construct(Foo).field is 'foo [all...] |
polymorphic-construct.js | 40 function construct(what) { function 45 shouldBe("construct(Foo).field", "'foo'"); 49 shouldBe("construct(Foo).field", "'foo'"); 50 shouldBe("construct(Bar).field", "'bar'"); 51 shouldBe("construct(Baz).field", "'baz'");
|
/external/javasqlite/src/main/java/SQLite/ |
Exception.java | 10 * Construct a new SQLite exception.
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
Construct.java | 21 * Provide a way to construct a Java instance out of the composed Node. Support 28 public interface Construct { 30 * Construct a Java instance with all the properties injected when it is 37 Object construct(Node node); method in interface:Construct 47 * <code>construct(Node node)</code> for the provided Node
|
/external/snakeyaml/src/test/java/examples/jodatime/ |
JodaTimeExampleTest.java | 27 import org.yaml.snakeyaml.constructor.Construct; 71 public Object construct(Node nnode) { method in class:JodaTimeExampleTest.JodaPropertyConstructor.TimeStampConstruct 73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP); 74 Date date = (Date) dateConstructor.construct(nnode); 77 return super.construct(nnode); 88 private final Construct javaDateConstruct; 89 private final Construct jodaDateConstruct; 103 public Object construct(Node node) { method in class:JodaTimeExampleTest.JodaTimeConstructor.ConstructJodaTimestamp 104 Date date = (Date) javaDateConstruct.construct(node); 111 public Object construct(Node nnode) method in class:JodaTimeExampleTest.JodaTimeConstructor.TimeStampConstruct [all...] |
/external/v8/test/mjsunit/compiler/ |
alloc-object.js | 28 // Flags: --allow-natives-syntax --inline-construct 34 function test_helper(construct, a, b) { 35 return new construct(a, b); 38 function test(construct) { 40 test_helper(construct, 0, 0); 41 test_helper(construct, 0, 0); 44 var o = test_helper(construct, 1, 2); 50 construct.prototype = { z:6 }; 51 var o = test_helper(construct, 4, 5); 59 function finalize_slack_tracking(construct) { 48 construct.prototype = { z:6 }; class [all...] |
/external/libxml2/result/errors/ |
attr1.xml.str | 4 ./test/errors/attr1.xml:2: parser error : attributes construct error
|
attr2.xml.str | 4 ./test/errors/attr2.xml:2: parser error : attributes construct error
|
attr4.xml.str | 4 ./test/errors/attr4.xml:1: parser error : attributes construct error
|
name2.xml.str | 4 ./test/errors/name2.xml:2: parser error : attributes construct error
|
/external/snakeyaml/src/test/java/examples/ |
IgnoreTagsExampleTest.java | 26 import org.yaml.snakeyaml.constructor.Construct; 56 private Construct original; 64 public Object construct(Node node) { method in class:IgnoreTagsExampleTest.MyConstructor.IgnoringConstruct 66 return original.construct(node); 70 return yamlConstructors.get(Tag.STR).construct(node); 72 return yamlConstructors.get(Tag.SEQ).construct(node); 74 return yamlConstructors.get(Tag.MAP).construct(node);
|
/external/junit/src/org/junit/runners/model/ |
InitializationError.java | 14 * Construct a new {@code InitializationError} with one or more 26 * Construct a new {@code InitializationError} with one cause
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
stabs1.s | 22 ;# This is the stabs construct that was barfed upon; BFD for 23 ;# a.out expects it to be of two parts, like the construct at
|
warn1.d | 9 # missing from the construct.
|
warn2.d | 9 # missing from the construct.
|
warn4.d | 11 # warning construct.
|
/external/clang/test/CodeGenCXX/ |
const-base-cast.cpp | 3 // Check that the following construct, which is similar to one which occurs
|
/external/v8/test/mjsunit/es6/ |
classes-proxy.js | 21 var o = Reflect.construct(Number, [100], proxy); 37 var o = Reflect.construct(Number, [100], proxy); 53 var o = Reflect.construct(Function, ["return 1000"], proxy); 69 var o = Reflect.construct(Array, [1, 2, 3], proxy);
|
/external/zlib/src/contrib/iostream/ |
test.cpp | 6 // Construct a stream object with this filebuffer. Anything sent
|
/external/llvm/include/llvm/ADT/ |
ArrayRef.h | 51 /// Construct an empty ArrayRef. 54 /// Construct an empty ArrayRef from None. 57 /// Construct an ArrayRef from a single element. 61 /// Construct an ArrayRef from a pointer and length. 65 /// Construct an ArrayRef from a range. 69 /// Construct an ArrayRef from a SmallVector. This is templated in order to 71 /// copy-construct an ArrayRef. 77 /// Construct an ArrayRef from a std::vector. 82 /// Construct an ArrayRef from a C array. 87 /// Construct an ArrayRef from a std::initializer_list [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/ |
InvalidRepresentationException.java | 38 * Construct an InvalidRepresentationException 46 * Construct an InvalidRepresentationException 54 * Construct an InvalidRepresentationException
|