HomeSort by relevance Sort by last modified time
    Searched refs:construct (Results 1 - 25 of 456) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
construct.pass.cpp 16 // static void construct(allocator_type& a, Ptr p, Args&&... args);
41 void construct(U* p, Args&& ...args) function in struct:B
89 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
97 std::allocator_traits<A<int> >::construct(a, (A1*)&a1, 'c');
105 std::allocator_traits<A<int> >::construct(a, (A2*)&a2, 'd', 5);
116 std::allocator_traits<B<int> >::construct(b, (A0*)&a0);
127 std::allocator_traits<B<int> >::construct(b, (A1*)&a1, 'c');
138 std::allocator_traits<B<int> >::construct(b, (A2*)&a2, 'd', 5);
destroy.pass.cpp 61 std::allocator_traits<A<int> >::construct(a, (A0*)&a0);
72 std::allocator_traits<B<int> >::construct(b, (A0*)&a0);
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 65 m_pTestee->construct(pointer);
75 m_pTestee->construct(pointer, data);
85 m_pTestee->construct(pointer);
95 m_pTestee->construct(pointer, data);
106 m_pTestee->construct(pointer);
124 m_pTestee->construct(pointer);
RTLinearAllocatorTest.cpp 66 m_pTestee->construct(pointer);
76 m_pTestee->construct(pointer, data);
86 m_pTestee->construct(pointer);
96 m_pTestee->construct(pointer, data);
107 m_pTestee->construct(pointer);
125 m_pTestee->construct(pointer);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 13 // template <class... Args> void construct(pointer p, Args&&... args);
88 a.construct(ap);
96 a.construct(ap, A());
104 a.construct(ap, 5);
112 a.construct(ap, 5, (int*)0);
133 a.construct(ap);
141 a.construct(ap, move_only());
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidURITest.java 26 construct("http://www.google.com/this/is-the/path?query#fragment",
30 private static void construct(String str, String host, String path, boolean absolute) method in class:OldAndroidURITest
  /external/chromium_org/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/chromium_org/v8/test/mjsunit/harmony/
proxies-hash.js 33 function TestWithProxies(test, construct, handler) {
34 test(construct, handler, Proxy.create)
35 test(construct, handler, function(h) {
43 function TestSet(construct, fix) {
44 TestWithProxies(TestSet2, construct, fix)
47 function TestSet2(construct, fix, create) {
54 var s = new construct();
80 function TestMap(construct, fix) {
81 TestWithProxies(TestMap2, construct, fix)
84 function TestMap2(construct, fix, create)
    [all...]
  /external/v8/test/mjsunit/compiler/
alloc-object.js 28 // Flags: --allow-natives-syntax --expose-gc --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/v8/test/mjsunit/harmony/
proxies-hash.js 33 function TestWithProxies(test, construct, handler) {
34 test(construct, handler, Proxy.create)
35 test(construct, handler, function(h) {
43 function TestSet(construct, fix) {
44 TestWithProxies(TestSet2, construct, fix)
47 function TestSet2(construct, fix, create) {
54 var s = construct();
80 function TestMap(construct, fix) {
81 TestWithProxies(TestMap2, construct, fix)
84 function TestMap2(construct, fix, create)
    [all...]
  /external/chromium_org/v8/test/webkit/
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/chromium_org/third_party/WebKit/Source/core/svg/
SVGRectElement.cpp 95 setXBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
97 setYBaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
99 setRxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths));
101 setRyBaseValue(SVGLength::construct(LengthModeHeight, value, parseError, ForbidNegativeLengths));
103 setWidthBaseValue(SVGLength::construct(LengthModeWidth, value, parseError, ForbidNegativeLengths));
105 setHeightBaseValue(SVGLength::construct(LengthModeHeight, value, parseError, ForbidNegativeLengths));
SVGCircleElement.cpp 83 setCxBaseValue(SVGLength::construct(LengthModeWidth, value, parseError));
85 setCyBaseValue(SVGLength::construct(LengthModeHeight, value, parseError));
87 setRBaseValue(SVGLength::construct(LengthModeOther, value, parseError, ForbidNegativeLengths));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
construct.pass.cpp 15 // template <class T, class... Args> void construct(T* p, Args&&... args);
126 a.construct(s, 4, 'c');
137 a.construct(s, 6);
148 a.construct(s, 8);
159 a.construct(s, 1, 2);
172 a.construct(s, 1, 2);
186 a.construct(s, 1, 2);
destroy.pass.cpp 44 a.construct(s);
59 a.construct(s);
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 39 static void construct(value_type* pPtr) function in class:mcld::Chunk
42 static void construct(value_type* pPtr, const value_type& pValue) function in class:mcld::Chunk
78 static void construct(value_type* pPtr) function in class:mcld::Chunk
81 static void construct(value_type* pPtr, const value_type& pValue) function in class:mcld::Chunk
131 /// standard construct - constructing an object on the location pointed by
136 void construct(pointer pPtr, const_reference pValue) function in class:mcld::LinearAllocatorBase
137 { chunk_type::construct(pPtr, pValue); }
139 /// default construct - constructing an object on the location pointed by
144 void construct(pointer pPtr) function in class:mcld::LinearAllocatorBase
145 { chunk_type::construct(pPtr);
374 void construct(pointer pObject, const DataType& pValue) function in class:mcld::MallocAllocator
437 void construct(DataType* pObject, const DataType& pValue) function in class:mcld::MallocAllocator
440 void construct(pointer pObject, const_reference pValue) function in class:mcld::MallocAllocator
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
stl_allocator.h 89 void construct(pointer p, const T& val) { ::new(p) T(val); } function in class:STL_Allocator
90 void construct(pointer p) { ::new(p) T(); } function in class:STL_Allocator
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
stl_allocator.h 89 void construct(pointer p, const T& val) { ::new(p) T(val); } function in class:STL_Allocator
90 void construct(pointer p) { ::new(p) T(); } function in class:STL_Allocator
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
new_allocator.h 102 // 402. wrong new expression in [some_] allocator::construct
104 construct(pointer __p, const _Tp& __val) function in class:new_allocator
110 construct(pointer __p, _Args&&... __args) function in class:new_allocator
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 102 // 402. wrong new expression in [some_] allocator::construct
104 construct(pointer __p, const _Tp& __val) function in class:new_allocator
110 construct(pointer __p, _Args&&... __args) function in class:new_allocator
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 102 // 402. wrong new expression in [some_] allocator::construct
104 construct(pointer __p, const _Tp& __val) function in class:new_allocator
110 construct(pointer __p, _Args&&... __args) function in class:new_allocator
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 102 // 402. wrong new expression in [some_] allocator::construct
104 construct(pointer __p, const _Tp& __val) function in class:new_allocator
110 construct(pointer __p, _Args&&... __args) function in class:new_allocator
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
new_allocator.h 102 // 402. wrong new expression in [some_] allocator::construct
104 construct(pointer __p, const _Tp& __val) function in class:new_allocator
110 construct(pointer __p, _Args&&... __args) function in class:new_allocator
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 89 return construct(e1, e2);
98 return construct(e1, e2, e3);
107 return construct(e1, e2, e3, e4);
116 return construct(e1, e2, e3, e4, e5);
125 return construct(e1, e2, e3, e4, e5, e6);
135 return construct(e1, e2, e3, e4, e5, e6, e7);
145 return construct(e1, e2, e3, e4, e5, e6, e7, e8);
155 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9);
165 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10);
175 return construct(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11)
294 private static <E> ImmutableList<E> construct(Object... elements) { method in class:ImmutableList
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/optional/
optional.hpp 102 inline void construct(Factory const& factory, void* address) function in namespace:boost_optional_detail
230 construct(val);
240 construct(val);
250 construct(rhs.get_impl());
256 // implementation (the correct 'construct()' overload)
262 construct(expr,tag);
282 construct(rhs.get_impl());
299 construct(static_cast<value_type>(rhs.get()));
308 else construct(val);
321 else construct(expr,tag)
344 void construct ( argument_type val ) function in class:boost::optional_detail::optional_base
353 void construct ( Expr const& factory, in_place_factory_base const* ) function in class:boost::optional_detail::optional_base
362 void construct ( Expr const& factory, typed_in_place_factory_base const* ) function in class:boost::optional_detail::optional_base
390 void construct ( Expr const& expr, void const* ) function in class:boost::optional_detail::optional_base
421 void construct ( Expr const& expr, optional_tag const* ) function in class:boost::optional_detail::optional_base
    [all...]

Completed in 1060 milliseconds

1 2 3 4 5 6 7 8 91011>>