HomeSort by relevance Sort by last modified time
    Searched defs:construct (Results 26 - 50 of 354) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
malloc_allocator.h 121 construct(_Up* __p, _Args&&... __args) function in class:malloc_allocator
129 // 402. wrong new expression in [some_] allocator::construct
131 construct(pointer __p, const _Tp& __val) function in class:malloc_allocator
new_allocator.h 119 construct(_Up* __p, _Args&&... __args) function in class:new_allocator
127 // 402. wrong new expression in [some_] allocator::construct
129 construct(pointer __p, const _Tp& __val) function in class:new_allocator
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_piecewise_pair.pass.cpp 17 // void polymorphic_allocator<T>::construct(pair<T1, T2>*, piecewise_construct_t
64 void construct(Args&&... args) { function in struct:TestHarness
65 A.construct(ptr, std::forward<Args>(args)...);
122 h.construct(std::piecewise_construct, t1, t2);
138 h.construct(std::piecewise_construct, std::move(t1), std::move(t2));
155 h.construct(std::piecewise_construct, std::move(t1), std::move(t2));
172 h.construct(std::piecewise_construct, t1, t2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_types.pass.cpp 18 // void polymorphic_allocator<T>::construct(U *, Args &&...)
43 void construct(Args&&... args) { function in struct:PMATest
44 A.construct(ptr, std::forward<Args>(args)...);
59 TH.construct(std::forward<Args>(args)...);
70 TH.construct(std::forward<Args>(args)...);
81 TH.construct(std::allocator_arg, ealloc, std::forward<Args>(args)...);
91 TH.construct(std::forward<Args>(args)..., ealloc);
  /art/openjdkjvmti/
jvmti_allocator.h 135 void construct(pointer p, const_reference val) { function in class:openjdkjvmti::JvmtiAllocator
139 void construct(U* p, Args&&... args) { function in class:openjdkjvmti::JvmtiAllocator
  /art/runtime/base/
arena_containers.h 207 void construct(U* p, Args&&... args) { function in class:art::ArenaAllocatorAdapter
scoped_arena_containers.h 186 void construct(U* p, Args&&... args) { function in class:art::ScopedArenaAllocatorAdapter
  /external/eigen/Eigen/src/SparseCore/
SparseRef.h 98 void construct(Expression& expr) function in class:Eigen::internal::SparseRefBase
149 Base::construct(expr.derived());
157 Base::construct(expr.derived());
171 Base::construct(expr.const_cast_derived());
190 construct(expr.derived(), typename Traits::template match<Derived>::type());
199 construct(other.derived(), typename Traits::template match<OtherRef>::type());
212 void construct(const Expression& expr,internal::true_type) function in class:Eigen::Ref
219 Base::construct(*obj);
223 Base::construct(expr);
228 void construct(const Expression& expr, internal::false_type function in class:Eigen::Ref
330 void construct(const Expression& expr,internal::true_type) function in class:Eigen::Ref
336 void construct(const Expression& expr, internal::false_type) function in class:Eigen::Ref
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSet.java 105 return construct(2, e1, e2);
116 return construct(3, e1, e2, e3);
127 return construct(4, e1, e2, e3, e4);
138 return construct(5, e1, e2, e3, e4, e5);
160 return construct(elements.length, elements);
178 private static <E> ImmutableSet<E> construct(int n, Object... elements) { method in class:ImmutableSet
220 return construct(uniques, elements);
278 return construct(elements.length, elements.clone());
375 return construct(array.length, array);
531 ImmutableSet<E> result = construct(size, contents)
    [all...]
  /external/libcxx/test/support/
allocators.h 154 void construct(U* p, Args&& ...args) function in class:A3
  /external/llvm/include/llvm/ADT/
Statistic.h 51 /// construct - This should only be called for non-global statistics.
52 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeExampleTest.java 27 import org.yaml.snakeyaml.constructor.Construct;
71 public Object construct(Node nnode) { method in class:JodaTimeExampleTest.JodaPropertyConstructor.TimeStampConstruct
73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP);
74 Date date = (Date) dateConstructor.construct(nnode);
77 return super.construct(nnode);
88 private final Construct javaDateConstruct;
89 private final Construct jodaDateConstruct;
103 public Object construct(Node node) { method in class:JodaTimeExampleTest.JodaTimeConstructor.ConstructJodaTimestamp
104 Date date = (Date) javaDateConstruct.construct(node);
111 public Object construct(Node nnode) method in class:JodaTimeExampleTest.JodaTimeConstructor.TimeStampConstruct
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
ConstructorSequenceTest.java 34 List<Object> list = construct(new CustomConstructor(), data);
41 List<Object> list = construct(data);
64 private List<Object> construct(String data) { method in class:ConstructorSequenceTest
65 return construct(new Constructor(), data);
69 private List<Object> construct(Constructor constructor, String data) { method in class:ConstructorSequenceTest
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/emitter/
EventConstructor.java 51 public Object construct(Node node) { method in class:EventConstructor.ConstructEvent
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
ChangeRuntimeClassTest.java 23 import org.yaml.snakeyaml.constructor.Construct;
79 private Construct getConstructor(Node node) {
87 Construct constructor = yamlClassConstructors.get(node.getNodeId());
91 public Object construct(Node node) { method in class:ChangeRuntimeClassTest.MyConstructor.ConstructProxy
92 return getConstructor(node).construct(node);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue97/
YamlSortedSetTest.java 64 public Object construct(Node node) { method in class:YamlSortedSetTest.SetContructor.ConstructSetFromSequence
74 return super.construct(node);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ImplicitResolverTest.java 27 import org.yaml.snakeyaml.constructor.Construct;
50 public Object construct(Node node) { method in class:ImplicitResolverTest.ConfigurationConstructor.ConfigObjectConstruct
57 protected Construct getConstructor(Node node) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Statistic.h 45 /// construct - This should only be called for non-global statistics.
46 void construct(const char *name, const char *desc) { function in class:llvm::Statistic
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Statistic.h 52 /// construct - This should only be called for non-global statistics.
53 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic
  /external/swiftshader/third_party/subzero/src/
IceMemory.h 82 template <typename... A> void construct(pointer P, A &&... Args) { function in struct:Ice::sz_allocator
  /external/v8/src/zone/
zone-allocator.h 55 void construct(U* p, Args&&... args) { function in class:v8::internal::zone_allocator
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
Statistic.h 52 /// construct - This should only be called for non-global statistics.
53 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
Statistic.h 52 /// construct - This should only be called for non-global statistics.
53 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
Statistic.h 52 /// construct - This should only be called for non-global statistics.
53 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
Statistic.h 52 /// construct - This should only be called for non-global statistics.
53 void construct(const char *debugtype, const char *name, const char *desc) { function in class:llvm::Statistic

Completed in 647 milliseconds

12 3 4 5 6 7 8 91011>>