Home
last modified time | relevance | path

Searched refs:TypeID (Results 1 – 25 of 2076) sorted by relevance

12345678910>>...84

/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
60 TypeID(const TypeID &) = default;
70 static TypeID get();
72 static TypeID get();
117 static TypeID get() { in get()
119 return TypeID(&instance); in get()
122 static TypeID get() { in get()
131 TypeID TypeID::get() { in get()
135 TypeID TypeID::get() { in get()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
60 TypeID(const TypeID &) = default;
70 static TypeID get();
72 static TypeID get();
117 static TypeID get() { in get()
119 return TypeID(&instance); in get()
122 static TypeID get() { in get()
131 TypeID TypeID::get() { in get()
135 TypeID TypeID::get() { in get()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
60 TypeID(const TypeID &) = default;
70 static TypeID get();
72 static TypeID get();
117 static TypeID get() { in get()
119 return TypeID(&instance); in get()
122 static TypeID get() { in get()
131 TypeID TypeID::get() { in get()
135 TypeID TypeID::get() { in get()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/include/mlir/Support/
H A DTypeID.h52 class TypeID {
60 TypeID() : TypeID(get<void>()) {} in TypeID() function
70 static TypeID get();
72 static TypeID get();
117 static TypeID get() { in get()
119 return TypeID(&instance); in get()
122 static TypeID get() { in get()
124 return TypeID(&instance); in get()
131 TypeID TypeID::get() { in get()
135 TypeID TypeID::get() { in get()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
69 static TypeID get();
71 static TypeID get();
116 static TypeID get() { in get()
118 return TypeID(&instance); in get()
121 static TypeID get() { in get()
123 return TypeID(&instance); in get()
130 TypeID TypeID::get() { in get()
134 TypeID TypeID::get() { in get()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
69 static TypeID get();
71 static TypeID get();
116 static TypeID get() { in get()
118 return TypeID(&instance); in get()
121 static TypeID get() { in get()
123 return TypeID(&instance); in get()
130 TypeID TypeID::get() { in get()
134 TypeID TypeID::get() { in get()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/include/mlir/Support/
H A DTypeID.h51 class TypeID {
59 TypeID() : TypeID(get<void>()) {} in TypeID() function
69 static TypeID get();
71 static TypeID get();
116 static TypeID get() { in get()
118 return TypeID(&instance); in get()
121 static TypeID get() { in get()
123 return TypeID(&instance); in get()
130 TypeID TypeID::get() { in get()
134 TypeID TypeID::get() { in get()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/include/mlir/Support/
H A DTypeID.h47 class TypeID {
55 TypeID() : TypeID(get<void>()) {} in TypeID() function
56 TypeID(const TypeID &) = default;
59 bool operator==(const TypeID &other) const {
69 LLVM_EXTERNAL_VISIBILITY static TypeID get() { in get()
71 return TypeID(&instance); in get()
76 return TypeID(&instance); in get()
105 template <> struct DenseMapInfo<mlir::TypeID> {
106 static mlir::TypeID getEmptyKey() {
110 static mlir::TypeID getTombstoneKey() {
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/c++/librecordio/
H A DtypeIDs.hh52 class TypeID { class
57 TypeID(const TypeID& t) {this->typeVal = t.typeVal;} in TypeID() function in hadoop::TypeID
58 virtual ~TypeID() {} in ~TypeID()
64 virtual TypeID* clone() const {return new TypeID(*this);} in clone()
91 class StructTypeID : public TypeID {
127 TypeID* ptiElement;
130 VectorTypeID(TypeID* ptiElement): TypeID(RIOTYPE_VECTOR), ptiElement(ptiElement) {} in VectorTypeID()
145 class MapTypeID : public TypeID {
149 TypeID* ptiKey;
150 TypeID* ptiValue;
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Util/
H A Daltserialization.cs24 enum TypeID : byte { enum in System.Web.Util.AltSerialization
166 TypeID id; in ReadValueFromStream()
175 case TypeID.Int32: in ReadValueFromStream()
198 case TypeID.Byte: in ReadValueFromStream()
202 case TypeID.Char: in ReadValueFromStream()
206 case TypeID.Single: in ReadValueFromStream()
210 case TypeID.Double: in ReadValueFromStream()
214 case TypeID.SByte: in ReadValueFromStream()
218 case TypeID.Int16: in ReadValueFromStream()
222 case TypeID.Int64: in ReadValueFromStream()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/core/org/apache/hadoop/record/meta/
H A DTypeID.java27 public class TypeID { class
49 public static final TypeID BoolTypeID = new TypeID(RIOType.BOOL);
50 public static final TypeID BufferTypeID = new TypeID(RIOType.BUFFER);
51 public static final TypeID ByteTypeID = new TypeID(RIOType.BYTE);
52 public static final TypeID DoubleTypeID = new TypeID(RIOType.DOUBLE);
53 public static final TypeID FloatTypeID = new TypeID(RIOType.FLOAT);
54 public static final TypeID IntTypeID = new TypeID(RIOType.INT);
55 public static final TypeID LongTypeID = new TypeID(RIOType.LONG);
56 public static final TypeID StringTypeID = new TypeID(RIOType.STRING);
63 TypeID(byte typeVal) { in TypeID() method in TypeID
[all …]
H A DStructTypeID.java109 case TypeID.RIOType.BOOL: in genericReadTypeID()
110 return TypeID.BoolTypeID; in genericReadTypeID()
113 case TypeID.RIOType.BYTE: in genericReadTypeID()
114 return TypeID.ByteTypeID; in genericReadTypeID()
115 case TypeID.RIOType.DOUBLE: in genericReadTypeID()
117 case TypeID.RIOType.FLOAT: in genericReadTypeID()
119 case TypeID.RIOType.INT: in genericReadTypeID()
120 return TypeID.IntTypeID; in genericReadTypeID()
121 case TypeID.RIOType.LONG: in genericReadTypeID()
122 return TypeID.LongTypeID; in genericReadTypeID()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/record/meta/
H A DTypeID.java35 public class TypeID { class
57 public static final TypeID BoolTypeID = new TypeID(RIOType.BOOL);
58 public static final TypeID BufferTypeID = new TypeID(RIOType.BUFFER);
59 public static final TypeID ByteTypeID = new TypeID(RIOType.BYTE);
60 public static final TypeID DoubleTypeID = new TypeID(RIOType.DOUBLE);
61 public static final TypeID FloatTypeID = new TypeID(RIOType.FLOAT);
62 public static final TypeID IntTypeID = new TypeID(RIOType.INT);
63 public static final TypeID LongTypeID = new TypeID(RIOType.LONG);
64 public static final TypeID StringTypeID = new TypeID(RIOType.STRING);
71 TypeID(byte typeVal) { in TypeID() method in TypeID
[all …]
H A DStructTypeID.java117 case TypeID.RIOType.BOOL: in genericReadTypeID()
118 return TypeID.BoolTypeID; in genericReadTypeID()
121 case TypeID.RIOType.BYTE: in genericReadTypeID()
122 return TypeID.ByteTypeID; in genericReadTypeID()
123 case TypeID.RIOType.DOUBLE: in genericReadTypeID()
125 case TypeID.RIOType.FLOAT: in genericReadTypeID()
127 case TypeID.RIOType.INT: in genericReadTypeID()
128 return TypeID.IntTypeID; in genericReadTypeID()
129 case TypeID.RIOType.LONG: in genericReadTypeID()
130 return TypeID.LongTypeID; in genericReadTypeID()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/support/
H A Dtype_id.h24 struct TypeID { struct
25 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
27 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
37 TypeID(const TypeID&) = delete;
38 TypeID& operator=(TypeID const&) = delete; argument
41 template <class T> friend TypeID const& makeTypeIDImp(); argument
46 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
48 static const TypeID id(__FUNCSIG__); in makeTypeIDImp()
50 static const TypeID id(__PRETTY_FUNCTION__); in makeTypeIDImp()
59 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/support/
H A Dtype_id.h26 struct TypeID { struct
27 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
29 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
42 explicit constexpr TypeID(const char* xid) : m_id(xid) {} in TypeID() argument
44 TypeID(const TypeID&) = delete;
45 TypeID& operator=(TypeID const&) = delete; argument
48 template <class T> friend TypeID const& makeTypeIDImp(); argument
53 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
54 static const TypeID id(typeid(T).name()); in makeTypeIDImp()
62 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/support/
H A Dtype_id.h26 struct TypeID { struct
27 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
29 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
42 explicit constexpr TypeID(const char* xid) : m_id(xid) {} in TypeID() function
44 TypeID(const TypeID&) = delete;
45 TypeID& operator=(TypeID const&) = delete; argument
48 template <class T> friend TypeID const& makeTypeIDImp(); argument
53 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
54 static const TypeID id(typeid(T).name()); in makeTypeIDImp()
62 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/libc++/libcxx-10.0.1.src/test/support/
H A Dtype_id.h26 struct TypeID { struct
27 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
29 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
42 explicit constexpr TypeID(const char* xid) : m_id(xid) {} in TypeID() argument
44 TypeID(const TypeID&) = delete;
45 TypeID& operator=(TypeID const&) = delete; argument
48 template <class T> friend TypeID const& makeTypeIDImp(); argument
53 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
54 static const TypeID id(typeid(T).name()); in makeTypeIDImp()
62 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/support/
H A Dtype_id.h26 struct TypeID { struct
27 friend bool operator==(TypeID const& LHS, TypeID const& RHS)
29 friend bool operator!=(TypeID const& LHS, TypeID const& RHS)
42 explicit constexpr TypeID(const char* xid) : m_id(xid) {} in TypeID() function
44 TypeID(const TypeID&) = delete;
45 TypeID& operator=(TypeID const&) = delete; argument
48 template <class T> friend TypeID const& makeTypeIDImp(); argument
57 inline TypeID const& makeTypeIDImp() { in makeTypeIDImp()
58 static const TypeID id(typeid(T).name()); in makeTypeIDImp()
69 inline TypeID const& makeTypeID() { in makeTypeID()
[all …]

12345678910>>...84