HomeSort by relevance Sort by last modified time
    Searched defs:merge (Results 226 - 250 of 1524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
validate_cfg.cpp 90 << " is already a merge block for another header";
131 exit_name = "merge block";
136 exit_name = "merge block";
208 auto merge = construct.exit_block(); local
210 if (header->reachable() && !merge) {
222 if (merge && merge->reachable()) {
223 if (!header->dominates(*merge)) {
226 _.getIdName(merge->id()), "does not dominate");
228 // If it's really a merge block for a selection or loop, then it must b
    [all...]
  /system/core/libutils/include/utils/
SortedVector.h 116 ssize_t merge(const Vector<TYPE>& vector);
117 ssize_t merge(const SortedVector<TYPE>& vector);
235 ssize_t SortedVector<TYPE>::merge(const Vector<TYPE>& vector) { function in class:android::SortedVector
236 return SortedVectorImpl::merge(reinterpret_cast<const VectorImpl&>(vector));
240 ssize_t SortedVector<TYPE>::merge(const SortedVector<TYPE>& vector) { function in class:android::SortedVector
241 return SortedVectorImpl::merge(reinterpret_cast<const SortedVectorImpl&>(vector));
  /toolchain/binutils/binutils-2.27/gold/
attributes.cc 387 // Merge target-independent attributes from another Attribute_section_data
391 Attributes_section_data::merge( function in class:gold::Attributes_section_data
  /tools/loganalysis/src/com/android/loganalysis/item/
CompactMemInfoItem.java 59 public IItem merge(IItem other) throws ConflictingItemException { method in class:CompactMemInfoItem
GfxInfoItem.java 63 public IItem merge(IItem other) throws ConflictingItemException { method in class:GfxInfoItem
LogcatItem.java 154 public LogcatItem merge(IItem other) throws ConflictingItemException { method in class:LogcatItem
ProcrankItem.java 164 public IItem merge(IItem other) throws ConflictingItemException { method in class:ProcrankItem
  /art/compiler/utils/
intrusive_forward_list.h 320 void merge(IntrusiveForwardList& other) { function in class:art::IntrusiveForwardList
321 merge(other, std::less<value_type>());
323 void merge(IntrusiveForwardList&& other) { function in class:art::IntrusiveForwardList
324 merge(other); // Use l-value overload.
327 void merge(IntrusiveForwardList& other, Compare cmp) { function in class:art::IntrusiveForwardList
347 void merge(IntrusiveForwardList&& other, Compare cmp) { function in class:art::IntrusiveForwardList
348 merge(other, cmp); // Use l-value overload.
363 merge(second_half, cmp);
  /cts/hostsidetests/api/src/com/android/cts/api/
DexAnalyzer.java 105 void merge(Ref other) { method in class:DexAnalyzer.Ref
328 // merge the members of this class to the old class.
349 typeReferences.get(ref.getName()).merge(ref);
359 methodReferences.get(ref.getFullSignature()).merge(ref);
369 fieldReferences.get(ref.getFullSignature()).merge(ref);
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockConference.java 85 mRemoteConference.merge();
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 254 * @param other {@code non-null;} to merge
255 * @return {@code non-null;} this instance if merge was a no-op, or
263 newPrimary = primary.merge(other.getPrimary());
283 resultla = la1.merge(la2);
305 * @param other {@code non-null;} to merge
306 * @return {@code non-null;} this instance if merge was a no-op, or
314 newPrimary = primary.merge(other.getPrimary());
324 resultla = la.merge(other);
345 public LocalsArraySet merge(LocalsArray other) { method in class:LocalsArraySet
390 newPrimary = primary.merge(other.getPrimary())
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 17 package com.android.dx.merge;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
RangeExpression.py 69 self.merge()
83 def merge(self): member in class:RangeContainer
  /external/clang/lib/Analysis/
LiveVariables.cpp 94 merge(LiveVariables::LivenessValues valsA,
143 LiveVariablesImpl::merge(LiveVariables::LivenessValues valsA, function in class:LiveVariablesImpl
538 // Merge the values of all successor blocks.
543 val = LV->merge(val, LV->blocksBeginToLiveness[succ]);
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 194 // Merge the state before the jsr into the next instruction
197 merge(queue, frame, lookAhead(iter, pos)); method
200 merge(queue, frame, target); method
203 merge(queue, frame, lookAhead(iter, pos)); method
206 // Merge all exceptions that are reachable from this instruction.
276 private void merge(IntQueue queue, Frame frame, int target) { method in class:Analyzer
284 changed = old.merge(frame);
301 merge(queue, newFrame, exception.handler); method
328 newType = oldType.merge(newType);
350 merge(queue, frame, pos + iter.s32bitAt(index)) method
357 merge(queue, frame, target); method
404 merge(queue, frame, pos + iter.s32bitAt(index)); method
412 merge(queue, frame, target); method
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
compat.c 33 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
66 enum merge_mode merge; member in struct:__anon26706
79 enum merge_mode merge; member in struct:__anon26707
153 info->default_interp.merge = MERGE_OVERRIDE;
155 info->default_led.merge = MERGE_OVERRIDE;
190 if (new->merge != MERGE_AUGMENT)
206 if (new->merge == MERGE_REPLACE) {
242 (new->merge != MERGE_AUGMENT ? "last" : "first"));
300 if (new->merge != MERGE_AUGMENT)
329 if (new->merge == MERGE_REPLACE)
    [all...]
  /external/llvm/include/llvm/ProfileData/
SampleProf.h 152 /// Merge the samples in \p Other into this record.
154 sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::SampleRecord
257 /// Merge the samples in \p Other into this one.
259 sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::FunctionSamples
267 MergeResult(Result, BodySamples[Loc].merge(Rec, Weight));
272 MergeResult(Result, functionSamplesAt(Loc).merge(Rec, Weight));
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ilist.h 362 void merge(iplist_impl &Right, Compare comp) { function in class:llvm::iplist_impl
366 base_list_type::merge(Right, comp);
368 void merge(iplist_impl &Right) { return merge(Right, op_less); } function in class:llvm::iplist_impl
  /external/v8/src/compiler/
js-intrinsic-lowering.cc 213 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
216 Node* ephi = graph()->NewNode(common()->EffectPhi(2), etrue, efalse, merge);
221 vfalse, merge);
  /frameworks/compile/mclinker/include/mcld/ADT/
BinTree.h 425 /// join - create a leaf node and merge it in the tree.
443 /// merge - merge the tree
449 BinaryTree& merge(TreeIteratorBase& pPosition, BinaryTree& pTree) { function in class:mcld::BinaryTree
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFAttributeData.cpp 88 // Helper Functions for merge()
141 // End Helper Functions for merge()
144 bool ARMELFAttributeData::merge(const LinkerConfig& pConfig, function in class:mcld::ARMELFAttributeData
159 // Need value of Tag_also_compatible_with in the input for merge.
169 // need value of Tag_CPU_arch in the input for merge
174 // need value of Tag_CPU_arch in the input for merge
179 // need value of Tag_HardFP_use in the input for merge
184 // need value of Tag_FP_arch in the input for merge
189 // need value of Tag_CPU_arch in the input for merge
194 // need value of Tag_ABI_FP_number_model in the input for merge
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 261 merge(ImsPhoneCall that, State state) { method in class:ImsPhoneCall
273 Rlog.d(LOG_TAG, "merge: conference connect time is 0");
278 Rlog.d(LOG_TAG, "merge(" + mCallContext + "): " + that + "state = "
  /libcore/luni/src/test/java/libcore/java/util/
MapDefaultMethodTester.java 407 assertEquals(10.0, m.merge(1, 10.0, (v1, v2) -> v2));
412 assertEquals(25.0, m.merge(1, 15.0, (v1, v2) -> v1 + v2));
417 m.merge(1, 10.0, (k, v) -> null);
422 m.merge(1, 5.0, null);
428 assertEquals(15.0, m.merge(null, 15.0, (v1, v2) -> v2));
432 m.merge(null, 15.0, (v1, v2) -> v2);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
ilist.h 362 void merge(iplist_impl &Right, Compare comp) { function in class:llvm::iplist_impl
366 base_list_type::merge(Right, comp);
368 void merge(iplist_impl &Right) { return merge(Right, op_less); } function in class:llvm::iplist_impl
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProf.h 165 /// Merge the samples in \p Other into this record.
167 sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::SampleRecord
286 /// Merge the samples in \p Other into this one.
288 sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::FunctionSamples
296 MergeResult(Result, BodySamples[Loc].merge(Rec, Weight));
301 MergeResult(Result, functionSamplesAt(Loc).merge(Rec, Weight));

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>