Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/lexer/
Dlexer.cpp452 size_t cpSize = 0; in ScanTemplateString() local
455 char32_t cp = Iterator().PeekCp(&cpSize); in ScanTemplateString()
515 Iterator().Forward(cpSize); in ScanTemplateString()
532 size_t cpSize {}; in ScanStringUnicodePart() local
533 char32_t cp = Iterator().PeekCp(&cpSize); in ScanStringUnicodePart()
552 Iterator().Forward(cpSize); in ScanStringUnicodePart()
615 Iterator().Forward(cpSize); in ScanStringUnicodePart()
1017 size_t cpSize {}; in ScanRegExpPattern() local
1020 switch (Iterator().PeekCp(&cpSize)) { in ScanRegExpPattern()
1058 Iterator().Forward(cpSize); in ScanRegExpPattern()
[all …]
DkeywordsUtil.cpp236 size_t cpSize {}; in ScanIdContinue() local
237 auto cp = Iterator().PeekCp(&cpSize); in ScanIdContinue()
242 Iterator().Forward(cpSize); in ScanIdContinue()
/arkcompiler/ets_frontend/es2panda/util/
Dustring.h168 inline char32_t PeekCp(size_t *cpSize) const in PeekCp() argument
170 return DecodeCP<false, true>(cpSize); in PeekCp()
219 char32_t DecodeCP([[maybe_unused]] size_t *cpSize) const;
327 char32_t StringView::Iterator::DecodeCP([[maybe_unused]] size_t *cpSize) const in DecodeCP() argument
380 *cpSize = iterNext - iter_; in DecodeCP()
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_manager.cpp1246 uint32_t cpSize = oldCP->GetCacheLength(); in GenerateSnapshotConstantPoolList() local
1251 LOG_COMPILER(INFO) << "[aot-snapshot] constantPoolSize: " << cpSize; in GenerateSnapshotConstantPoolList()
1254 JSHandle<ConstantPool> newCp = factory_->NewConstantPool(cpSize + valVecSize); in GenerateSnapshotConstantPoolList()