Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 55) sorted by relevance

123

/developtools/global_resource_tool/src/
Dresource_item.cpp28 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 …]
Dresource_module.cpp78 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/smartperf_host/trace_streamer/src/base/
Dindex_map.cpp168 bool IndexMap::MergeIndexTypeId(IndexMap* other) in MergeIndexTypeId() argument
170 if (indexType_ != INDEX_TYPE_ID && other->indexType_ != INDEX_TYPE_ID) { in MergeIndexTypeId()
173 …if ((other->start_ >= start_ && other->start_ <= end_) || (start_ >= other->start_ && start_ <= ot… in MergeIndexTypeId()
174 start_ = std::min(start_, other->start_); in MergeIndexTypeId()
175 end_ = std::max(end_, other->end_); in MergeIndexTypeId()
176 } else if (start_ > other->start_) { in MergeIndexTypeId()
178 other->CovertToIndexMap(); in MergeIndexTypeId()
179 const std::vector<TableRowId> b = other->rowIndex_; in MergeIndexTypeId()
189 other->CovertToIndexMap(); in MergeIndexTypeId()
190 std::vector<TableRowId> c = other->rowIndex_; in MergeIndexTypeId()
[all …]
Dargs_set.h28 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/global_resource_tool/include/
Dresource_data.h176 bool operator == (const KeyParam &other)
178 return keyType == other.keyType && value == other.value;
280 bool operator == (const Mccmnc &other)
282 if (mcc.value != other.mcc.value) {
285 if (mnc.keyType != KeyType::OTHER && other.mnc.keyType != KeyType::OTHER &&
286 mnc.value != other.mnc.value) {
297 bool operator == (const Locale &other)
299 if (language.value != other.language.value) {
302 if (script.keyType != KeyType::OTHER && other.script.keyType != KeyType::OTHER &&
303 script.value != other.script.value) {
[all …]
Dresource_item.h28 ResourceItem(const ResourceItem &other);
46 ResourceItem &operator=(const ResourceItem &other);
49 void CopyFrom(const ResourceItem &other);
Dresource_module.h34 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/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dob_config_resolver.ts103 merge(other: ObOptions) {
104 this.disableObfuscation = this.disableObfuscation || other.disableObfuscation;
105 …this.enablePropertyObfuscation = this.enablePropertyObfuscation || other.enablePropertyObfuscation;
106 …this.enableToplevelObfuscation = this.enableToplevelObfuscation || other.enableToplevelObfuscation;
107 …this.enableStringPropertyObfuscation = this.enableStringPropertyObfuscation || other.enableStringP…
108 this.removeComments = this.removeComments || other.removeComments;
109 this.compact = this.compact || other.compact;
110 this.removeLog = this.removeLog || other.removeLog;
111 …this.enableFileNameObfuscation = this.enableFileNameObfuscation || other.enableFileNameObfuscation;
112 this.enableExportObfuscation = this.enableExportObfuscation || other.enableExportObfuscation;
[all …]
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/
DTop20FrequencyThread.ts211 let other: any = {
222 other.time += res[i].time;
223 other.timeStr = getProbablyTime(other.time);
224 other.totalDur = res[i].totalDur;
225 other.ratio = ((other.time / other.totalDur) * 100).toFixed(2);
228 pieChartArr.push(other);
/developtools/profiler/host/smartperf/client/client_command/include/
Dprofiler_fps.h42 bool operator==(const FpsInfoProfiler& other) const
44 if (fps != other.fps) {
47 if (jitters.size() != other.jitters.size()) {
51 if (jitters[i] != other.jitters[i]) {
DFPS.h34 bool operator==(const FpsInfo& other) const
36 if (fps != other.fps) {
39 if (jitters.size() != other.jitters.size()) {
43 if (jitters[i] != other.jitters[i]) {
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/entity/
DPair.java81 Pair other = (Pair) obj; in equals() local
82 return compare(mFirst, other.mFirst) && compare(mSecond, other.mSecond); in equals()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.ts960 let other: any = { variable
985 other.existCount += res[i].existCount;
986 other.existSize += res[i].existSize;
987 other.applySize += res[i].applySize;
988 other.applyCount += res[i].applyCount;
989 other.releaseSize += res[i].releaseSize;
990 other.releaseCount += res[i].releaseCount;
991 other.existSizeFormat = Utils.getBinaryByteWithUnit(other.existSize);
992 other.applySizeFormat = Utils.getBinaryByteWithUnit(other.applySize);
993 other.releaseSizeFormat = Utils.getBinaryByteWithUnit(other.releaseSize);
[all …]
/developtools/integration_verification/tools/deps_guard/elf_file_mgr/
Delf_file.py37 def __eq__(self, other): argument
38 if not isinstance(other, ElfFile):
41 return self["path"] == other["path"]#and self["name"] == other["name"]
Delf_file_mgr.py32 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/
DFSize.ets62 var other:FSize= obj as FSize;
63 return this.width == other.width && this.height == other.height;
/developtools/smartperf_host/trace_streamer/src/proto_reader/include/
Dproto_reader.h284 TypedProtoReader(TypedProtoReader&& other) noexcept : ProtoReaderBase(std::move(other)) in TypedProtoReader() argument
286 if (dataAreas_ == other.defaultStorage_) { in TypedProtoReader()
288 …memcpy_s(defaultStorage_, sizeof(defaultStorage_), other.defaultStorage_, sizeof(defaultStorage_)); in TypedProtoReader()
/developtools/hapsigner/
DNOTICE49 other entities that control, are controlled by, or are under common
66 and conversions to other media types.
75 editorial revisions, annotations, elaborations, or other modifications
127 (a) You must give any other recipients of the Work or
195 other commercial damages or losses), even if such Contributor
201 or other liability obligations and/or rights consistent with this
204 of any other Contributor, and only if You agree to indemnify,
254 other entities that control, are controlled by, or are under common
271 and conversions to other media types.
280 editorial revisions, annotations, elaborations, or other modifications
[all …]
/developtools/hdc/
DREADME.md13 …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/
Dsubcommand_stat.cpp422 bool other = FindPerCoreEventCount(summary, cpuCyclesCount, otherScale); in GetDetailComments() local
423 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetDetailComments()
431 bool other = FindPerCoreEventCount(summary, branchInstructionsCount, otherScale); in GetDetailComments() local
432 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetDetailComments()
505 bool other = FindEventCount(countEvents, cpuSyclesName, it->second->id, cpuCyclesCount, in GetComments() local
507 if (other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) { in GetComments()
518 bool other = FindEventCount(countEvents, branchInsName, it->second->id, in GetComments() local
520 if ((other || (IsMonitoredAtAllTime(otherScale) && IsMonitoredAtAllTime(scale))) && in GetComments()
/developtools/ace_js2bundle/
DLICENSE17 other entities that control, are controlled by, or are under common
34 and conversions to other media types.
43 editorial revisions, annotations, elaborations, or other modifications
95 (a) You must give any other recipients of the Work or
163 other commercial damages or losses), even if such Contributor
169 or other liability obligations and/or rights consistent with this
172 of any other Contributor, and only if You agree to indemnify,
/developtools/ace_ets2bundle/
DLICENSE17 other entities that control, are controlled by, or are under common
34 and conversions to other media types.
43 editorial revisions, annotations, elaborations, or other modifications
95 (a) You must give any other recipients of the Work or
163 other commercial damages or losses), even if such Contributor
169 or other liability obligations and/or rights consistent with this
172 of any other Contributor, and only if You agree to indemnify,
/developtools/syscap_codec/
DLICENSE17 other entities that control, are controlled by, or are under common
34 and conversions to other media types.
43 editorial revisions, annotations, elaborations, or other modifications
95 (a) You must give any other recipients of the Work or
163 other commercial damages or losses), even if such Contributor
169 or other liability obligations and/or rights consistent with this
172 of any other Contributor, and only if You agree to indemnify,
/developtools/smartperf_host/ide/
DLICENSE17 other entities that control, are controlled by, or are under common
34 and conversions to other media types.
43 editorial revisions, annotations, elaborations, or other modifications
95 (a) You must give any other recipients of the Work or
163 other commercial damages or losses), even if such Contributor
169 or other liability obligations and/or rights consistent with this
172 of any other Contributor, and only if You agree to indemnify,
/developtools/packing_tool/
DLICENSE17 other entities that control, are controlled by, or are under common
34 and conversions to other media types.
43 editorial revisions, annotations, elaborations, or other modifications
95 (a) You must give any other recipients of the Work or
163 other commercial damages or losses), even if such Contributor
169 or other liability obligations and/or rights consistent with this
172 of any other Contributor, and only if You agree to indemnify,

123