Home
last modified time | relevance | path

Searched refs:ConstType (Results 1 – 5 of 5) sorted by relevance

/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/
Dcpp_types_test.go121 const_pointer := ConstType(PointerType(IntType))
125 const_pointer = PointerType(ConstType(IntType))
129 const_pointer = ConstType(PointerType(ConstType(IntType)))
136 const_pointer := ConstType(PointerType(ArrayType(IntType, 10)))
140 const_pointer = PointerType(ArrayType(ConstType(IntType), 10))
144 const_pointer = ConstType(PointerType(ArrayType(ConstType(IntType), 10)))
Dvulkan_xml.go660 field.Type().(cpp_types.ModifyablePtrType).ReplaceElem(cpp_types.ConstType(field_type))
946 cpp_types.PointerType(cpp_types.ConstType(pointee_type)),
954 cpp_types.PointerType(cpp_types.ConstType(cpp_types.OpaqueType(pointee_type_name))),
1058 member_type = cpp_types.ConstType(member_type)
1070 member_type = cpp_types.ConstType(member_type)
1080 member_type = cpp_types.PointerType(cpp_types.ConstType(cpp_types.PointerType(member_type)))
1089 member_type = cpp_types.ConstType(member_type)
Dvulkan_types.go57 cpp_types.PointerType(cpp_types.ConstType(cpp_types.Char16TType)))
Dgen_vulkan.go774 …param_type = cpp_types.PointerType(cpp_types.ConstType(param_type.Elem(cpp_types.FirstArch).Elem(c…
837 field_types = append(field_types, cpp_types.PointerType(cpp_types.ConstType(extra_type)))
850 …field_type = cpp_types.PointerType(cpp_types.ConstType(field_type.Elem(cpp_types.FirstArch).Elem(c…
1038 …field_type = cpp_types.ArrayType(cpp_types.ConstType(field_type.Elem(cpp_types.FirstArch)), field_…
1040 field_type = cpp_types.ConstType(field_type)
2911 field_type = cpp_types.ConstType(field_type)
Dcpp_types.go176 func ConstType(base_type Type) Type { func