/frameworks/base/docs/html/resources/articles/ |
D | layout-tricks-merge.jd | 5 reuse and share your layout code. This article explains the <code><merge /></code> tag and how 8 <p>The <code><merge /></code> tag was created for the purpose of 61 <p>That's where the <code><merge /></code> tag comes in handy. When the 63 the <code><merge /></code> children to the <code><merge /></code> 65 <code>FrameLayout</code> with <code><merge /></code>:</p> 67 <pre class="prettyprint"><merge xmlns:android="http://schemas.android.com/apk/res/android"> 89 </merge></pre> 96 …gn: center;"><img src="images/merge3.png" alt="Optimized view hierarchy using the merge tag"></div> 98 <p>Obviously, using <code><merge /></code> works in this case because the 101 as its root tag for instance. The <code><merge /></code> can be useful in [all …]
|
D | layout-tricks-reuse.jd | 19 instance: <code><requestFocus /></code>, <code><merge /></code> and 22 use <code><merge /></code>, which can be particularly powerful when 24 href="{@docRoot}resources/articles/layout-tricks-merge.html">Merging Layouts</a>
|
D | layout-tricks-stubs.jd | 83 <em>not</em> support the <a href="layout-tricks-merge.html"><merge />
|
D | index.jd | 65 …<dt><a href="{@docRoot}resources/articles/layout-tricks-merge.html">Layout Tricks: Merging Layouts… 66 …<dd>Learn how to use the <code><merge></code> tag in your XML layouts in order to avoid unne…
|
/frameworks/base/include/utils/ |
D | SortedVector.h | 113 ssize_t merge(const Vector<TYPE>& vector); 114 ssize_t merge(const SortedVector<TYPE>& vector); 220 ssize_t SortedVector<TYPE>::merge(const Vector<TYPE>& vector) { in merge() function 221 return SortedVectorImpl::merge(reinterpret_cast<const VectorImpl&>(vector)); in merge() 225 ssize_t SortedVector<TYPE>::merge(const SortedVector<TYPE>& vector) { in merge() function 226 return SortedVectorImpl::merge(reinterpret_cast<const SortedVectorImpl&>(vector)); in merge()
|
D | VectorImpl.h | 159 ssize_t merge(const VectorImpl& vector); 160 ssize_t merge(const SortedVectorImpl& vector);
|
/frameworks/base/include/ui/ |
D | Region.h | 69 const Region merge(const Rect& rhs) const; 74 const Region merge(const Region& rhs) const; 86 const Region merge(const Region& rhs, int dx, int dy) const; 161 return merge(rhs);
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | layoutopt.jd | 24 7:23 The root-level <FrameLayout/> can be replaced with <merge/> 27 7:7 The root-level <FrameLayout/> can be replaced with <merge/> 41 7:413 The root-level <FrameLayout/> can be replaced with <merge/> 44 7:19 The root-level <FrameLayout/> can be replaced with <merge/>
|
/frameworks/base/libs/ui/ |
D | Region.cpp | 161 const Region Region::merge(const Rect& rhs) const { in merge() function in android::Region 178 const Region Region::merge(const Region& rhs) const { in merge() function in android::Region 218 const Region Region::merge(const Region& rhs, int dx, int dy) const { in merge() function in android::Region 290 bool merge = false; in flushSpan() local 295 merge = true; in flushSpan() 298 merge = false; in flushSpan() 305 if (merge) { in flushSpan()
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | layout-resource.jd | 57 href="#merge-element">{@code <merge>}</a> element, but there must be only 176 <dt id="merge-element"><code><merge></code></dt> 180 <code><merge></code> element. This is particularly useful when you plan to include this layout 184 href="{@docRoot}resources/articles/layout-tricks-merge.html">Layout
|
D | providing-resources.jd | 702 element, wrapped in a {@code <merge>}. For example:</p> 706 <merge> 708 </merge>
|
/frameworks/base/libs/utils/ |
D | VectorImpl.cpp | 567 ssize_t SortedVectorImpl::merge(const VectorImpl& vector) in merge() function in android::SortedVectorImpl 584 ssize_t SortedVectorImpl::merge(const SortedVectorImpl& vector) in merge() function in android::SortedVectorImpl 596 err = merge(static_cast<const VectorImpl&>(vector)); in merge()
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
D | SipPhone.java | 205 foregroundCall.merge(backgroundCall); in conference() 215 foregroundCall.merge((SipCall) that); in conference() 503 void merge(SipCall that) throws CallStateException { in merge() method in SipPhone.SipCall
|
/frameworks/base/core/java/android/view/ |
D | ViewTreeObserver.java | 233 void merge(ViewTreeObserver observer) { in merge() method in ViewTreeObserver
|
D | View.java | 6148 info.mTreeObserver.merge(mFloatingTreeObserver); in dispatchAttachedToWindow()
|
/frameworks/base/core/java/android/widget/ |
D | ImageView.java | 339 public void setImageState(int[] state, boolean merge) { in setImageState() argument 341 mMergeState = merge; in setImageState()
|
/frameworks/base/tests/DumpRenderTree/assets/results/ |
D | layout_tests_nontext.txt | 903 /sdcard/android/layout_tests/editing/pasteboard/merge-end-3.html 907 /sdcard/android/layout_tests/editing/pasteboard/merge-end-blockquote.html 916 /sdcard/android/layout_tests/editing/pasteboard/merge-after-delete.html 921 /sdcard/android/layout_tests/editing/pasteboard/merge-end-borders.html 924 /sdcard/android/layout_tests/editing/pasteboard/merge-start-list.html 937 /sdcard/android/layout_tests/editing/pasteboard/merge-after-delete-2.html 944 /sdcard/android/layout_tests/editing/pasteboard/merge-end-5.html 960 /sdcard/android/layout_tests/editing/pasteboard/merge-end-2.html 984 /sdcard/android/layout_tests/editing/pasteboard/merge-after-delete-1.html 994 /sdcard/android/layout_tests/editing/pasteboard/merge-end-4.html [all …]
|
D | layout_tests_failed.txt | 128 /sdcard/android/layout_tests/editing/deleting/pruning-after-merge-1.html
|
D | layout_tests_passed.txt | 1133 /sdcard/android/layout_tests/editing/deleting/merge-at-end-of-document.html
|
/frameworks/base/docs/html/guide/developing/ |
D | other-ide.jd | 584 tools compile the library and merge its sources with those in the main project, 601 the tools merge the libraries with the application one at a time, starting from 744 their relative priority (and merge order) by manually editing the 809 tools compile and merge all libraries referenced by the application as part 820 <p>Since the tools merge the resources of a library project with those of a
|
D | eclipse-adt.jd | 420 tools compile the library and merge its sources with those in the main project, 580 their relative priority (and merge order) by selecting a library and using the 581 <strong>Up</strong> and <strong>Down</strong> controls. The tools merge the 626 <p>Since the tools merge the resources of a library project with those of a
|
/frameworks/base/ |
D | NOTICE | 281 including without limitation the rights to use, copy, modify, merge,
|
/frameworks/base/docs/html/sdk/ |
D | OLD_RELEASENOTES.jd | 70 <li>A number of enhancements to XML layouts, such as the new <merge> tag 125 …<li>No UI support for <merge>, <include>, <ViewStub> elements. You can add these…
|
D | eclipse-adt.jd | 148 … href="{@docRoot}guide/topics/resources/layout-resource.html#merge-element"><code><merge></c…
|
/frameworks/base/docs/html/guide/publishing/ |
D | licensing.jd | 797 because the SDK Tools will not merge it into the manifests of dependent
|