/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | tailRecursiveConditionalTypes.ts | 22 type Trim<S extends string> = 23 S extends ` ${infer T}` ? Trim<T> : 24 S extends `${infer T} ` ? Trim<T> : 27 type T10 = Trim<' … 28 type T11 = Trim<' hello …
|
/arkcompiler/ets_runtime/ecmascript/ |
D | vtable.cpp | 68 void VTable::Trim(const JSThread *thread, uint32_t newLength) in Trim() function in panda::ecmascript::VTable 70 TaggedArray::Trim(thread, newLength * VTable::TUPLE_SIZE); in Trim()
|
D | vtable.h | 84 void Trim(const JSThread *thread, uint32_t newLength);
|
D | tagged_array.h | 85 inline void Trim(const JSThread *thread, uint32_t newLength);
|
D | tagged_array-inl.h | 242 void TaggedArray::Trim(const JSThread *thread, uint32_t newLength) in Trim() function
|
D | ecma_string.h | 461 …static EcmaString *Trim(const JSThread *thread, const JSHandle<EcmaString> &src, TrimMode mode = T… 1064 static EcmaString *Trim(const JSThread *thread, 1067 return EcmaString::Trim(thread, src, mode);
|
D | subtyping_operator.cpp | 183 vtable->Trim(thread, loc); in GenVTable()
|
D | js_stable_array.cpp | 73 elements->Trim(thread, index); in Pop() 160 srcElementsHandle->Trim(thread, newCapacity); in Splice() 207 elements->Trim(thread, index); in Shift()
|
D | js_object.cpp | 1335 retArray->Trim(thread, retArrayEffectivelength); in GetAllPropertyKeys() 1657 properties->Trim(thread, index); in EnumerableOwnPropertyNames() 1705 properties->Trim(thread, index); in EnumerableOwnPropertyNames()
|
D | ecma_string.cpp | 868 EcmaString *EcmaString::Trim(const JSThread *thread, const JSHandle<EcmaString> &src, TrimMode mode) in Trim() function in panda::ecmascript::EcmaString
|
D | runtime_call_id.h | 714 V(String, Trim) \
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_string.h | 104 static JSTaggedValue Trim(EcmaRuntimeCallInfo *argv);
|
D | builtins_string.cpp | 1695 JSTaggedValue BuiltinsString::Trim(EcmaRuntimeCallInfo *argv) in Trim() function in panda::ecmascript::builtins::BuiltinsString 1698 BUILTINS_API_TRACE(argv->GetThread(), String, Trim); in Trim() 1705 EcmaString *res = EcmaStringAccessor::Trim(thread, thisHandle, EcmaString::TrimMode::TRIM); in Trim() 1719 … EcmaString *res = EcmaStringAccessor::Trim(thread, thisHandle, EcmaString::TrimMode::TRIM_START); in TrimStart() 1733 EcmaString *res = EcmaStringAccessor::Trim(thread, thisHandle, EcmaString::TrimMode::TRIM_END); in TrimEnd() 1747 … EcmaString *res = EcmaStringAccessor::Trim(thread, thisHandle, EcmaString::TrimMode::TRIM_START); in TrimLeft() 1761 EcmaString *res = EcmaStringAccessor::Trim(thread, thisHandle, EcmaString::TrimMode::TRIM_END); in TrimRight()
|
D | builtins.cpp | 1784 SetFunction(env, stringFuncPrototype, "trim", BuiltinsString::Trim, FunctionLength::ZERO); in InitializeString()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | class_info_extractor.cpp | 162 keys->Trim(thread, trimOneLength); in ExtractAndReturnWhetherWithElements() 163 properties->Trim(thread, trimOneLength); in ExtractAndReturnWhetherWithElements() 169 keys->Trim(thread, pos); in ExtractAndReturnWhetherWithElements() 170 properties->Trim(thread, pos); in ExtractAndReturnWhetherWithElements()
|
D | literal_data_extractor.cpp | 206 literals->Trim(thread, oldLength - 1); in EnumerateLiteralVals() 462 literals->Trim(thread, oldLength - 1); in GetDatasIgnoreType()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | tagged_array_test.cpp | 170 HWTEST_F_L0(TaggedArrayTest, Trim) in HWTEST_F_L0() argument 190 taggedArray->Trim(thread, newArrayLength); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.h | 147 std::string Trim(const std::string &str);
|
D | debugger_impl.cpp | 1019 std::string DebuggerImpl::Trim(const std::string &str) in Trim() function in panda::ecmascript::tooling::DebuggerImpl 1395 varName = Trim(expression.substr(0, indexEqual)); in CmptEvaluateValue() 1396 varValue = Trim(expression.substr(indexEqual + 1, expression.length())); in CmptEvaluateValue()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
D | js_api_vector.cpp | 441 elements->Trim(thread, length); in TrimToCurrentLength()
|
D | js_api_arraylist.cpp | 121 elements->Trim(thread, length); in TrimToCurrentLength()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_string_test.cpp | 865 JSTaggedValue result = BuiltinsString::Trim(ecmaRuntimeCallInfo); in HWTEST_F_L0() 888 JSTaggedValue result = BuiltinsString::Trim(ecmaRuntimeCallInfo); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 507 reinterpret_cast<uintptr_t>(BuiltinsString::Trim),
|