Home
last modified time | relevance | path

Searched refs:detail (Results 1 - 17 of 17) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dpgo_bc_info.cpp20 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 Dpgo_bc_info.h49 void Record(const InfoDetail &detail);
111 void Record(const InfoDetail &detail, Type type);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
H A DNapiLog.js35 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 DLogParser.js166 for (let detail of cutResult) {
167 let w = X2DFast.gi().getTextWidth(detail, 14);
/arkcompiler/ets_frontend/ets2panda/ir/visitor/
H A DIterateAstVisitor.h40 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 DRightMenu.js32 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 Dets_to_string_cache.h45 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 Dets_to_string_cache.cpp21 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 Dets_type_comptime_traits.h25 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 Dets_to_string_cache_test.cpp203 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 Dmutex.h245 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 Dglobal_dictionary.h66 const PropertyAttributes &detail);
/arkcompiler/toolchain/tooling/agent/
H A Ddebugger_impl.cpp300 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 Dclass_info_extractor.cpp124 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 Dclass_info_extractor.h103 const ExtractContentsDetail &detail,
/arkcompiler/toolchain/tooling/test/
H A Dpt_types_test.cpp62 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 Dcocos_worker_test.js[all...]

Completed in 41 milliseconds