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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/re/re.regex/re.regex.construct/
Android.mk 17 test_makefile := external/libcxx/test/re/re.regex/re.regex.construct/Android.mk
19 test_name := re/re.regex/re.regex.construct/default
23 test_name := re/re.regex/re.regex.construct/string
27 test_name := re/re.regex/re.regex.construct/awk_oct
31 test_name := re/re.regex/re.regex.construct/iter_iter_flg
35 test_name := re/re.regex/re.regex.construct/iter_iter
39 test_name := re/re.regex/re.regex.construct/copy
43 test_name := re/re.regex/re.regex.construct/ptr_size_flg
47 test_name := re/re.regex/re.regex.construct/bad_escape
51 test_name := re/re.regex/re.regex.construct/pt
    [all...]
  /external/libcxx/test/numerics/complex.number/complex.members/
Android.mk 19 test_name := numerics/complex.number/complex.members/construct
20 test_src := construct.pass.cpp
  /external/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);
  /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);
  /external/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());
Android.mk 23 test_name := utilities/memory/default.allocator/allocator.members/construct
24 test_src := construct.pass.cpp
  /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());
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/
Android.mk 19 test_name := input.output/iostream.format/output.streams/ostream_sentry/construct
20 test_src := construct.pass.cpp
  /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/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/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);
  /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);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptFunctionCall.h 67 ScriptValue construct(bool& hadException, bool reportExceptions = true);
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 36 static void construct(value_type* pPtr) function in class:mcld::Chunk
39 static void construct(value_type* pPtr, const value_type& pValue) function in class:mcld::Chunk
75 static void construct(value_type* pPtr) function in class:mcld::Chunk
78 static void construct(value_type* pPtr, const value_type& pValue) function in class:mcld::Chunk
128 /// standard construct - constructing an object on the location pointed by
133 void construct(pointer pPtr, const_reference pValue) function in class:mcld::LinearAllocatorBase
134 { chunk_type::construct(pPtr, pValue); }
136 /// default construct - constructing an object on the location pointed by
141 void construct(pointer pPtr) function in class:mcld::LinearAllocatorBase
142 { chunk_type::construct(pPtr);
371 void construct(pointer pObject, const DataType& pValue) function in class:mcld::MallocAllocator
434 void construct(DataType* pObject, const DataType& pValue) function in class:mcld::MallocAllocator
437 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
  /external/chromium_org/third_party/tlslite/tlslite/utils/
pycrypto_rsakey.py 18 self.rsa = RSA.construct( (n, e) )
20 self.rsa = RSA.construct( (n, e, d, p, q) )
  /external/eigen/Eigen/src/Core/
Ref.h 161 void construct(Expression& expr) function in class:Eigen::RefBase
202 Base::construct(expr);
213 Base::construct(expr.const_cast_derived());
236 construct(expr.derived(), typename Traits::template match<Derived>::type());
242 void construct(const Expression& expr,internal::true_type) function in class:Eigen::Ref
244 Base::construct(expr);
248 void construct(const Expression& expr, internal::false_type) function in class:Eigen::Ref
251 Base::construct(m_object);

Completed in 822 milliseconds

1 2 3 4 5 6 7 8 91011>>