Home
last modified time | relevance | path

Searched refs:static_type (Results 1 – 9 of 9) sorted by relevance

/external/libcxxabi/src/
Dprivate_typeinfo.cpp281 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
290 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
322 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
620 __dynamic_cast(const void *static_ptr, const __class_type_info *static_type, in __dynamic_cast() argument
637 …__dynamic_cast_info info = {dst_type, static_ptr, static_type, src2dst_offset, 0, 0, 0, 0, 0, 0, 0… in __dynamic_cast()
655 ", %s.\n", static_type->name(), dynamic_type->name()); in __dynamic_cast()
657 info = {dst_type, static_ptr, static_type, src2dst_offset, 0}; in __dynamic_cast()
679 "%s, %s, %s.\n", static_type->name(), dynamic_type->name(), in __dynamic_cast()
682 info = {dst_type, static_ptr, static_type, src2dst_offset, 0}; in __dynamic_cast()
844 if (is_equal(this, info->static_type, use_strcmp)) in search_below_dst()
[all …]
Dprivate_typeinfo.h75 const __class_type_info* static_type; member
/external/llvm-project/libcxxabi/src/
Dprivate_typeinfo.cpp283 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
292 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
324 if (is_equal(this, info->static_type, false)) in has_unambiguous_public_base()
622 __dynamic_cast(const void *static_ptr, const __class_type_info *static_type, in __dynamic_cast() argument
654 …__dynamic_cast_info info = {dst_type, static_ptr, static_type, src2dst_offset, 0, 0, 0, 0, 0, 0, 0… in __dynamic_cast()
676 ", %s.\n", static_type->name(), dynamic_type->name()); in __dynamic_cast()
678 info = {dst_type, static_ptr, static_type, src2dst_offset, 0}; in __dynamic_cast()
704 "%s, %s, %s.\n", static_type->name(), dynamic_type->name(), in __dynamic_cast()
707 info = {dst_type, static_ptr, static_type, src2dst_offset, 0}; in __dynamic_cast()
869 if (is_equal(this, info->static_type, use_strcmp)) in search_below_dst()
[all …]
Dprivate_typeinfo.h74 const __class_type_info* static_type; member
/external/skqp/src/sksl/
DSkSLContext.h128 , fGSampler1D_Type(new Type("$gsampler1D", static_type(*fSampler1D_Type))) in Context()
129 , fGSampler2D_Type(new Type("$gsampler2D", static_type(*fSampler2D_Type))) in Context()
130 , fGSampler3D_Type(new Type("$gsampler3D", static_type(*fSampler3D_Type))) in Context()
131 , fGSamplerCube_Type(new Type("$gsamplerCube", static_type(*fSamplerCube_Type))) in Context()
132 , fGSampler2DRect_Type(new Type("$gsampler2DRect", static_type(*fSampler2DRect_Type))) in Context()
134 static_type(*fSampler1DArray_Type))) in Context()
136 static_type(*fSampler2DArray_Type))) in Context()
138 static_type(*fSamplerCubeArray_Type))) in Context()
139 , fGSamplerBuffer_Type(new Type("$gsamplerBuffer", static_type(*fSamplerBuffer_Type))) in Context()
140 , fGSampler2DMS_Type(new Type("$gsampler2DMS", static_type(*fSampler2DMS_Type))) in Context()
[all …]
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp271 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType() local
272 Flags static_type_flags(static_type.GetTypeInfo()); in FixUpDynamicType()
296 ret.SetCompilerType(static_type); in FixUpDynamicType()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.cpp278 CompilerType static_type(static_value.GetCompilerType()); in FixUpDynamicType() local
279 Flags static_type_flags(static_type.GetTypeInfo()); in FixUpDynamicType()
299 ret.SetCompilerType(static_type); in FixUpDynamicType()
/external/llvm-project/lldb/source/Symbol/
DType.cpp823 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() argument
826 SetType(static_type, dynamic_type); in TypeImpl()
/external/flatbuffers/src/
Didl_gen_swift.cpp197 std::string static_type = this->namespace_depth == 0 ? "" : "static "; in GenStructWriter() local
198 code_ += "public " + static_type + "func create{{STRUCTNAME}}(\\"; in GenStructWriter()