Home
last modified time | relevance | path

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

/aosp12/art/runtime/verifier/
H A Dregister_line-inl.h133 const RegType& check_type) { in VerifyRegisterType() argument
136 if (UNLIKELY(!check_type.IsAssignableFrom(src_type, verifier))) { in VerifyRegisterType()
138 if (!check_type.IsNonZeroReferenceTypes() || !src_type.IsNonZeroReferenceTypes()) { in VerifyRegisterType()
141 } else if (check_type.IsUninitializedTypes() || src_type.IsUninitializedTypes()) { in VerifyRegisterType()
144 } else if (check_type.IsUnresolvedTypes() || src_type.IsUnresolvedTypes()) { in VerifyRegisterType()
150 << src_type << " but expected " << check_type; in VerifyRegisterType()
151 if (check_type.IsNonZeroReferenceTypes() && in VerifyRegisterType()
152 !check_type.IsUnresolvedTypes() && in VerifyRegisterType()
153 check_type.HasClass() && in VerifyRegisterType()
157 DumpB77342775DebugData(check_type.GetClass(), src_type.GetClass()); in VerifyRegisterType()
[all …]
H A Dregister_line.h138 const RegType& check_type)
/aosp12/system/core/fastboot/
H A Dfastboot.bash19 if ! check_type "$1" >/dev/null; then
23 if check_type _init_completion >/dev/null; then
138 if [[ $(check_type compopt) == "builtin" ]]; then
178 if [[ $(check_type compopt) == "builtin" ]]; then
/aosp12/packages/modules/adb/
H A Dadb.bash19 if ! check_type "$1" >/dev/null; then
23 if check_type _init_completion >/dev/null; then
438 if [[ $(check_type compopt) == "builtin" ]]; then
454 if [[ $(check_type compopt) == "builtin" ]]; then
495 if [[ $(check_type compopt) == "builtin" ]]; then
/aosp12/build/soong/scripts/
H A Dlint_project_xml.py26 def check_action(check_type): argument
37 checks.append((check_type, values))
/aosp12/system/tools/hidl/c2hal/
H A Dc2hal_l.ll51 int check_type(yyscan_t yyscanner, struct yyguts_t *yyg);
/aosp12/build/make/
H A Denvsetup.sh1766 function check_type() { type -t "$1"; } function
1769 function check_type() { type "$1"; } function
/aosp12/build/
H A Denvsetup.sh1766 function check_type() { type -t "$1"; } function
1769 function check_type() { type "$1"; } function
/aosp12/art/dex2oat/driver/
H A Dcompiler_driver.cc482 ProfileMethodsCheck check_type = in CompileMethodQuick() local
484 if (UNLIKELY(check_type != ProfileMethodsCheck::kNone)) { in CompileMethodQuick()
493 switch (check_type) { in CompileMethodQuick()