/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pgo_bc_info.cpp | 20 void PGOBCInfo::Info::Record(const InfoDetail &detail) in Record() argument 22 auto it = methodOffsetToValVec_.find(detail.methodOffset); in Record() 24 methodOffsetToValVec_[detail.methodOffset] = in Record() 25 ValVec { Val { detail.bcIndex, detail.bcOffset, detail.cpIndex} }; in Record() 27 it->second.emplace_back(Val{ detail.bcIndex, detail.bcOffset, detail.cpIndex }); in Record() 29 recordNameToValCount_[detail in Record() 56 Record(const InfoDetail &detail, Type type) Record() argument [all...] |
H A D | pgo_bc_info.h | 49 void Record(const InfoDetail &detail); 111 void Record(const InfoDetail &detail, Type type);
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/ |
H A D | NapiLog.js | 35 function saveLog(dateStr, levStr, detail) { 37 let logStr = dateStr + ' ' + levStr + ' ' + detail + '\n'; 52 let detail = args.join(' '); 53 saveLog(dataStr, LEV_STR[lev], detail); 55 logResultMessage = [false, detail]; 56 if (errorCallBack != null) errorCallBack(detail); 59 console.log(dataStr, LEV_STR[lev], detail);
|
H A D | LogParser.js | 166 for (let detail of cutResult) { 167 let w = X2DFast.gi().getTextWidth(detail, 14);
|
/arkcompiler/ets_frontend/ets2panda/ir/visitor/ |
H A D | IterateAstVisitor.h | 40 namespace detail { namespace 69 } // namespace detail 76 class IterateAstVisitor : public detail::DefaultBehaviourAstVisitor { 93 class EmptyAstVisitor : public detail::DefaultBehaviourAstVisitor { 100 class AbortAstVisitor : public detail::DefaultBehaviourAstVisitor { 110 using CustomAstVisitor = detail::DefaultBehaviourAstVisitor;
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/ |
H A D | RightMenu.js | 32 static Reset(detail, x, y) { 36 detail: detail, 40 static Append(detail) { 42 RightMenu.MENU.detail.push(...detail); 79 RightMenu.MENU.detail, 182 if (RightMenu.TouchGroup(RightMenu.MENU.detail, msg, x, y)) {
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/ |
H A D | ets_to_string_cache.h | 45 namespace detail { namespace 108 } // namespace detail 110 class DoubleToStringCache : public detail::EtsToStringCache<EtsDouble, DoubleToStringCache> {}; 111 class FloatToStringCache : public detail::EtsToStringCache<EtsFloat, FloatToStringCache> {}; 112 class LongToStringCache : public detail::EtsToStringCache<EtsLong, LongToStringCache> {};
|
H A D | ets_to_string_cache.cpp | 21 namespace ark::ets::detail { namespace in ark::ets 338 auto *etsClass = detail::EtsToStringCacheElement<T>::GetClass(coro); in Create() 361 } // namespace ark::ets::detail
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_type_comptime_traits.h | 25 namespace detail { namespace 121 } // namespace detail 124 using EtsTypeEnumToCppType = typename detail::EtsTypeEnumToCppTypeT<TYPE>::Type; 127 using EtsTypeEnumToEtsArrayType = typename detail::EtsTypeEnumToEtsArrayTypeT<TYPE>::Type;
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_to_string_cache_test.cpp | 203 ASSERT(detail::EtsToStringCacheElement<T>::STRING_OFFSET == in CheckCacheElementMembers() 204 MEMBER_OFFSET(detail::EtsToStringCacheElement<T>, data_)); in CheckCacheElementMembers() 211 auto *klass = detail::EtsToStringCacheElement<T>::GetClass(EtsCoroutine::GetCurrent()); in CheckCacheElementMembers() 213 MirrorFieldInfo("string", detail::EtsToStringCacheElement<T>::STRING_OFFSET), in CheckCacheElementMembers() 214 MirrorFieldInfo("lock", detail::EtsToStringCacheElement<T>::FLAG_OFFSET), in CheckCacheElementMembers() 215 MIRROR_FIELD_INFO(detail::EtsToStringCacheElement<T>, number_, "number")}; in CheckCacheElementMembers()
|
/arkcompiler/runtime_core/static_core/libpandabase/os/ |
H A D | mutex.h | 245 namespace detail { namespace 295 } // namespace detail 300 detail::LockMutex<TYPE>(lock); in Lock() 306 detail::LockMutex<TYPE>(lock0); 307 int failedIndex = detail::TryLock<TYPE>(rest...);
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | global_dictionary.h | 66 const PropertyAttributes &detail);
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 300 BreakpointDetails detail; in NotifyPaused() local 302 auto scriptFunc = [this, &location, &detail, &extractor](PtScript *script) -> bool { in NotifyPaused() 303 detail.url_ = script->GetUrl(); in NotifyPaused() 307 auto callbackLineFunc = [&detail](int32_t line) -> bool { in NotifyPaused() 308 detail.line_ = line; in NotifyPaused() 311 auto callbackColumnFunc = [&detail](int32_t column) -> bool { in NotifyPaused() 312 detail.column_ = column; in NotifyPaused() 324 hitBreakpoints.emplace_back(BreakpointDetails::ToString(detail)); in NotifyPaused() 344 BreakpointDetails detail; in GeneratePausedInfo() local 345 hitBreakpoints.emplace_back(BreakpointDetails::ToString(detail)); in GeneratePausedInfo() [all...] |
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | class_info_extractor.cpp | 124 const ExtractContentsDetail &detail, in ExtractAndReturnWhetherWithElements() 134 uint32_t pos = detail.fillStartLoc; in ExtractAndReturnWhetherWithElements() 136 bool isStaticFlag = (detail.methodLiteral != nullptr); in ExtractAndReturnWhetherWithElements() 142 for (uint32_t index = detail.extractBegin; index < detail.extractEnd; index += 2) { // 2: key-value pair in ExtractAndReturnWhetherWithElements() 177 EntityId methodId = detail.methodLiteral->GetMethodId(); in ExtractAndReturnWhetherWithElements() 123 ExtractAndReturnWhetherWithElements(JSThread *thread, const JSHandle<TaggedArray> &literal, const ExtractContentsDetail &detail, JSHandle<TaggedArray> &keys, JSHandle<TaggedArray> &properties, JSHandle<TaggedArray> &elements, const JSPandaFile *jsPandaFile) ExtractAndReturnWhetherWithElements() argument
|
H A D | class_info_extractor.h | 103 const ExtractContentsDetail &detail,
|
/arkcompiler/toolchain/tooling/test/ |
H A D | pt_types_test.cpp | 62 BreakpointDetails detail; in HWTEST_F_L0() local 63 bool result = BreakpointDetails::ParseBreakpointId(input, &detail); in HWTEST_F_L0() 66 result = BreakpointDetails::ParseBreakpointId(input, &detail); in HWTEST_F_L0() 69 result = BreakpointDetails::ParseBreakpointId(input, &detail); in HWTEST_F_L0() 72 result = BreakpointDetails::ParseBreakpointId(input, &detail); in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | [all...] |