Searched refs:isFast (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | json_helper.cpp | 62 bool isFast = IsFastValueToQuotedString(str); // fast mode in AppendValueToQuotedString() local 63 if (isFast) { in AppendValueToQuotedString()
|
H A D | json_parser.cpp | 515 bool isFast = true; in ParseNumber() local 517 bool isNumber = ReadNumberRange(isFast, fastInteger); in ParseNumber() 522 if (isFast) { in ParseNumber() 915 bool JsonParser<T>::ReadNumberRange(bool &isFast, int32_t &fastInteger) 925 isFast = false; 942 isFast = false; 950 isFast = false;
|
H A D | json_parser.h | 188 bool ReadNumberRange(bool &isFast, int32_t &fastInteger);
|
H A D | number_helper.cpp | 268 bool isFast = DtoaHelper::FixedDtoa(absValue, digitNumber, 270 if (!isFast) {
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_object_stub_builder.cpp | 1229 Label isFast(env);
in Keys() 1231 BRANCH(IsNotSlowObjectKey(obj), &isFast, slowPath);
in Keys() local 1232 Bind(&isFast);
in Keys() 1489 Label isFast(env);
in GetOwnPropertyNames() 1490 BRANCH(IsNotSlowObjectKey(obj), &isFast, slowPath);
in GetOwnPropertyNames() local 1491 Bind(&isFast);
in GetOwnPropertyNames() 1597 Label isFast(env);
in GetOwnPropertySymbols() 1598 BRANCH(IsNotSlowObjectKey(obj), &isFast, slowPath);
in GetOwnPropertySymbols() local 1599 Bind(&isFast);
in GetOwnPropertySymbols() 1864 Label isFast(en in Entries() 1865 BRANCH(IsNotSlowObjectKey(obj), &isFast, slowPath); Entries() local 2238 BRANCH(IsNotSlowObjectKey(obj), &isFast, slowPath); GetOwnPropertyDescriptors() local [all...] |
/arkcompiler/ets_runtime/ecmascript/ |
H A D | shared_object_factory.cpp | 228 bool isFast = kungfu::BuiltinsStubCSigns::IsFastBuiltin(builtinId); in NewSMethodForNativeFunction() local 229 method->SetFastBuiltinBit(isFast); in NewSMethodForNativeFunction()
|
H A D | object_factory.cpp | 127 bool isFast = kungfu::BuiltinsStubCSigns::IsFastBuiltin(builtinId); in NewMethodForNativeFunction() local 128 method->SetFastBuiltinBit(isFast); in NewMethodForNativeFunction()
|
Completed in 20 milliseconds