Searched refs:merge (Results 1 - 25 of 102) sorted by relevance

12345

/frameworks/base/core/java/android/net/metrics/
H A DNetworkMetrics.java65 * Get currently pending Summary statistics, if any, for this NetworkMetrics, merge them
72 summary.merge(s);
135 void merge(Summary that) { method in class:NetworkMetrics.Summary
136 dnsLatencies.merge(that.dnsLatencies);
137 dnsErrorRate.merge(that.dnsErrorRate);
138 connectLatencies.merge(that.connectLatencies);
139 connectErrorRate.merge(that.connectErrorRate);
140 tcpLossRate.merge(that.tcpLossRate);
170 void merge(Metrics that) { method in class:NetworkMetrics.Metrics
/frameworks/compile/libbcc/lib/
H A DScript.cpp55 // the merge process ensures there is a same-named metadata node in
81 if (!mSource->merge(*libclcore_source)) {
90 bool Script::mergeSource(Source &pSource) { return mSource->merge(pSource); }
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h32 /// merge - process the strings in the given input .debug_str section and add
34 void merge(LDSection& pSection);
/frameworks/support/work/workmanager/src/main/java/androidx/work/
H A DInputMerger.java26 * An abstract class that allows the user to define how to merge a list of inputs to a Worker.
39 public abstract @NonNull Data merge(@NonNull List<Data> inputs); method in class:InputMerger
H A DOverwritingInputMerger.java35 public @NonNull Data merge(@NonNull List<Data> inputs) { method in class:OverwritingInputMerger
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttribute.h56 /// merge - merge attributes from input (attribute) section
57 bool merge(const Input& pInput, LDSection& pInputAttrSectHdr);
88 /// merge - Merge the attributes from the section in the input data.
89 bool merge(const Input& pInput, ConstAddress pData, size_t pSize);
H A DELFAttributeData.h58 /// preMerge - hooks to call before starting merge the attribute data in an
62 /// merge - implement logics to merge input attribute to the output.
63 virtual bool merge(const LinkerConfig& pConfig,
68 /// postMerge - hooks to call after finishing merge the attribute data from an
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsAbiFlags.h45 /// merge new abi settings to the old structure
46 static bool merge(const Input& pInput, MipsAbiFlags& oldFlags,
/frameworks/base/tools/aapt2/tools/
H A Dextract_unicode_properties.py24 def merge(self, other): member in class:CharacterProperty
63 result[len(result) - 1].merge(char_prop)
/frameworks/native/include/ui/
H A DFence.h87 // merge combines two Fence objects, creating a new Fence object that
91 static sp<Fence> merge(const char* name, const sp<Fence>& f1,
94 static sp<Fence> merge(const String8& name, const sp<Fence>& f1,
H A DRegion.h77 const Region merge(const Rect& rhs) const;
83 const Region merge(const Region& rhs) const;
97 const Region merge(const Region& rhs, int dx, int dy) const;
182 return merge(rhs);
/frameworks/native/libs/ui/include/ui/
H A DFence.h87 // merge combines two Fence objects, creating a new Fence object that
91 static sp<Fence> merge(const char* name, const sp<Fence>& f1,
94 static sp<Fence> merge(const String8& name, const sp<Fence>& f1,
H A DRegion.h77 const Region merge(const Rect& rhs) const;
83 const Region merge(const Region& rhs) const;
97 const Region merge(const Region& rhs, int dx, int dy) const;
182 return merge(rhs);
/frameworks/native/libs/ui/include_vndk/ui/
H A DFence.h87 // merge combines two Fence objects, creating a new Fence object that
91 static sp<Fence> merge(const char* name, const sp<Fence>& f1,
94 static sp<Fence> merge(const String8& name, const sp<Fence>& f1,
H A DRegion.h77 const Region merge(const Rect& rhs) const;
83 const Region merge(const Region& rhs) const;
97 const Region merge(const Region& rhs, int dx, int dy) const;
182 return merge(rhs);
/frameworks/native/libs/ui/
H A DFence.cpp72 sp<Fence> Fence::merge(const char* name, const sp<Fence>& f1, function in class:android::Fence
77 // valid fence (e.g. NO_FENCE) we merge the one valid fence with itself so
90 ALOGE("merge: sync_merge(\"%s\", %d, %d) returned an error: %s (%d)",
98 sp<Fence> Fence::merge(const String8& name, const sp<Fence>& f1, function in class:android::Fence
100 return merge(name.string(), f1, f2);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameQueue.java57 FrameType result = FrameType.merge(mWriteType, mReadType);
59 result = FrameType.merge(result, queue.mType);
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DLockTargetStateAnalysis.java87 public BasicValue merge(BasicValue v1, BasicValue v2) { method in class:LockTargetStateAnalysis
88 BasicValue base = super.merge(v1, v2);
/frameworks/base/libs/incident/include/android/os/
H A DIncidentReportArgs.h60 void merge(const IncidentReportArgs& that);
/frameworks/compile/libbcc/include/bcc/
H A DSource.h75 bool merge(Source &pSource);
/frameworks/compile/mclinker/lib/Target/
H A DELFAttribute.cpp38 bool ELFAttribute::merge(const Input& pInput, LDSection& pInputAttrSectHdr) { function in class:mcld::ELFAttribute
113 if (!subsection->merge(pInput, vendor_data, vendor_data_size))
186 bool ELFAttribute::Subsection::merge(const Input& pInput, function in class:mcld::ELFAttribute::Subsection
254 // to a temporary storage in_attr and perform the merge.
265 !m_AttrData.merge(m_Parent.config(), pInput, tag, in_attr)) {
266 // Fail to merge the attribute.
/frameworks/base/services/backup/java/com/android/server/backup/transport/
H A DTransportStats.java59 mTransportStats.values().stream().reduce(Stats::merge);
84 public static Stats merge(Stats a, Stats b) { method in class:TransportStats.Stats
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsCallSession.aidl178 * Merges the active & hold call. When the merge starts,
180 * {@link Listener#callSessionMergeComplete} is called if the merge is successful, and
181 * {@link Listener#callSessionMergeFailed} is called if the merge fails.
186 void merge();
/frameworks/native/include/gui/
H A DLayerState.h81 void merge(const layer_state_t& other);
149 void merge(const DisplayState& other);
/frameworks/native/libs/gui/include/gui/
H A DLayerState.h81 void merge(const layer_state_t& other);
149 void merge(const DisplayState& other);

Completed in 7467 milliseconds

12345