/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | mir_symbol.cpp | 36 return StringUtils::StartsWith(GetName(), VTAB_PREFIX_STR) || StringUtils::StartsWith(GetName(), ITAB_PREFIX_STR) || in HasAddrOfValues() 37 StringUtils::StartsWith(GetName(), kVtabOffsetTabStr) || in HasAddrOfValues() 38 StringUtils::StartsWith(GetName(), kDecoupleStaticKeyStr) || IsClassInitBridge() || IsReflectionInfo() || in HasAddrOfValues() 45 return StringUtils::StartsWith(GetName(), kConstString); in IsLiteral() 50 return StringUtils::StartsWith(GetName(), kConstStringPtr); in IsLiteralPtr() 76 return StringUtils::StartsWith(GetName(), kReflectionStrtabPrefixStr) || in IsReflectionStrTab() 77 StringUtils::StartsWith(GetName(), kReflectionStartHotStrtabPrefixStr) || in IsReflectionStrTab() 78 StringUtils::StartsWith(GetName(), kReflectionBothHotStrTabPrefixStr) || in IsReflectionStrTab() 79 StringUtils::StartsWith(GetNam in IsReflectionStrTab() [all...] |
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | runtime_controller.cpp | 35 static bool StartsWith(std::string_view s, std::string_view prefix) in StartsWith() function 45 return StartsWith(path, DIR_DATA_DATA) || StartsWith(path, DIR_DATA_USER); in StartsWithData() 56 return StartsWith(fileName, "HMS-Ohos-"); in IsInPermitList()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | emit.cpp | 1080 if (StringUtils::StartsWith(stName, kLocalClassInfoStr)) { in EmitAsmLabel() 1287 bool isInOffsetTab = (idx == 1 || idx == methodTypeIdx) && (StringUtils::StartsWith(stName, kVtabOffsetTabStr) || in EmitAsmLabel() 1288 StringUtils::StartsWith(stName, kFieldOffsetTabStr)); in EmitAsmLabel() 1291 StringUtils::StartsWith(stName, kDecoupleStaticKeyStr); in EmitAsmLabel() 1294 StringUtils::StartsWith(stName, ITAB_CONFLICT_PREFIX_STR); in EmitAsmLabel() 1333 if (StringUtils::StartsWith(stName, kDecoupleStaticKeyStr)) { in EmitAsmLabel() 1346 if (StringUtils::StartsWith(stName, ITAB_PREFIX_STR)) { in EmitAsmLabel() 1349 if (StringUtils::StartsWith(stName, ITAB_CONFLICT_PREFIX_STR)) { in EmitAsmLabel() 1355 if ((idx == 1 || idx == methodTypeIdx) && StringUtils::StartsWith(stName, kVtabOffsetTabStr)) { in EmitAsmLabel() 1358 if ((idx == 1 || idx == fieldTypeIdx) && StringUtils::StartsWith(stNam in EmitAsmLabel() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | string_utils.h | 109 static bool StartsWith(const std::string &str, const std::string &start) in StartsWith() function in maple::StringUtils
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | pandargs.h | 764 if (StartsWith(param_str, "0x")) { in ParseIntArgParam() 809 if (StartsWith(param_str, DOUBLE_DASH)) { in ParseBoolArgParam() 867 if (StartsWith(param_str, "0x")) { in ParseUint64ArgParam() 898 if (StartsWith(param_str, "0x")) { in ParseUint32ArgParam() 1017 static bool StartsWith(const std::string &haystack, const std::string &needle) in StartsWith() function in panda::PandArgParser
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | pandargs.h | 765 if (StartsWith(paramStr, "0x")) { in ParseIntArgParam() 814 if (StartsWith(paramStr, DOUBLE_DASH)) { in ParseBoolArgParam() 872 if (StartsWith(paramStr, "0x")) { in ParseUint64ArgParam() 905 if (StartsWith(paramStr, "0x")) { in ParseUint32ArgParam() 1030 static bool StartsWith(const std::string &haystack, const std::string &needle) in StartsWith() function in ark::PandArgParser
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_string.h | 89 V("startsWith", StartsWith, 1, StringStartsWith) \ 209 static JSTaggedValue StartsWith(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_string.cpp | 1799 JSTaggedValue BuiltinsString::StartsWith(EcmaRuntimeCallInfo *argv) in StartsWith() function in BuiltinsString 1802 BUILTINS_API_TRACE(argv->GetThread(), String, StartsWith); in StartsWith()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_runtime_options.cpp | 1366 if (StartsWith(optarg, "0x")) { in ParseIntParam() 1382 if (StartsWith(optarg, "0x")) { in ParseUint32Param() 1399 if (StartsWith(optarg, "0x")) { in ParseUint64Param()
|
H A D | js_runtime_options.h | 1984 static bool StartsWith(const std::string& haystack, const std::string& needle) in StartsWith() function in panda::ecmascript::JSRuntimeOptions
|
H A D | runtime_call_id.h | 818 V(String, StartsWith) \
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_string.h | 227 EtsBoolean StartsWith(EtsString *prefix, EtsInt fromIndex) in StartsWith() function in ark::ets::EtsString
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
H A D | std_core_String.cpp | 509 return thisStr->StartsWith(prefix, fromIndex); in StdCoreStringStartsWith()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_call_signature.h | 73 V(StartsWith, String, TaggedFalse()) \
|
H A D | builtins_string_stub_builder.cpp | 2764 void BuiltinsStringStubBuilder::StartsWith(GateRef glue, GateRef thisValue, GateRef numArgs,
in StartsWith() function in panda::ecmascript::kungfu::BuiltinsStringStubBuilder
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_string_test.cpp | 81 return BuiltinsString::StartsWith(ecmaRuntimeCallInfos); in StringAlgorithmOther()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 476 reinterpret_cast<uintptr_t>(BuiltinsString::StartsWith),
|