HomeSort by relevance Sort by last modified time
    Searched defs:construct (Results 101 - 125 of 333) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/support/
test_allocator.h 81 void construct(pointer p, const T& val) function in class:test_allocator
84 void construct(pointer p, T&& val) function in class:test_allocator
141 void construct(pointer p, const T& val) function in class:non_default_test_allocator
144 void construct(pointer p, T&& val) function in class:non_default_test_allocator
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/
test_allocator.h 74 void construct(pointer p, const T& val) function in class:test_allocator
77 void construct(pointer p, T&& val) function in class:test_allocator
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
debug_allocator.h 155 construct(pointer __p, const value_type& __val) function in class:debug_allocator
156 { _Traits::construct(_M_allocator, __p, __val); }
161 construct(_Tp* __p, _Args&&... __args) function in class:debug_allocator
163 _Traits::construct(_M_allocator, __p,
pool_allocator.h 174 construct(_Up* __p, _Args&&... __args) function in class:__pool_alloc
182 // 402. wrong new expression in [some_] allocator::construct
184 construct(pointer __p, const _Tp& __val) function in class:__pool_alloc
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
test_allocator.h 83 void construct(pointer p, const T& val) function in class:test_allocator
86 void construct(pointer p, T&& val) function in class:test_allocator
143 void construct(pointer p, const T& val) function in class:non_default_test_allocator
146 void construct(pointer p, T&& val) function in class:non_default_test_allocator
  /external/deqp/framework/common/
tcuFloat.hpp 72 * \brief Construct floating point value
88 static inline Float construct (int sign, int exponent, StorageType mantissa);
91 * \brief Construct floating point value. Explicit version
205 Float<StorageType, ExponentBits, MantissaBits, ExponentBias, Flags>::construct function in class:tcu::Float
  /external/icu/icu4c/source/i18n/
simpletz.cpp 97 construct(rawOffsetGMT,
116 construct(rawOffsetGMT,
137 construct(rawOffsetGMT,
148 void SimpleTimeZone::construct(int32_t rawOffsetGMT, function in class:SimpleTimeZone
    [all...]
  /external/icu/icu4c/source/test/intltest/
fldset.cpp 22 construct((UDebugEnumType)-1, fieldCount);
26 construct(field, udbg_enumCount(field));
37 void FieldsSet::construct(UDebugEnumType field, int32_t fieldCount) { function in class:FieldsSet
  /external/libcxx/test/support/
container_test_types.h 24 // 1. Enforce that 'a.construct(...)' and 'a.destroy(...)' are only ever
26 // 2. Provide a mechanism of checking calls to 'a.construct(Args...)'.
27 // Including controlling when and with what types 'a.construct(...)'
37 // 1. Allow calls to 'a.construct(p, args...)' to be checked by a test.
39 // should expect one call to 'a.construct' with the specified argument
42 // 'construct' method. The test-types use this value to assert that
54 * calls 'alloc.construct(value_type*, Args&&...)' with the same types.
63 * // Get the global controller, reset it, and construct an allocator with
77 * // Emplace the objects into the container. 'Alloc.construct(p, UArgs...)'
168 // This should only be called by 'Allocator.construct'
294 void construct(Up* p, Args&&... args) { function in class:ContainerTestAllocator
    [all...]
test_allocator.h 97 void construct(pointer p, const T& val) function in class:test_allocator
100 template <class U> void construct(pointer p, U&& val) function in class:test_allocator
161 void construct(pointer p, const T& val) function in class:non_default_test_allocator
164 template <class U> void construct(pointer p, U&& val) function in class:non_default_test_allocator
302 void construct(Tag_X* p, Args&&... args) function in class:TaggingAllocator
306 void construct(U* p, Args&&... args) function in class:TaggingAllocator
  /external/skia/gm/
gradients_no_texture.cpp 140 void construct(const SkColor colors[], const SkScalar pos[], int count) { function in struct:ColorPos
179 rec->construct(colors, pos, N);
188 rec->construct(colors, nullptr, SK_ARRAY_COUNT(colors));
202 rec->construct(colors, pos, N);
212 rec->construct(colors, pos, SK_ARRAY_COUNT(colors));
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 27 import org.yaml.snakeyaml.constructor.Construct;
38 * Construct a custom Java instance out of a compact object notation format.
46 private Construct compactConstruct;
123 private Construct getCompactConstruct() {
130 protected Construct createCompactConstruct() {
135 protected Construct getConstructor(Node node) {
181 public Object construct(Node node) { method in class:CompactConstructor.ConstructCompactObject
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 52 public Object construct(Node node) { method in class:Example2_24Test.MyConstructor.ConstructShape
62 public Object construct(Node node) { method in class:Example2_24Test.MyConstructor.ConstructCircle
73 public Object construct(Node node) { method in class:Example2_24Test.MyConstructor.ConstructLine
84 public Object construct(Node node) { method in class:Example2_24Test.MyConstructor.ConstructLabel
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ResolverTest.java 120 public Object construct(Node node) { method in class:ResolverTest.MyConstructor.ConstructPhone
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 292 void construct(pointer p, const T& val) { new ((void *)p) T(val); } function in class:pool_allocator
  /external/zlib/src/contrib/blast/
blast.c 175 * Huffman code for n symbols, construct the tables required to decode those
187 local int construct(struct huffman *h, const unsigned char *rep, int n) function
313 construct(&litcode, litlen, sizeof(litlen));
314 construct(&lencode, lenlen, sizeof(lenlen));
315 construct(&distcode, distlen, sizeof(distlen));
  /external/zlib/src/contrib/puff/
puff.c 39 * - Simplify offs[] index in construct()
56 * 1.4 31 Mar 2002 - Simplify construct() code set check
310 * Huffman code for n symbols, construct the tables required to decode those
329 * fixed() and is not verified by construct().
340 local int construct(struct huffman *h, const short *length, int n) function
548 /* construct lencode and distcode */
563 construct(&lencode, lengths, FIXLCODES);
568 construct(&distcode, lengths, MAXDCODES);
655 * code length code lengths, three bits each. This is used to construct the
669 int err; /* construct() return value *
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 34 static void construct(value_type* pPtr) { new (pPtr) value_type(); } function in class:mcld::Chunk
36 static void construct(value_type* pPtr, const value_type& pValue) { function in class:mcld::Chunk
70 static void construct(value_type* pPtr) { new (pPtr) value_type(); } function in class:mcld::Chunk
72 static void construct(value_type* pPtr, const value_type& pValue) { function in class:mcld::Chunk
114 /// standard construct - constructing an object on the location pointed by
119 void construct(pointer pPtr, const_reference pValue) { function in class:mcld::LinearAllocatorBase
120 chunk_type::construct(pPtr, pValue);
123 /// default construct - constructing an object on the location pointed by
128 void construct(pointer pPtr) { chunk_type::construct(pPtr); function in class:mcld::LinearAllocatorBase
342 void construct(pointer pObject, const DataType& pValue) { function in class:mcld::MallocAllocator
396 void construct(DataType* pObject, const DataType& pValue) { \/* do nothing *\/ function in class:mcld::MallocAllocator
399 void construct(pointer pObject, const_reference pValue) { \/* do nothing *\/ function in class:mcld::MallocAllocator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
codecvt_specializations.h 77 // Number of external bytes needed to construct one complete
104 { construct(__obj); }
110 construct(__obj);
177 construct(const encoding_state& __obj) function in class:encoding_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
codecvt_specializations.h 77 // Number of external bytes needed to construct one complete
104 { construct(__obj); }
110 construct(__obj);
177 construct(const encoding_state& __obj) function in class:encoding_state
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
codecvt_specializations.h 77 // Number of external bytes needed to construct one complete
104 { construct(__obj); }
110 construct(__obj);
177 construct(const encoding_state& __obj) function in class:encoding_state
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
codecvt_specializations.h 77 // Number of external bytes needed to construct one complete
104 { construct(__obj); }
110 construct(__obj);
177 construct(const encoding_state& __obj) function in class:encoding_state
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 158 void construct(pointer __p, const _Tp& __val) { new(__p) _Tp(__val); } function in class:pthread_allocator
341 void construct(pointer __p, const _Tp& __val) { new(__p) _Tp(__val); } function in class:per_thread_allocator
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
codecvt_specializations.h 77 // Number of external bytes needed to construct one complete
104 { construct(__obj); }
110 construct(__obj);
177 construct(const encoding_state& __obj) function in class:encoding_state
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_pthread_alloc.h 158 void construct(pointer __p, const _Tp& __val) { new(__p) _Tp(__val); } function in class:pthread_allocator
341 void construct(pointer __p, const _Tp& __val) { new(__p) _Tp(__val); } function in class:per_thread_allocator

Completed in 1922 milliseconds

1 2 3 45 6 7 8 91011>>