Home
last modified time | relevance | path

Searched refs:limit (Results 1 – 25 of 41) sorted by relevance

12

/developtools/global_resource_tool/src/
Dselect_compile_parse.cpp38 vector<string> limit; in ParseTargetConfig() local
39 ResourceUtil::Split(it, limit, "["); in ParseTargetConfig()
40 if (limit.size() != 2) { // 2 means the size of the valid parameter after split by '[' in ParseTargetConfig()
43 ResourceUtil::RemoveSpaces(limit.back()); in ParseTargetConfig()
44 if (limit.size() < 2 || limit.back().back() != ']') { // 2 means characters other than ']' in ParseTargetConfig()
47 limit.back().pop_back(); in ParseTargetConfig()
49 ResourceUtil::Split(limit.back(), limitValues, ","); in ParseTargetConfig()
53 auto &limitType = limit.front(); in ParseTargetConfig()
95 void SelectCompileParse::InitMccmnc(vector<KeyParam> &limit) in InitMccmnc() argument
100 for (size_t i = 0; i < limit.size(); i++) { in InitMccmnc()
[all …]
Dresource_append.cpp407 …ceAppend::ScanRawFilesOrResFiles(const string &path, const string &outputPath, const string &limit) in ScanRawFilesOrResFiles() argument
422 ret = WriteRawFilesOrResFiles(child->GetFilePath().GetPath(), outputPath, limit); in ScanRawFilesOrResFiles()
424 ret = ScanRawFilesOrResFiles(child->GetFilePath().GetPath(), outputPath, limit); in ScanRawFilesOrResFiles()
434 …end::WriteRawFilesOrResFiles(const string &filePath, const string &outputPath, const string &limit) in WriteRawFilesOrResFiles() argument
436 string::size_type pos = filePath.find(limit); in WriteRawFilesOrResFiles()
445 auto iter = g_copyFileMap.find(limit); in WriteRawFilesOrResFiles()
/developtools/global_resource_tool/include/
Dselect_compile_parse.h30 … IsSelectableMccmnc(std::vector<KeyParam> &keyParams, size_t &index, std::vector<KeyParam> &limit);
31 … IsSelectableLocale(std::vector<KeyParam> &keyParams, size_t &index, std::vector<KeyParam> &limit);
32 …l IsSelectableOther(std::vector<KeyParam> &keyParams, size_t &index, std::vector<KeyParam> &limit);
33 static void InitMccmnc(std::vector<KeyParam> &limit);
34 static void InitLocale(std::vector<KeyParam> &limit);
Dresource_append.h55 …wFilesOrResFiles(const std::string &path, const std::string &outputPath, const std::string &limit);
56 …esOrResFiles(const std::string &filePath, const std::string &outputPath, const std::string &limit);
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpFreqChart.ts50 …let cpuFreqLimitsMax = await getCpuLimitFreqMax(cpuFreqLimits.map((limit) => limit.maxFilterId).jo…
197 for (let limit of cpuFreqLimits) {
200 return maxLimit.filterId == limit.maxFilterId;
204 cpuFreqLimitRow.rowId = `${limit.cpu}`;
208 cpuFreqLimitRow.name = `Cpu ${limit.cpu} Freq Limit`;
211 cpuFreqLimitRow.setAttribute('maxFilterId', `${limit.maxFilterId}`);
212 cpuFreqLimitRow.setAttribute('minFilterId', `${limit.minFilterId}`);
213 cpuFreqLimitRow.setAttribute('cpu', `${limit.cpu}`);
216 …return cpuFreqLimitSender(limit.maxFilterId, limit.minFilterId, limit.cpu, cpuFreqLimitRow).then((…
218 item.cpu = limit.cpu;
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLimitLine.ets21 * The limit line is an additional feature for all Line-, Bar- and
23 * that marks a certain maximum / limit on the specified axis (x- or y-axis).
28 /** limit / maximum (the y-value or xIndex) */
31 /** the width of the limit line */
34 /** the color of the limit line */
40 /** label string that is drawn next to the limit line */
49 constructor(limit: number, label?: string) {
51 this.mLimit = limit;
56 * Returns the limit that is set for this line.
79 * returns the width of limit line
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/freq/
DTabPaneCpuFreqLimits.ts76 let limit = new CpuFreqLimit();
77 limit.cpu = `Cpu ${item.cpu}`;
78 limit.time = time;
79 limit.type = isMax ? 'Max Freqency' : 'Min Frequency';
80 limit.value = isMax ? item.max! : item.min!;
81 limitsMap.set(id, limit);
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/utils/
DHapUtils.java373 int limit = source.limit(); in sliceBuffer() local
376 if ((targetLimit < position) || (targetLimit > limit)) { in sliceBuffer()
381 source.limit(targetLimit); in sliceBuffer()
387 source.limit(limit); in sliceBuffer()
397 int limit = source.limit(); in sliceBuffer() local
401 source.limit(endPos); in sliceBuffer()
407 source.limit(limit); in sliceBuffer()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/zip/
DByteBufferZipDataInput.java61 int limit = position + size; in createByteBuffer() local
64 buffer.limit(limit); in createByteBuffer()
DRandomAccessFileZipDataInput.java103 int originalLimit = buffer.limit(); in copyTo()
105 buffer.limit(buffer.position() + size); in copyTo()
116 buffer.limit(originalLimit); in copyTo()
/developtools/smartperf_host/ide/test/base-ui/popover/
DLitPopover.test.ts125 expect(litPopover.limit).toEqual({
141 expect(litPopover.limit).toEqual({
157 expect(litPopover.limit).toEqual({
/developtools/packing_tool/adapter/ohos/
DUtility.java768 public void setMainModuleLimit(String limit) { in setMainModuleLimit() argument
769 this.mainModuleLimit = limit; in setMainModuleLimit()
780 public void setNormalModuleLimit(String limit) { in setNormalModuleLimit() argument
781 this.normalModuleLimit = limit; in setNormalModuleLimit()
788 public void setTotalLimit(String limit) { in setTotalLimit() argument
789 this.totalLimit = limit; in setTotalLimit()
DHapVerifyInfo.java443 public void setEntrySizeLimit(int limit) { in setEntrySizeLimit() argument
444 this.entrySizeLimit = limit; in setEntrySizeLimit()
/developtools/bytrace/interfaces/kits/js/napi/
Dbytrace_napi_common.cpp168 double limit = 0.0; in JSTraceStart() local
169 if (!ParseDoubleParam(env, argv[THIRD_ARGC_INDEX], limit) && in JSTraceStart()
174 StartAsyncTrace(HITRACE_TAG_APP, name, taskId, limit); in JSTraceStart()
/developtools/hiperf/include/
Ddebug_logger.h204 static int limit = first; \
205 if (limit > 0) { \
207 if (--limit == 0) { \
/developtools/hiperf/interfaces/kits/js/
D@ohos.hiperf.d.ts221 function setDataLimit(limit: string): boolean;
/developtools/profiler/device/plugins/native_daemon/include/
Ddebug_logger.h189 static int limit = first; \
190 if (limit > 0) { \
192 if (--limit == 0) { \
/developtools/profiler/protos/services/
Dprofiler_service_types.proto60 …uint32 split_file_max_size_mb = 9; // limit the maximum size of a single split file, min size is 2…
61 uint32 split_file_max_num = 10; // limit the split file max num, default is 10
/developtools/smartperf_host/ide/src/base-ui/popover/
DLitPopover.ts322 get limit(): LimitText { method in LitPopover
/developtools/packing_tool/adapter/scanner/
DREADME_zh.md139 "taskDesc":"find files whose size exceed the limit size",
159 <td colspan="2">find files whose size exceed the limit size</td>
/developtools/profiler/device/plugins/memory_plugin/test/utresources/proc/
DdumpMem.txt95 cpu cache limit = 33554432 ( fontcache = 2097152 ):
283 gpu limit = 301989888 ( used = 45064738 ):
/developtools/smartperf_host/trace_streamer/src/protos/services/
Dprofiler_service_types.proto60 uint32 single_file_max_size_mb = 9; // limit the maximum size of a single file
/developtools/hiperf/interfaces/innerkits/native/include/
Dhiperf_client.h204 void SetDataLimit(const std::string &limit);
/developtools/hiperf/interfaces/innerkits/native/src/
Dhiperf_client.cpp246 void RecordOption::SetDataLimit(const std::string &limit) in SetDataLimit() argument
248 SetOption(ArgDataLimit, limit); in SetDataLimit()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/fsverity/
DMerkleTreeBuilder.java135 tempBuffer.limit(end); in slice()

12