Home
last modified time | relevance | path

Searched refs:TypeType (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/mlir/include/mlir/Dialect/PDL/IR/
DPDLTypes.h35 struct TypeType : public Type::TypeBase<TypeType, Type, TypeStorage> { struct
DPDLBase.td85 def PDL_Type : PDL_Handle<"mlir::pdl::TypeType">;
/external/python/cpython2/Lib/
Dtypes.py13 TypeType = type variable
77 DictProxyType = type(TypeType.__dict__)
Dpickle.py296 issc = issubclass(t, TypeType)
779 dispatch[TypeType] = save_global
Doptparse.py652 if ( type(self.type) is types.TypeType or
/external/llvm-project/mlir/include/mlir/IR/
DDialectImplementation.h314 template <typename TypeType> ParseResult parseType(TypeType &result) { in parseType()
323 result = type.dyn_cast<TypeType>(); in parseType()
DOpImplementation.h760 template <typename TypeType>
761 ParseResult parseColonType(TypeType &result) { in parseColonType()
770 result = type.dyn_cast<TypeType>(); in parseColonType()
/external/llvm-project/mlir/lib/Dialect/PDL/IR/
DPDL.cpp28 addTypes<AttributeType, OperationType, TypeType, ValueType>(); in initialize()
40 .Case("type", builder.getType<TypeType>()) in parseType()
54 else if (type.isa<TypeType>()) in printType()
173 p.resolveOperands(opResultTypes, builder.getType<TypeType>(), in parseOperationOp()
/external/python/cpython2/Doc/c-api/
Dtype.rst18 .. index:: single: TypeType (in module types)
21 ``types.TypeType`` in the Python layer.
/external/llvm-project/mlir/lib/Dialect/PDLInterp/IR/
DPDLInterp.cpp80 p.resolveOperands(opResultTypes, builder.getType<pdl::TypeType>(), in parseCreateOperationOp()
/external/python/cpython2/Doc/library/
Dtypes.rst47 .. data:: TypeType
223 The type of dict proxies, such as ``TypeType.__dict__``.
Dmodulefinder.rst111 types: __module__,IntType,TypeType
/external/python/cpython2/Lib/idlelib/
DCallTips.py158 if type(ob) in (types.ClassType, types.TypeType):
/external/chromium-trace/catapult/devil/docs/
Dmarkdown.md80 class_obj: a types.TypeType object for the class that should be
/external/python/cpython3/Doc/library/
Dmodulefinder.rst108 types: __module__,IntType,TypeType
/external/chromium-trace/catapult/devil/devil/utils/
Dmarkdown.py203 if isinstance(s, types.TypeType):
/external/llvm-project/mlir/include/mlir/Dialect/PDLInterp/IR/
DPDLInterpOps.td447 build($_builder, $_state, $_builder.getType<pdl::TypeType>(), type);
542 build($_builder, $_state, $_builder.getType<pdl::TypeType>(), value);
643 build($_builder, $_state, $_builder.getType<pdl::TypeType>(), value);
670 build($_builder, $_state, $_builder.getType<pdl::TypeType>());
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/
DPredicateTree.cpp135 assert(val.getType().isa<pdl::TypeType>() && "expected value type"); in getTreePredicates()
/external/protobuf/python/
Dmox.py156 types.ObjectType, types.TypeType]
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.cpp302 .Case<pdl::TypeType>([](Type) { return PDLValueKind::Type; }) in appendPDLValueList()