/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | pgo_bc_info.cpp | 19 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()
|
D | pgo_bc_info.h | 44 void Record(const InfoDetail &detail); 88 void Record(const InfoDetail &detail, Type type);
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/ |
D | NapiLog.js | 35 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);
|
D | LogParser.js | 162 for (let detail of cutResult) { 163 let w = X2DFast.gi().getTextWidth(detail, 14);
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/ |
D | RightMenu.js | 31 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/ |
D | customEventDetail.ts | 37 let y = x.detail.name; 39 AssertType(x.detail.name, "any");
|
/arkcompiler/ets_runtime/ecmascript/ |
D | global_dictionary.h | 67 const PropertyAttributes &detail);
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | class_info_extractor.cpp | 102 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()
|
D | class_info_extractor.h | 86 const ExtractContentsDetail &detail,
|
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.cpp | 196 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/ |
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/runtime_core/libpandabase/ |
D | README.md | 17 The more detail description of each type is in "Usage" section below.
|
/arkcompiler/runtime_core/docs/ |
D | design-of-interpreter.md | 171 but this is an implementation detail which is hidden behind the interfaces
|