/external/swiftshader/src/Vulkan/Debug/ |
D | TypeOf.hpp | 27 template <typename T> struct TypeOf; 28 template <> struct TypeOf<bool> { static std::string name; }; struct 29 template <> struct TypeOf<uint8_t> { static std::string name; }; struct 30 template <> struct TypeOf<int8_t> { static std::string name; }; struct 31 template <> struct TypeOf<uint16_t> { static std::string name; }; struct 32 template <> struct TypeOf<int16_t> { static std::string name; }; struct 33 template <> struct TypeOf<float> { static std::string name; }; argument 34 template <> struct TypeOf<uint32_t> { static std::string name; }; struct 35 template <> struct TypeOf<int32_t> { static std::string name; }; argument 36 template <> struct TypeOf<double> { static std::string name; }; struct [all …]
|
D | TypeOf.cpp | 20 std::string TypeOf<bool>::name = "bool"; 21 std::string TypeOf<uint8_t>::name = "uint8_t"; 22 std::string TypeOf<int8_t>::name = "int8_t"; 23 std::string TypeOf<uint16_t>::name = "uint16_t"; 24 std::string TypeOf<int16_t>::name = "int16_t"; 25 std::string TypeOf<float>::name = "float"; 26 std::string TypeOf<uint32_t>::name = "uint32_t"; 27 std::string TypeOf<int32_t>::name = "int32_t"; 28 std::string TypeOf<double>::name = "double"; 29 std::string TypeOf<uint64_t>::name = "uint64_t"; [all …]
|
D | Value.hpp | 69 std::string type() override { return TypeOf<T>::name; } in type() 84 std::string type() override { return TypeOf<T>::name; } in type()
|
/external/tensorflow/tensorflow/go/ |
D | tensor.go | 86 nbytes := TypeOf(dataType, nil).Size() * uintptr(nflattened) 182 nbytes := TypeOf(dataType, nil).Size() * uintptr(numElements(shape)) 393 {reflect.TypeOf(float32(0)), C.TF_FLOAT}, 394 {reflect.TypeOf(float64(0)), C.TF_DOUBLE}, 395 {reflect.TypeOf(int32(0)), C.TF_INT32}, 396 {reflect.TypeOf(uint32(0)), C.TF_UINT32}, 397 {reflect.TypeOf(uint8(0)), C.TF_UINT8}, 398 {reflect.TypeOf(int16(0)), C.TF_INT16}, 399 {reflect.TypeOf(int8(0)), C.TF_INT8}, 400 {reflect.TypeOf(""), C.TF_STRING}, [all …]
|
D | tensor_test.go | 102 if reflect.TypeOf(test.value).Kind() != reflect.Array {
|
/external/golang-protobuf/proto/ |
D | extensions.go | 174 t := reflect.TypeOf(ed.ExtensionType) 236 if a, b := reflect.TypeOf(pbi), reflect.TypeOf(extension.ExtendedType); a != b { 260 key := extPropKey{base: reflect.TypeOf(ed.ExtendedType), field: ed.Field} 277 prop.Init(reflect.TypeOf(ed.ExtensionType), "unknown_name", ed.Tag, nil) 383 t := reflect.TypeOf(extension.ExtensionType) 417 t := reflect.TypeOf(extension.ExtensionType) 505 typ := reflect.TypeOf(extension.ExtensionType) 506 if typ != reflect.TypeOf(value) { 542 st := reflect.TypeOf(desc.ExtendedType).Elem() 558 return extensionMaps[reflect.TypeOf(pb).Elem()]
|
D | properties.go | 260 var protoMessageType = reflect.TypeOf((*Message)(nil)).Elem() 299 marshalerType = reflect.TypeOf((*Marshaler)(nil)).Elem() 485 t := reflect.TypeOf(x) 499 if reflect.TypeOf(x).Kind() != reflect.Map { 506 t := reflect.TypeOf(x) 519 return revProtoTypes[reflect.TypeOf(x)] 527 return reflect.TypeOf(t)
|
D | pointer_reflect.go | 130 var int32ptr = reflect.TypeOf((*int32)(nil)) 147 if p.v.Type().Elem().Elem() == reflect.TypeOf(int32(0)) { 165 if p.v.Type().Elem().Elem() == reflect.TypeOf(int32(0)) { 183 if p.v.Type().Elem().Elem() == reflect.TypeOf(int32(0)) {
|
D | discard.go | 72 di = getDiscardInfo(reflect.TypeOf(m).Elem()) 245 if f.Type != reflect.TypeOf([]byte{}) { 333 if vf.Type() != reflect.TypeOf([]byte{}) {
|
D | extensions_test.go | 323 ty := reflect.TypeOf(val) 324 tyWant := reflect.TypeOf(test.ext.ExtensionType) 355 if typ := reflect.TypeOf(test.ext.ExtensionType); typ.Kind() == reflect.Ptr {
|
D | table_merge.go | 47 mi = getMergeInfo(reflect.TypeOf(dst).Elem()) 647 if f.Type != reflect.TypeOf([]byte{}) {
|
D | clone.go | 242 v := reflect.New(reflect.TypeOf(eIn.value)).Elem()
|
D | table_unmarshal.go | 59 u = getUnmarshalInfo(reflect.TypeOf(msg).Elem()) 293 if f.Type != reflect.TypeOf(([]byte)(nil)) { 301 if f.Type != reflect.TypeOf(XXX_InternalExtensions{}) { 312 if f.Type != reflect.TypeOf((map[int32]Extension)(nil)) { 373 tptr := reflect.TypeOf(v) // *Msg_X
|
/external/boringssl/src/util/fipstools/acvp/acvptool/ |
D | interactive.go | 578 resultType: reflect.TypeOf(&acvp.RequestStatus{}), 597 resultType: reflect.TypeOf(&acvp.Person{}), 605 resultType: reflect.TypeOf(&acvp.Address{}), 610 resultType: reflect.TypeOf(&acvp.Vendor{}), 623 resultType: reflect.TypeOf(&acvp.Person{}), 638 resultType: reflect.TypeOf(&acvp.Module{}), 648 resultType: reflect.TypeOf(&acvp.OperationalEnvironment{}), 660 resultType: reflect.TypeOf(&acvp.Dependency{}), 667 resultType: reflect.TypeOf(&acvp.Algorithm{}), 675 resultType: reflect.TypeOf(&acvp.TestSession{}),
|
/external/tensorflow/tensorflow/java/src/gen/cc/ |
D | op_specs.cc | 53 Type TypeOf(const OpDef_ArgDef& arg_def, bool* iterable_out); 92 Type TypeResolver::TypeOf(const OpDef_ArgDef& arg_def, bool* iterable_out) { in TypeOf() function in tensorflow::java::__anon373d94720111::TypeResolver 289 Type type = type_resolver->TypeOf(input_def, &iterable); in CreateInput() 324 Type type = type_resolver->TypeOf(output_def, &iterable); in CreateOutput()
|
/external/starlark-go/starlark/ |
D | unpack.go | 242 if !reflect.TypeOf(v).AssignableTo(paramVar.Type()) { 248 if !paramVar.Type().AssignableTo(reflect.TypeOf(new(Value)).Elem()) {
|
/external/llvm-project/clang/test/Modules/ |
D | odr_hash-gnu.cpp | 74 namespace TypeOf { namespace
|
/external/starlark-go/syntax/ |
D | walk_test.go | 40 strings.TrimPrefix(reflect.TypeOf(n).String(), "*syntax."))
|
D | parse_test.go | 380 if f.Type() == reflect.TypeOf(syntax.Position{}) { 387 if f.Type() == reflect.TypeOf(syntax.Token(0)) {
|
/external/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
D | acvp.go | 476 uint64Type = reflect.TypeOf(uint64(0)) 477 boolType = reflect.TypeOf(false) 478 stringType = reflect.TypeOf("")
|
/external/swiftshader/src/Vulkan/ |
D | CMakeLists.txt | 120 Debug/TypeOf.cpp 121 Debug/TypeOf.hpp
|
/external/llvm-project/clang/include/clang/Serialization/ |
D | TypeBitCodes.def | 29 TYPE_BIT_CODE(TypeOf, TYPEOF, 18)
|
/external/golang-protobuf/jsonpb/ |
D | jsonpb.go | 169 wktType = reflect.TypeOf((*wkt)(nil)).Elem() 170 messageType = reflect.TypeOf((*proto.Message)(nil)).Elem() 733 …if string(inputValue) == "null" && targetType != reflect.TypeOf(&stpb.Value{}) && !isJSONPBUnmarsh… 987 nv := reflect.New(reflect.TypeOf(ext.ExtensionType).Elem())
|
/external/llvm-project/flang/unittests/Evaluate/ |
D | intrinsics.cpp | 45 template <typename A> auto Const(A &&x) -> Constant<TypeOf<A>> { in Const() 46 return Constant<TypeOf<A>>{std::move(x)}; in Const()
|
/external/clang/include/clang/AST/ |
D | TypeNodes.def | 87 NON_CANONICAL_UNLESS_DEPENDENT_TYPE(TypeOf, Type)
|