Searched refs:RegExpExecResultCache (Results 1 – 6 of 6) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_regexp.cpp | 171 JSHandle<RegExpExecResultCache> cacheTable(thread->GetCurrentEcmaContext()->GetRegExpCache()); in Exec() 525 JSHandle<RegExpExecResultCache> cacheTable(thread->GetCurrentEcmaContext()->GetRegExpCache()); in Match() 567 … RegExpExecResultCache::EXEC_TYPE, thisObj, in Match() 579 … RegExpExecResultCache::MATCH_TYPE, thisObj, in Match() 621 … RegExpExecResultCache::AddResultInCache(thread, cacheTable, pattern, flags, inputString, in Match() 623 RegExpExecResultCache::MATCH_TYPE, 0, 0); in Match() 778 JSHandle<RegExpExecResultCache> cacheTable(thread->GetCurrentEcmaContext()->GetRegExpCache()); in RegExpReplaceFast() 794 … RegExpExecResultCache::REPLACE_TYPE, regexp, in RegExpReplaceFast() 850 … RegExpExecResultCache::AddResultInCache(thread, cacheTable, pattern, flagsBits, tagInputString, in RegExpReplaceFast() 852 … RegExpExecResultCache::REPLACE_TYPE, lastIndexInput, lastIndex, in RegExpReplaceFast() [all …]
|
| D | builtins_regexp.h | 146 class RegExpExecResultCache : public TaggedArray { 156 static RegExpExecResultCache *Cast(TaggedObject *object) in Cast() 158 return reinterpret_cast<RegExpExecResultCache *>(object); in Cast() 168 static void AddResultInCache(JSThread *thread, JSHandle<RegExpExecResultCache> cache, 175 static void GrowRegexpCache(JSThread *thread, JSHandle<RegExpExecResultCache> cache);
|
| D | builtins_string.cpp | 631 … JSHandle<RegExpExecResultCache> cacheTable(thread->GetCurrentEcmaContext()->GetRegExpCache()); in Match() 636 … RegExpExecResultCache::MATCH_TYPE, regexp, in Match() 869 … JSHandle<RegExpExecResultCache> cacheTable(thread->GetCurrentEcmaContext()->GetRegExpCache()); in Replace() 874 … RegExpExecResultCache::REPLACE_TYPE, searchTag, in Replace()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_vm.h | 53 class RegExpExecResultCache; variable
|
| D | ecma_context.h | 48 class RegExpExecResultCache; variable
|
| D | ecma_context.cpp | 752 regexpCache_ = builtins::RegExpExecResultCache::CreateCacheTable(thread_); in SetupRegExpResultCache()
|