HomeSort by relevance Sort by last modified time
    Searched refs:merge (Results 151 - 175 of 736) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/compile/mclinker/unittests/
BinTreeTest.cpp 66 m_pTestee->merge<TreeIteratorBase::Rightward>(pos,*mergeTree);
85 m_pTestee->merge<TreeIteratorBase::Rightward>(pos,*mergeTree);
104 mergeTree->merge<TreeIteratorBase::Rightward>(pos2,*m_pTestee);
118 mergeTree->merge<TreeIteratorBase::Rightward>(pos2,*m_pTestee);
  /ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/pointers/
_list.h 304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 97 * {@code <merge>} tag. In this case, all the views have the same node model,
179 * children of a {@code <merge>} tag included into a separate layout, return the
207 * single node (such as widgets inside a {@code <merge>} tag included into another
225 * has multiple widgets inside a {@code <merge>} tag, where all these widgets have the
226 * same node (the {@code <merge>} tag).
632 * <li>with the {@code <merge>} tag we don't get a reference to the corresponding
641 * (for example that {@code <merge>} siblings will provide {@link MergeCookie}
659 * The mapping from nodes that have a {@code <merge>} as a parent in the node
671 * Creates a hierarchy of {@link CanvasViewInfo} objects and merge bounding
693 // There are <merge> nodes here; see if we can insert it into the hierarch
697 UiViewElementNode merge = null; local
751 CanvasViewInfo merge = new CanvasViewInfo(null, VIEW_MERGE, null, local
    [all...]
  /external/bison/src/
reader.c 109 | type as TYPE as required by the lhs of the rule whose %merge declaration |
135 _("result type clash on merge function %s: "
148 | Free all merge-function definitions. |
452 /* Attach a merge function NAME with argument type TYPE to current
459 warn_at (loc, _("%s affects only GLR parsers"), "%merge");
461 complain_at (loc, _("only one %s allowed per rule"), "%merge");
  /external/chromium_org/third_party/mesa/src/
Android.common.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/chromium_org/v8/src/compiler/
js-builtin-reducer.cc 132 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
134 value = graph()->NewNode(common()->Phi(kMachNone, 2), p, value, merge);
  /external/emma/core/java12/com/vladium/emma/data/
MergeProcessor.java 58 * NOTE: there is no setter for merge attribute because this processor
134 // merge all data files:
154 mdata = (IMetaData) mdata.merge (_mdata); // note: later datapath entries override earlier ones
165 cdata = (ICoverageData) cdata.merge (_cdata); // note: later datapath entries override earlier ones
264 DataFactory.persist (cdata, persistFile, false); // never merge to enforce compaction behavior
266 DataFactory.persist (mdata, persistFile, false); // never merge to enforce compaction behavior
268 DataFactory.persist (new SessionData (mdata, cdata), persistFile, false); // never merge to enforce compaction behavior
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessor.java 103 * @param merge [null unsets the previous override setting]
105 public synchronized final void setMetaOutMerge (final Boolean merge)
107 m_mdataOutMerge = merge;
  /external/emma/core/java12/com/vladium/emma/report/
ReportProcessor.java 167 // merge all data files:
185 mdata = (IMetaData) mdata.merge (_mdata); // note: later datapath entries override earlier ones
196 cdata = (ICoverageData) cdata.merge (_cdata); // note: later datapath entries override earlier ones
  /external/emma/core/java12/com/vladium/util/
Strings.java 86 public static String [] merge (final String [] strings, final String delimiters, final boolean removeNull) method in class:Strings
130 return merge (strings, delimiters, true);
  /external/mesa3d/
Android.common.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/egl/drivers/dri2/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/auxiliary/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/i915/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/nouveau/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/nv30/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/nv50/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/nvc0/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/r300/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  /external/mesa3d/src/gallium/drivers/r600/
Android.mk 9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,

Completed in 777 milliseconds

1 2 3 4 5 67 8 91011>>