Home
last modified time | relevance | path

Searched refs:IsEmptyString (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp171 EXPECT_TRUE(NumberHelper::IsEmptyString(&a[i], &a[i] + 1)); in HWTEST_F_L0()
181 EXPECT_FALSE(NumberHelper::IsEmptyString(&a[i], &a[i] + 1)); in HWTEST_F_L0()
190 EXPECT_FALSE(NumberHelper::IsEmptyString(&a[i], &a[i] + 1)); in HWTEST_F_L0()
201 EXPECT_TRUE(NumberHelper::IsEmptyString(&b, &b + 1)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/
Dnumber_helper.h99 static bool IsEmptyString(const uint8_t *start, const uint8_t *end);
Dnumber_helper.cpp85 bool NumberHelper::IsEmptyString(const uint8_t *start, const uint8_t *end) in IsEmptyString() function in panda::ecmascript::base::NumberHelper
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_number.cpp174 if (NumberHelper::IsEmptyString(str.begin(), str.end())) { in ParseFloat()