/external/v8/test/mjsunit/compiler/ |
D | alloc-object.js | 34 function test_helper(construct, a, b) { argument 35 return new construct(a, b); 38 function test(construct) { argument 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 }; class 51 var o = test_helper(construct, 4, 5); 59 function finalize_slack_tracking(construct) { argument 62 new construct(0, 0);
|
D | division-by-constant.js | 104 function TestDivisionLike(ref, construct, values, divisor) { argument 106 var OptFun = new Function("dividend", construct(divisor)); 122 function Test(ref, construct) { argument 125 TestDivisionLike(ref, construct, values, divisor);
|
/external/v8/test/mjsunit/harmony/ |
D | proxies-hash.js | 33 function TestWithProxies(test, construct, handler) { argument 34 test(construct, handler, Proxy.create) 35 test(construct, handler, function(h) { 43 function TestSet(construct, fix) { argument 44 TestWithProxies(TestSet2, construct, fix) 47 function TestSet2(construct, fix, create) { argument 54 var s = new construct(); 80 function TestMap(construct, fix) { argument 81 TestWithProxies(TestMap2, construct, fix) 84 function TestMap2(construct, fix, create) { argument [all …]
|
/external/v8/test/webkit/ |
D | 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 …]
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/ |
D | construct.pass.cpp | 41 void construct(U* p, Args&& ...args) in construct() function 89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main() 97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c'); in main() 105 std::allocator_traits<A<int> >::construct(a, (A2*)&a2, 'd', 5); in main() 116 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); in main() 127 std::allocator_traits<B<int> >::construct(b, (A1*)&a1, 'c'); in main() 138 std::allocator_traits<B<int> >::construct(b, (A2*)&a2, 'd', 5); in main()
|
D | destroy.pass.cpp | 61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0); in main() 72 std::allocator_traits<B<int> >::construct(b, (A0*)&a0); in main()
|
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/ |
D | construct.pass.cpp | 75 a.construct(ap); in main() 83 a.construct(ap, A()); in main() 91 a.construct(ap, 5); in main() 99 a.construct(ap, 5, (int*)0); in main() 122 a.construct(ap); in main() 130 a.construct(ap, move_only()); in main()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableSet.java | 105 return construct(2, e1, e2); in of() 116 return construct(3, e1, e2, e3); in of() 127 return construct(4, e1, e2, e3, e4); in of() 138 return construct(5, e1, e2, e3, e4, e5); in of() 160 return construct(elements.length, elements); in of() 178 private static <E> ImmutableSet<E> construct(int n, Object... elements) { in construct() method in ImmutableSet 220 return construct(uniques, elements); in construct() 278 return construct(elements.length, elements.clone()); 375 return construct(array.length, array); 531 ImmutableSet<E> result = construct(size, contents);
|
D | ImmutableList.java | 98 return construct(e1, e2); in of() 107 return construct(e1, e2, e3); in of() 116 return construct(e1, e2, e3, e4); in of() 125 return construct(e1, e2, e3, e4, e5); in of() 134 return construct(e1, e2, e3, e4, e5, e6); in of() 144 return construct(e1, e2, e3, e4, e5, e6, e7); in of() 154 return construct(e1, e2, e3, e4, e5, e6, e7, e8); in of() 164 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9); in of() 174 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10); in of() 184 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11); in of() [all …]
|
D | ImmutableSortedSet.java | 142 return construct(Ordering.natural(), 2, e1, e2); in of() 155 return construct(Ordering.natural(), 3, e1, e2, e3); in of() 168 return construct(Ordering.natural(), 4, e1, e2, e3, e4); in of() 181 return construct(Ordering.natural(), 5, e1, e2, e3, e4, e5); in of() 203 return construct(Ordering.natural(), contents.length, (E[]) contents); in of() 218 return construct(Ordering.natural(), elements.length, elements.clone()); in copyOf() 356 return construct(comparator, array.length, array); in copyOf() 421 static <E> ImmutableSortedSet<E> construct( in construct() method in ImmutableSortedSet 561 ImmutableSortedSet<E> result = construct(comparator, size, contentsArray); in build()
|
/external/eigen/Eigen/src/Core/ |
D | Ref.h | 161 void construct(Expression& expr) 204 Base::construct(expr.derived()); 216 Base::construct(expr.const_cast_derived()); 239 construct(expr.derived(), typename Traits::template match<Derived>::type()); 245 void construct(const Expression& expr,internal::true_type) 247 Base::construct(expr); 251 void construct(const Expression& expr, internal::false_type) 254 Base::construct(m_object);
|
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/ |
D | construct.pass.cpp | 126 a.construct(s, 4, 'c'); in main() 137 a.construct(s, 6); in main() 148 a.construct(s, 8); in main() 159 a.construct(s, 1, 2); in main() 172 a.construct(s, 1, 2); in main() 186 a.construct(s, 1, 2); in main()
|
D | destroy.pass.cpp | 44 a.construct(s); in main() 59 a.construct(s); in main()
|
/external/v8/test/mjsunit/regress/ |
D | regress-1229.js | 140 var construct = new baz(0); 141 assertSame(construct, CONSTRUCT_MARKER); 142 var construct = new baz(0, 0); 143 assertSame(construct, CONSTRUCT_MARKER);
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/ |
D | ASTTreeParser.stg | 84 /** ID auto construct */ 103 /** label+=TOKEN auto construct */ 109 /** ^(ID ...) auto construct */ 125 /** Match ^(label+=TOKEN ...) auto construct */ 178 /** rule auto construct */ 190 /** x+=rule auto construct */ 196 /** ^(rule ...) auto construct */ 205 /** ^(x+=rule ...) auto construct */
|
/external/zlib/src/contrib/puff/ |
D | puff.c | 340 local int construct(struct huffman *h, const short *length, int n) in construct() function 563 construct(&lencode, lengths, FIXLCODES); in fixed() 568 construct(&distcode, lengths, MAXDCODES); in fixed() 697 err = construct(&lencode, lengths, 19); in dynamic() 736 err = construct(&lencode, lengths, nlen); in dynamic() 741 err = construct(&distcode, lengths + nlen, ndist); in dynamic()
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/ |
D | ASTTreeParser.stg | 113 /** ID auto construct */ 132 /** label+=TOKEN auto construct */ 138 /** ^(ID ...) auto construct */ 154 /** Match ^(label+=TOKEN ...) auto construct */ 207 /** rule auto construct */ 219 /** x+=rule auto construct */ 225 /** ^(rule ...) auto construct */ 234 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
D | ASTTreeParser.stg | 122 /** ID auto construct */ 143 /** label+=TOKEN auto construct */ 149 /** ^(ID ...) auto construct */ 165 /** Match ^(label+=TOKEN ...) auto construct */ 232 /** rule auto construct */ 246 /** x+=rule auto construct */ 252 /** ^(rule ...) auto construct */ 263 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
D | ASTTreeParser.stg | 112 /** ID auto construct */ 131 /** label+=TOKEN auto construct */ 137 /** ^(ID ...) auto construct */ 153 /** Match ^(label+=TOKEN ...) auto construct */ 221 /** rule auto construct */ 233 /** x+=rule auto construct */ 239 /** ^(rule ...) auto construct */ 248 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
D | ASTTreeParser.stg | 111 /** ID auto construct */ 130 /** label+=TOKEN auto construct */ 136 /** ^(ID ...) auto construct */ 152 /** Match ^(label+=TOKEN ...) auto construct */ 220 /** rule auto construct */ 232 /** x+=rule auto construct */ 238 /** ^(rule ...) auto construct */ 247 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
D | ASTTreeParser.stg | 123 /** ID auto construct */ 147 /** label+=TOKEN auto construct */ 153 /** ^(ID ...) auto construct */ 174 /** Match ^(label+=TOKEN ...) auto construct */ 227 /** rule auto construct */ 239 /** x+=rule auto construct */ 245 /** ^(rule ...) auto construct */ 254 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
D | ASTTreeParser.stg | 128 /** ID auto construct */ 148 /** label+=TOKEN auto construct */ 154 /** ^(ID ...) auto construct */ 170 /** Match ^(label+=TOKEN ...) auto construct */ 238 /** rule auto construct */ 253 /** x+=rule auto construct */ 259 /** ^(rule ...) auto construct */ 268 /** ^(x+=rule ...) auto construct */
|
/external/libcxx/include/ |
D | scoped_allocator | 73 template <class T, class... Args> void construct(T* p, Args&& args); 75 void construct(pair<T1, T2>* p, piecewise_construct t, tuple<Args1...> x, 78 void construct(pair<T1, T2>* p); 80 void construct(pair<T1, T2>* p, U&& x, V&& y); 82 void construct(pair<T1, T2>* p, const pair<U, V>& x); 84 void construct(pair<T1, T2>* p, pair<U, V>&& x); 474 void construct(_Tp* __p, _Args&& ...__args) 506 allocator_traits<typename _OM::type>::construct 519 allocator_traits<typename _OM::type>::construct 534 allocator_traits<typename _OM::type>::construct
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
D | ASTTreeParser.stg | 158 /** ID auto construct */ 178 /** label+=TOKEN auto construct */ 185 /** ^(ID ...) auto construct */ 202 /** Match ^(label+=TOKEN ...) auto construct */ 276 /** rule auto construct */ 289 /** x+=rule auto construct */ 297 /** ^(rule ...) auto construct */ 308 /** ^(x+=rule ...) auto construct */
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
D | ASTTreeParser.stg | 114 /** ID auto construct */ 133 /** label+=TOKEN auto construct */ 139 /** ^(ID ...) auto construct */ 155 /** Match ^(label+=TOKEN ...) auto construct */ 223 /** rule auto construct */ 235 /** x+=rule auto construct */ 241 /** ^(rule ...) auto construct */ 250 /** ^(x+=rule ...) auto construct */
|