Searched refs:TypeKind (Results 1 - 25 of 26) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/bindings/python/clang/
H A Dcindex.py1722 if underlying_type.kind == TypeKind.ENUM:
1724 if underlying_type.kind in (TypeKind.CHAR_U,
1725 TypeKind.UCHAR,
1726 TypeKind.CHAR16,
1727 TypeKind.CHAR32,
1728 TypeKind.USHORT,
1729 TypeKind.UINT,
1730 TypeKind.ULONG,
1731 TypeKind.ULONGLONG,
1732 TypeKind
2013 class TypeKind(BaseEnumeration): class in inherits:BaseEnumeration
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/bindings/python/tests/cindex/
H A Dtest_type.py11 from clang.cindex import TypeKind namespace
53 self.assertEqual(fields[0].type.kind, TypeKind.INT)
54 self.assertEqual(fields[0].type.get_canonical().kind, TypeKind.INT)
61 self.assertEqual(fields[1].type.kind, TypeKind.TYPEDEF)
62 self.assertEqual(fields[1].type.get_canonical().kind, TypeKind.INT)
70 self.assertEqual(fields[2].type.kind, TypeKind.LONG)
71 self.assertEqual(fields[2].type.get_canonical().kind, TypeKind.LONG)
78 self.assertEqual(fields[3].type.kind, TypeKind.ULONG)
79 self.assertEqual(fields[3].type.get_canonical().kind, TypeKind.ULONG)
86 self.assertEqual(fields[4].type.kind, TypeKind
[all...]
H A Dtest_cursor.py14 from clang.cindex import TypeKind namespace
81 self.assertEqual(s0_nodes[0].type.kind, TypeKind.INT)
84 self.assertEqual(s0_nodes[1].type.kind, TypeKind.INT)
317 self.assertEqual(underlying.kind, TypeKind.INT)
343 self.assertIn(enum_type.kind, (TypeKind.UINT, TypeKind.INT))
351 self.assertEqual(enum.enum_type.kind, TypeKind.LONGLONG)
435 self.assertEqual(t.kind, TypeKind.INT)
447 self.assertEqual(result_type.kind, TypeKind.VOID)
532 self.assertEqual(foos[1].get_template_argument_type(1).kind, TypeKind
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_value.h86 u16 TypeKind; member in class:__ubsan::TypeDescriptor
114 return static_cast<Kind>(TypeKind);
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_value.h84 u16 TypeKind; member in class:__ubsan::TypeDescriptor
112 return static_cast<Kind>(TypeKind);
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_value.h85 u16 TypeKind; member in class:__ubsan::TypeDescriptor
113 return static_cast<Kind>(TypeKind);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecordMapping.h46 Optional<TypeLeafKind> TypeKind; member in class:llvm::codeview::TypeRecordMapping
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DFormatString.h276 /// The TypeKind identifies certain well-known types like size_t and
278 enum class TypeKind { DontCare, SizeT, PtrdiffT }; class in class:clang::analyze_format_string::ArgType
279 TypeKind TK = TypeKind::DontCare;
289 bool isSizeT() const { return TK == TypeKind::SizeT; }
291 bool isPtrdiffT() const { return TK == TypeKind::PtrdiffT; }
304 Res.TK = TypeKind::SizeT;
312 Res.TK = TypeKind::PtrdiffT;
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h116 enum TypeKind { enum in namespace:testing::internal
159 static_cast< ::testing::internal::TypeKind>( \
174 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp213 assert(!TypeKind.hasValue() && "Already in a type mapping!");
224 TypeKind = CVR.kind();
245 assert(TypeKind.hasValue() && "Not in a type mapping!");
250 TypeKind.reset();
255 assert(TypeKind.hasValue() && "Not in a type mapping!");
281 assert(TypeKind.hasValue() && "Not in a type mapping!");
663 const bool IsFromOverloadList = (TypeKind == LF_METHODLIST);
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DMveEmitter.cpp100 enum class TypeKind { class in class:__anon1217::Type
134 const TypeKind TKind;
137 Type(TypeKind K) : TKind(K) {}
140 TypeKind typeKind() const { return TKind; }
180 VoidType() : Type(TypeKind::Void) {}
186 static bool classof(const Type *T) { return T->typeKind() == TypeKind::Void; }
196 : Type(TypeKind::Pointer), Pointee(Pointee), Const(Const) {}
217 return T->typeKind() == TypeKind::Pointer;
243 ScalarType(const Record *Record) : CRegularNamedType(TypeKind::Scalar) {
284 return T->typeKind() == TypeKind
[all...]
H A DNeonEmitter.cpp145 enum TypeKind { enum in class:__anon1220::Type
153 TypeKind Kind;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h138 BaseTypeRef(unsigned BitSize, dwarf::TypeKind Encoding) :
141 dwarf::TypeKind Encoding;
H A DDwarfExpression.cpp436 dwarf::TypeKind Encoding) {
575 dwarf::TypeKind Encoding = static_cast<dwarf::TypeKind>(Op->getArg(1));
H A DDwarfExpression.h341 unsigned getOrCreateBaseType(unsigned BitSize, dwarf::TypeKind Encoding);
H A DCodeViewDebug.cpp1655 dwarf::TypeKind Kind;
1658 Kind = static_cast<dwarf::TypeKind>(Ty->getEncoding());
/netbsd-current/external/apache2/llvm/dist/llvm/bindings/python/llvm/
H A Dcore.py92 class TypeKind(LLVMEnumeration): class in inherits:LLVMEnumeration
93 """Represents an individual TypeKind enumeration."""
98 super(TypeKind, self).__init__(name, value)
609 (TypeKind, enumerations.TypeKinds),
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DDwarf.h150 enum TypeKind : uint8_t {
614 unsigned AttributeEncodingVersion(TypeKind E);
628 unsigned AttributeEncodingVendor(TypeKind E);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DDwarf.cpp216 unsigned llvm::dwarf::AttributeEncodingVersion(dwarf::TypeKind ATE) {
227 unsigned llvm::dwarf::AttributeEncodingVendor(dwarf::TypeKind ATE) {
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h135 enum TypeKind { enum in namespace:testing::internal2
149 // "kind" of T as defined by enum TypeKind.
150 template <typename T, TypeKind kTypeKind>
/netbsd-current/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp353 auto TypeKind = ASTNodeKind::getFromNodeKind<Type>(); local
356 if (From.isSame(TypeKind) && To.isSame(QualKind)) return true;
/netbsd-current/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.ml27 module TypeKind = struct module
458 external classify_type : lltype -> TypeKind.t = "llvm_classify_type"
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DDebugInfoMetadata.cpp1518 dwarf::TypeKind TK = Signed ? dwarf::DW_ATE_signed : dwarf::DW_ATE_unsigned;
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp2979 /// { i16 TypeKind, i16 TypeInfo }
2982 /// followed by an array of i8 containing the type name. TypeKind is 0 for an
2989 uint16_t TypeKind = -1;
2993 TypeKind = 0;
2997 TypeKind = 1;
3010 Builder.getInt16(TypeKind), Builder.getInt16(TypeInfo),
H A DCGDebugInfo.cpp650 llvm::dwarf::TypeKind Encoding;
921 llvm::dwarf::TypeKind Encoding = Ty->isUnsigned()
931 llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float;

Completed in 252 milliseconds

12