Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 35) sorted by relevance

12

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/smaps/
DTabPaneSmapsStatistics.ts323 this.totalTree.sort((previous, next) => next.size - previous.size);
340 this.sortArray.sort((previous, next) => {
341 return next.size - previous.size;
350 this.sortArray.sort((previous, next) => {
351 return sort === 1 ? previous.size - next.size : next.size - previous.size;
355 this.sortArray.sort((previous, next) => {
356 return sort === 1 ? previous.size - next.size : next.size - previous.size;
360 this.sortArray.sort((previous, next) => {
361 return sort === 1 ? previous.count - next.count : next.count - previous.count;
365 this.sortArray.sort((previous, next) => {
[all …]
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Ddata.js33 let next = 0
36 for (let i = next; i < v.length; i++) {
42 getValue(next, start, v, res)
44 next = start + match[0].length
46 getValue(next, v.length, v, res)
/developtools/smartperf_host/trace_streamer/src/proto_reader/
Dproto_reader.cpp72 result.next = cursor; in ParseVarIntValue()
89 result.next = cursor + length; in ParseLengthDelimitedValue()
111 result.next = cursor; in ParseFixed64Value()
127 result.next = cursor; in ParseFixed32Value()
150 result.next = cursor; in ParseOneDataArea()
186 currentReadAddr_ = result.next; in ReadNextDataArea()
197 cur = result.next; in ParseAllDataAreas()
220 currentReadAddr_ = result.next; in ParseAllDataAreas()
/developtools/smartperf_host/ide/src/base-ui/chart/pagenation/
DPageNation.ts21 next: any; property in PageNation
42 this.next = null;
159 this.next = this.origin.cloneNode(true);
160 this.next.innerText = '>';
161 this.next.name = 'next';
162 this.next.style.padding = '5px 10px';
163 this.next.style.margin = '0px 5px';
164 this.element.appendChild(this.next);
200 this.setElementStyles(this.next, disable);
203 this.setElementStyles(this.next, enable);
/developtools/profiler/hiebpf/include/
Dhiebpf_macros.h137 for (pos = (head)->next; pos != (head); pos = pos->next)
155 for (pos = (head)->first; pos ; pos = pos->next)
/developtools/profiler/hidebug/frameworks/native/
Dhidebug_base.c96 char *next = NULL; in SplitParams() local
97 param = strtok_s(input, space, &next); in SplitParams()
100 param = strtok_s(NULL, space, &next); in SplitParams()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLimitLine.ets40 /** label string that is drawn next to the limit line */
144 * Sets the color of the value-text that is drawn next to the LimitLine.
154 * Returns the color of the value-text that is drawn next to the LimitLine.
182 * Sets the label that is drawn next to the limit line. Provide "" if no
192 * Returns the label that is drawn next to the limit line.
/developtools/smartperf_host/ide/
DREADME_zh.md26 - windows系统中, 用安装包一路next即可
68 - windows 系统下 从 https://golang.google.cn/dl/ 下载安装包, 一路next 完成 安装即可
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/profile/
DVerifyHelper.java117 X509CertificateHolder next = iterator.next(); in certStoreToCertList() local
118 certificateList.add(converter.getCertificate(next)); in certStoreToCertList()
/developtools/profiler/hiebpf/src/
Dbpf_controller.cpp804 __u32 next = last_ + 1; in NextActiveReceiver() local
807 if (next >= total) { in NextActiveReceiver()
808 next -= total; in NextActiveReceiver()
810 if (receivers_[next]->Running() or next == last_) { in NextActiveReceiver()
813 ++next; in NextActiveReceiver()
815 if (receivers_[next]->Running()) { in NextActiveReceiver()
816 last_ = next; in NextActiveReceiver()
/developtools/global_resource_tool/src/
Dkey_parser.cpp58 size_t next = 0; in ParseMatch() local
61 for (size_t i = next; i < founctions.size(); i++) { in ParseMatch()
64 next = i; in ParseMatch()
/developtools/packing_tool/adapter/ohos/
DScanStatSuffix.java270 String next = iterator.next(); in setMapData() local
272 paramModelSuffix.setSuffix(next); in setMapData()
273 if (next.equalsIgnoreCase(FILE_TYPE_SO)) { in setMapData()
275 List<FileInfo> fileInfoList = sameSuffixMap.get(next); in setMapData()
298 List<FileInfo> fileInfoList = sameSuffixMap.get(next); in setMapData()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyUtils.java67 X509CertificateHolder cert = collection.iterator().next(); in verifyCmsSignedData()
DHapVerify.java313 X509CRLHolder crlHolder = iterator.next(); in getCrlList()
334 X509CertificateHolder next = iterator.next(); in certStoreToCertList() local
335 certificateList.add(certificateConverter.getCertificate(next)); in certStoreToCertList()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/utils/
DCmsUtils.java64 X509CertificateHolder cert = collection.iterator().next(); in verifyCmsSignedData()
/developtools/profiler/host/smartperf/client/client_command/
Dparse_start_frame_trace.cpp103 int next = i + 1; in GetFps() local
104 result = startTimeArr[next].times - endTimeArr[i].times; in GetFps()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/
DJsonUtils.ets22 var key = iterator.next().value;
DGameUtils.ets185 let key: number = allKeysIterator.next().value
/developtools/ace_ets2bundle/compiler/sample/pages/testcases/
DforEachComplexModel.ets43 Text('next month')
/developtools/hiperf/include/
Dhashlist.hpp861 Link* next = pnode->link_.next_; in MoveToHead() local
862 prev->next_ = next; in MoveToHead()
863 next->prev_ = prev; in MoveToHead()
876 Link* next = pnode->link_.next_; in MoveToTail() local
877 prev->next_ = next; in MoveToTail()
878 next->prev_ = prev; in MoveToTail()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DJList.ets95 next() {
DJArrayList.ets115 next() {
/developtools/profiler/device/plugins/native_daemon/include/
Dhashlistpp.h860 Link* next = pnode->link_.next_; in MoveToHead() local
861 prev->next_ = next; in MoveToHead()
862 next->prev_ = prev; in MoveToHead()
875 Link* next = pnode->link_.next_; in MoveToTail() local
876 prev->next_ = next; in MoveToTail()
877 next->prev_ = prev; in MoveToTail()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DLineChartRenderer.ets254 let next = cur;
287 cur = nextIndex == j ? next : dataSet.getEntryForIndex(j);
290 next = dataSet.getEntryForIndex(nextIndex);
294 curDx = (next.getX() - prev.getX()) * intensity;
/developtools/smartperf_host/trace_streamer/src/proto_reader/include/
Dproto_reader.h185 const uint8_t* next; member

12