Home
last modified time | relevance | path

Searched defs:Constructable (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/llvm/unittests/ADT/
H A DSmallVectorTest.cpp27 class Constructable { class
41 Constructable() : constructed(true), value(0) { in Constructable() function in __anondcdd6c580111::Constructable
45 Constructable(int val) : constructed(true), value(val) { in Constructable() function in __anondcdd6c580111::Constructable
49 Constructable(const Constructable & src) : constructed(true) { in Constructable() function in __anondcdd6c580111::Constructable
55 Constructable(Constructable && src) : constructed(true) { in Constructable() function in __anondcdd6c580111::Constructable
/aosp_15_r20/external/pytorch/c10/test/util/
H A Dsmall_vector_test.cpp27 class Constructable { class
41 Constructable() : constructed(true), value(0) { in Constructable() function in __anone34fc2090111::Constructable
45 Constructable(int val) : constructed(true), value(val) { in Constructable() function in __anone34fc2090111::Constructable
49 Constructable(const Constructable& src) in Constructable() function in __anone34fc2090111::Constructable
55 Constructable(Constructable&& src) noexcept in Constructable() function in __anone34fc2090111::Constructable
/aosp_15_r20/external/guice/core/test/com/google/inject/spi/
H A DInjectionPointTest.java54 public static class Constructable { class in InjectionPointTest
56 public Constructable(@Named("c") String param) {} in Constructable() method in InjectionPointTest.Constructable
/aosp_15_r20/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
H A DDexMakerTest.java127 public static class Constructable { class in DexMakerTest
130 public Constructable(long a, boolean b) { in Constructable() method in DexMakerTest.Constructable
/aosp_15_r20/external/python/asn1crypto/asn1crypto/
Dcore.py722 class Constructable(object): class