| /developtools/global_resource_tool/src/ |
| D | resource_item.cpp | 28 ResourceItem::ResourceItem(const ResourceItem &other) in ResourceItem() argument 30 CopyFrom(other); in ResourceItem() 117 ResourceItem &ResourceItem::operator=(const ResourceItem &other) in operator =() argument 119 if (this == &other) { in operator =() 122 CopyFrom(other); in operator =() 136 void ResourceItem::CopyFrom(const ResourceItem &other) in CopyFrom() argument 138 name_ = other.name_; in CopyFrom() 139 keyparams_ = other.keyparams_; in CopyFrom() 140 type_ = other.type_; in CopyFrom() 141 dataLen_ = other.dataLen_; in CopyFrom() [all …]
|
| D | resource_module.cpp | 78 const map<int32_t, vector<ResourceItem>> &other, bool tipError) in MergeResourceItem() argument 80 for (const auto &iter : other) { in MergeResourceItem() 108 void ResourceModule::Push(const map<int32_t, std::vector<ResourceItem>> &other) in Push() argument 110 for (const auto &iter : other) { in Push()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/base/ |
| D | index_map.cpp | 166 void IndexMap::Merge(IndexMap* other) in Merge() argument 168 if (indexType_ == INDEX_TYPE_ID && other->indexType_ == INDEX_TYPE_ID) { in Merge() 169 …if ((other->start_ >= start_ && other->start_ <= end_) || (start_ >= other->start_ && start_ <= ot… in Merge() 170 start_ = std::min(start_, other->start_); in Merge() 171 end_ = std::max(end_, other->end_); in Merge() 172 } else if (start_ > other->start_) { in Merge() 174 other->CovertToIndexMap(); in Merge() 175 const std::vector<TableRowId> b = other->rowIndex_; in Merge() 185 other->CovertToIndexMap(); in Merge() 186 std::vector<TableRowId> c = other->rowIndex_; in Merge() [all …]
|
| D | args_set.h | 28 ArgsSet& operator=(const ArgsSet& other) 30 this->valuesMap_ = other.valuesMap_; 31 this->argSetId_ = other.argSetId_; 32 this->sliceId_ = other.sliceId_; 33 this->inserted_ = other.inserted_;
|
| /developtools/smartperf_host/trace_streamer/src/base/ |
| D | index_map.cpp | 168 void IndexMap::Merge(IndexMap* other) in Merge() argument 170 if (indexType_ == INDEX_TYPE_ID && other->indexType_ == INDEX_TYPE_ID) { in Merge() 171 …if ((other->start_ >= start_ && other->start_ <= end_) || (start_ >= other->start_ && start_ <= ot… in Merge() 172 start_ = std::min(start_, other->start_); in Merge() 173 end_ = std::max(end_, other->end_); in Merge() 174 } else if (start_ > other->start_) { in Merge() 176 other->CovertToIndexMap(); in Merge() 177 const std::vector<TableRowId> b = other->rowIndex_; in Merge() 187 other->CovertToIndexMap(); in Merge() 188 std::vector<TableRowId> c = other->rowIndex_; in Merge() [all …]
|
| D | args_set.h | 28 ArgsSet& operator=(const ArgsSet& other) 30 this->valuesMap_ = other.valuesMap_; 31 this->argSetId_ = other.argSetId_; 32 this->sliceId_ = other.sliceId_; 33 this->inserted_ = other.inserted_;
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/schedulingAnalysis/ |
| D | Top20FrequencyThread.ts | 204 let other: any = { 215 other.time += res[i].time; 216 other.timeStr = getProbablyTime(other.time); 217 other.totalDur = res[i].totalDur; 218 other.ratio = ((other.time / other.totalDur) * 100).toFixed(2); 221 pieChartArr.push(other);
|
| /developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/ |
| D | Top20FrequencyThread.ts | 206 let other: any = { 217 other.time += res[i].time; 218 other.timeStr = getProbablyTime(other.time); 219 other.totalDur = res[i].totalDur; 220 other.ratio = ((other.time / other.totalDur) * 100).toFixed(2); 223 pieChartArr.push(other);
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/ |
| D | ob_config_resolver.ts | 93 merge(other: ObOptions) { 94 this.disableObfuscation = this.disableObfuscation || other.disableObfuscation; 95 …this.enablePropertyObfuscation = this.enablePropertyObfuscation || other.enablePropertyObfuscation; 96 …this.enableToplevelObfuscation = this.enableToplevelObfuscation || other.enableToplevelObfuscation; 97 …this.enableStringPropertyObfuscation = this.enableStringPropertyObfuscation || other.enableStringP… 98 this.compact = this.compact || other.compact; 99 this.removeLog = this.removeLog || other.removeLog; 100 if (other.printNameCache.length > 0) { 101 this.printNameCache = other.printNameCache; 103 if (other.applyNameCache.length > 0) { [all …]
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/entity/ |
| D | Pair.java | 81 Pair other = (Pair) obj; in equals() local 82 return compare(mFirst, other.mFirst) && compare(mSecond, other.mSecond); in equals()
|
| /developtools/global_resource_tool/include/ |
| D | resource_item.h | 28 ResourceItem(const ResourceItem &other); 46 ResourceItem &operator=(const ResourceItem &other); 49 void CopyFrom(const ResourceItem &other);
|
| D | resource_module.h | 34 const std::map<int32_t, std::vector<ResourceItem>> &other, bool tipError = false); 43 void Push(const std::map<int32_t, std::vector<ResourceItem>> &other);
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/ |
| D | TabPaneNMStatisticAnalysis.ts | 924 let other: any = { variable 948 other.existCount += res[i].existCount; 949 other.existSize += res[i].existSize; 950 other.applySize += res[i].applySize; 951 other.applyCount += res[i].applyCount; 952 other.releaseSize += res[i].releaseSize; 953 other.releaseCount += res[i].releaseCount; 954 other.existSizeFormat = Utils.getBinaryByteWithUnit(other.existSize); 955 other.applySizeFormat = Utils.getBinaryByteWithUnit(other.applySize); 956 other.releaseSizeFormat = Utils.getBinaryByteWithUnit(other.releaseSize); [all …]
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/native-memory/ |
| D | TabPaneNMStatisticAnalysis.ts | 914 let other: any = { variable 938 other.existCount += res[i].existCount; 939 other.existSize += res[i].existSize; 940 other.applySize += res[i].applySize; 941 other.applyCount += res[i].applyCount; 942 other.releaseSize += res[i].releaseSize; 943 other.releaseCount += res[i].releaseCount; 944 other.existSizeFormat = Utils.getBinaryByteWithUnit(other.existSize); 945 other.applySizeFormat = Utils.getBinaryByteWithUnit(other.applySize); 946 other.releaseSizeFormat = Utils.getBinaryByteWithUnit(other.releaseSize); [all …]
|
| /developtools/integration_verification/tools/deps_guard/elf_file_mgr/ |
| D | elf_file.py | 37 def __eq__(self, other): argument 38 if not isinstance(other, ElfFile): 41 return self["path"] == other["path"]#and self["name"] == other["name"]
|
| D | elf_file_mgr.py | 32 def __eq__(self, other): argument 33 if not isinstance(other, ElfFileWithDepsInfo): 36 return self["id"] == other["id"] 60 def __eq__(self, other): argument 61 if not isinstance(other, Dependency): 64 return self["id"] == other["id"]#and self["name"] == other["name"]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/ |
| D | FSize.ets | 62 var other:FSize= obj as FSize; 63 return this.width == other.width && this.height == other.height;
|
| /developtools/hiperf/include/ |
| D | mem_map_item.h | 58 inline bool operator<(const MemMapItem &other) const 60 return end_ < other.end_;
|
| /developtools/smartperf_host/trace_streamer/src/proto_reader/include/ |
| D | proto_reader.h | 281 TypedProtoReader(TypedProtoReader&& other) noexcept : ProtoReaderBase(std::move(other)) in TypedProtoReader() argument 283 if (dataAreas_ == other.defaultStorage_) { in TypedProtoReader() 285 …memcpy_s(defaultStorage_, sizeof(defaultStorage_), other.defaultStorage_, sizeof(defaultStorage_)); in TypedProtoReader()
|
| /developtools/profiler/host/smartperf/trace_streamer/src/proto_reader/include/ |
| D | proto_reader.h | 281 TypedProtoReader(TypedProtoReader&& other) noexcept : ProtoReaderBase(std::move(other)) in TypedProtoReader() argument 283 if (dataAreas_ == other.defaultStorage_) { in TypedProtoReader() 285 …memcpy_s(defaultStorage_, sizeof(defaultStorage_), other.defaultStorage_, sizeof(defaultStorage_)); in TypedProtoReader()
|
| /developtools/profiler/device/plugins/native_daemon/include/ |
| D | mem_map_item.h | 88 inline bool operator<(const MemMapItem &other) const 90 return end_ < other.end_;
|
| /developtools/hdc/ |
| D | README.md | 13 …c below). This tool needs to support deployment on Windows/Linux /Mac and other systems to connect… 19 …nt machine (windows cmd/linux shell), running on the development machine, other terminal debugging… 61 …t above ubuntu 16.04, and other similar versions are also available; libc++.so quotes errors, plea…
|
| /developtools/hiperf/src/ |
| D | subcommand_stat.cpp | 427 bool other = FindPerCoreEventCount(summary, cpuCyclesCount, otherScale); in GetDetailComments() local 428 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetDetailComments() 436 bool other = FindPerCoreEventCount(summary, branchInstructionsCount, otherScale); in GetDetailComments() local 437 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetDetailComments() 510 bool other = FindEventCount(countEvents, cpuSyclesName, it->second->id, cpuCyclesCount, in GetComments() local 512 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetComments() 523 bool other = FindEventCount(countEvents, branchInsName, it->second->id, in GetComments() local 525 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetComments()
|
| /developtools/profiler/host/smartperf/doc/ |
| D | des_stat.md | 30 |other | 409 | other | received | info | 410 | other | data_lost | error | 411 | other | not_match | info | 412 | other | not_supported | warn | 413 | other | invalid_data | error |
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/hiperf/ |
| D | TabPanePerfAnalysis.ts | 749 let other: any = { variable 759 other.count += res[i].count; 760 … other.countFormat = Utils.timeMsFormat2p(other.count * (SpHiPerf.stringResult?.fValue || 1)); 762 other.percent = ((other.count / this.sumCount) * 100).toFixed(2); 765 pieChartArr.push(other);
|