Home
last modified time | relevance | path

Searched refs:detail (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dpgo_bc_info.cpp19 void PGOBCInfo::Info::Record(const InfoDetail &detail) in Record() argument
21 auto it = methodOffsetToValVec_.find(detail.methodOffset); in Record()
23 methodOffsetToValVec_[detail.methodOffset] = in Record()
24 ValVec { Val { detail.bcIndex, detail.bcOffset, detail.cpIndex} }; in Record()
26 it->second.emplace_back(Val{ detail.bcIndex, detail.bcOffset, detail.cpIndex }); in Record()
28 recordNameToValCount_[detail.recordName]++; in Record()
55 void PGOBCInfo::Record(const InfoDetail &detail, Type type) in Record() argument
59 info.Record(detail); in Record()
Dpgo_bc_info.h44 void Record(const InfoDetail &detail);
88 void Record(const InfoDetail &detail, Type type);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/
DNapiLog.js35 function saveLog(dateStr, levStr, detail) { argument
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);
DLogParser.js162 for (let detail of cutResult) {
163 let w = X2DFast.gi().getTextWidth(detail, 14);
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/
DRightMenu.js31 static Reset(detail, x, y) { argument
35 detail: detail, property
39 static Append(detail) { argument
41 RightMenu.MENU.detail.push(...detail);
78 RightMenu.MENU.detail,
181 if (RightMenu.TouchGroup(RightMenu.MENU.detail, msg, x, y)) {
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcustomEventDetail.ts37 let y = x.detail.name;
39 AssertType(x.detail.name, "any");
/arkcompiler/ets_runtime/ecmascript/
Dglobal_dictionary.h67 const PropertyAttributes &detail);
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dclass_info_extractor.cpp102 const ExtractContentsDetail &detail, in ExtractAndReturnWhetherWithElements() argument
112 uint32_t pos = detail.fillStartLoc; in ExtractAndReturnWhetherWithElements()
114 bool isStaticFlag = (detail.methodLiteral != nullptr); in ExtractAndReturnWhetherWithElements()
120 …for (uint32_t index = detail.extractBegin; index < detail.extractEnd; index += 2) { // 2: key-val… in ExtractAndReturnWhetherWithElements()
155 EntityId methodId = detail.methodLiteral->GetMethodId(); in ExtractAndReturnWhetherWithElements()
Dclass_info_extractor.h86 const ExtractContentsDetail &detail,
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp196 BreakpointDetails detail; in NotifyPaused() local
198 auto scriptFunc = [this, &location, &detail, &extractor](PtScript *script) -> bool { in NotifyPaused()
199 detail.url_ = script->GetUrl(); in NotifyPaused()
203 auto callbackLineFunc = [&detail](int32_t line) -> bool { in NotifyPaused()
204 detail.line_ = line; in NotifyPaused()
207 auto callbackColumnFunc = [&detail](int32_t column) -> bool { in NotifyPaused()
208 detail.column_ = column; in NotifyPaused()
220 hitBreakpoints.emplace_back(BreakpointDetails::ToString(detail)); in NotifyPaused()
/arkcompiler/toolchain/tooling/test/
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/runtime_core/libpandabase/
DREADME.md17 The more detail description of each type is in "Usage" section below.
/arkcompiler/runtime_core/docs/
Ddesign-of-interpreter.md171 but this is an implementation detail which is hidden behind the interfaces