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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
ConstructData.cpp 36 JSObject* construct(ExecState* exec, JSValue constructorObject, ConstructType constructType, const ConstructData& constructData, const ArgList& args) function in namespace:JSC
ConstructData.h 60 JSObject* construct(ExecState*, JSValue constructor, ConstructType, const ConstructData&, const ArgList&);
  /ndk/sources/cxx-stl/llvm-libc++/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++/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/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...]
  /ndk/sources/cxx-stl/llvm-libc++/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...]
UniqueGCFactory.h 67 construct(data);
80 construct(data, pValue);
  /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
malloc_allocator.h 106 // 402. wrong new expression in [some_] allocator::construct
108 construct(pointer __p, const _Tp& __val) function in class:malloc_allocator
114 construct(pointer __p, _Args&&... __args) function in class:malloc_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...]
  /external/libvpx/libvpx/vp8/common/arm/neon/
sixtappredict4x4_neon.asm 75 vext.8 d18, d6, d7, #5 ;construct src_ptr[3]
91 vzip.32 d6, d7 ;construct src_ptr[-2], and put 2-line data together
93 vshr.u64 q9, q4, #8 ;construct src_ptr[-1]
100 vshr.u64 q3, q4, #32 ;construct src_ptr[2]
107 vshr.u64 q9, q4, #16 ;construct src_ptr[0]
114 vshr.u64 q3, q4, #24 ;construct src_ptr[1]
139 vext.8 d18, d6, d7, #5 ;construct src_ptr[3]
149 vext.8 d31, d22, d23, #5 ;construct src_ptr[3]
157 vzip.32 d6, d7 ;construct src_ptr[-2], and put 2-line data together
159 vshr.u64 q9, q4, #8 ;construct src_ptr[-1
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptFunctionCall.h 81 ScriptObject construct(bool& hadException, bool reportExceptions = true);
  /external/webkit/Source/WebCore/bindings/v8/
ScriptFunctionCall.h 68 ScriptObject construct(bool& hadException, bool reportExceptions = true);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
extptr_allocator.h 107 construct(_Up* __p, _Args&&... __args) function in class:_ExtPtr_allocator
112 construct(pointer __p, _Args&&... __args) function in class:_ExtPtr_allocator
113 { construct(__p.get(), std::forward<_Args>(__args)...); }
125 void construct(pointer __p, const _Tp& __val) function in class:_ExtPtr_allocator

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>