Home
last modified time | relevance | path

Searched refs:type_descriptor (Results 1 – 10 of 10) sorted by relevance

/aosp12/libnativehelper/include_platform_header_only/nativehelper/detail/
H A Dsignature_checker.h706 static constexpr const char type_descriptor[] = "(illegal)"; member
716 ConstexprStringView type_descriptor; member
727 TR::type_descriptor, in Reify()
744 MostSimilarTypeDescriptor(ConstexprStringView type_descriptor);
750 && rhs.type_descriptor == lhs.type_descriptor &&
767 static constexpr const char type_descriptor[] = the_type_descriptor; \
813 char shorty = type_descriptor.size() >= 1 ? type_descriptor[0] : '\0'; in DEFINE_JNI_TYPE_TRAIT()
818 } else if (type_descriptor.size() >= 2) { in DEFINE_JNI_TYPE_TRAIT()
819 auto shorty_shorty = type_descriptor.substr(/*start*/0, /*size*/2u); in DEFINE_JNI_TYPE_TRAIT()
1301 JniDescriptorNode{reified_signature.ret.type_descriptor};
[all …]
/aosp12/art/dexlayout/
H A Ddexlayout.cc438 const char* type_descriptor = field_id->Type()->GetStringId()->Data(); in IndexString() local
1030 std::string type_descriptor = GetSignatureForProtoId(method_id->Proto()); in DumpBytecodes() local
1179 fprintf(out_file_, " type : '%s'\n", type_descriptor); in DumpMethod()
1216 const char* return_type = strrchr(type_descriptor, ')'); in DumpMethod()
1236 if (type_descriptor[0] != '(') { in DumpMethod()
1237 LOG(ERROR) << "ERROR: bad descriptor '" << type_descriptor << "'"; in DumpMethod()
1241 const char* base = type_descriptor + 1; in DumpMethod()
1276 free(type_descriptor); in DumpMethod()
1295 const char* type_descriptor = field_id->Type()->GetStringId()->Data(); in DumpSField() local
1302 fprintf(out_file_, " type : '%s'\n", type_descriptor); in DumpSField()
[all …]
/aosp12/art/runtime/
H A Dsdk_checker.h61 bool ShouldDenyAccess(const char* type_descriptor) const;
H A Daot_class_linker.cc263 bool AotClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor) const { in DenyAccessBasedOnPublicSdk()
264 return sdk_checker_ != nullptr && sdk_checker_->ShouldDenyAccess(type_descriptor); in DenyAccessBasedOnPublicSdk()
H A Daot_class_linker.h48 bool DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const override;
H A Dclass_linker.h846 virtual bool DenyAccessBasedOnPublicSdk(const char* type_descriptor) const;
H A Dclass_linker.cc10235 bool ClassLinker::DenyAccessBasedOnPublicSdk(const char* type_descriptor ATTRIBUTE_UNUSED) const { in DenyAccessBasedOnPublicSdk()
/aosp12/art/compiler/debug/
H A Delf_debug_info_writer.h494 void WriteLazyType(const char* type_descriptor) { in WriteLazyType() argument
495 if (type_descriptor != nullptr && type_descriptor[0] != 'V') { in WriteLazyType()
496 lazy_types_.emplace(std::string(type_descriptor), info_.size()); in WriteLazyType()
/aosp12/frameworks/base/startop/view_compiler/
H A Ddex_builder.cc284 for (const auto& type_descriptor : param_types_) { in Shorty() local
285 shorty.append(type_descriptor.short_descriptor()); in Shorty()
/aosp12/libnativehelper/tests/
H A DJniSafeRegisterNativeMethods_test.cpp30 constexpr char nativehelper::detail::jni_type_trait<jtype>::type_descriptor[]; \