Home
last modified time | relevance | path

Searched refs:exclude (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/native/libs/ui/
DRect.cpp110 Rect Rect::reduce(const Rect& exclude) const { in reduce()
114 mask |= (exclude.left > left) ? 1 : 0; in reduce()
115 mask |= (exclude.top > top) ? 2 : 0; in reduce()
116 mask |= (exclude.right < right) ? 4 : 0; in reduce()
117 mask |= (exclude.bottom < bottom) ? 8 : 0; in reduce()
127 result.right = exclude.left; in reduce()
129 result.bottom = exclude.top; in reduce()
131 result.left = exclude.right; in reduce()
133 result.top = exclude.bottom; in reduce()
/frameworks/base/core/java/android/transition/
DTransition.java730 public Transition excludeTarget(int targetId, boolean exclude) { in excludeTarget() argument
731 mTargetIdExcludes = excludeId(mTargetIdExcludes, targetId, exclude); in excludeTarget()
760 public Transition excludeChildren(int targetId, boolean exclude) { in excludeChildren() argument
761 mTargetIdChildExcludes = excludeId(mTargetIdChildExcludes, targetId, exclude); in excludeChildren()
769 private ArrayList<Integer> excludeId(ArrayList<Integer> list, int targetId, boolean exclude) { in excludeId() argument
771 if (exclude) { in excludeId()
801 public Transition excludeTarget(View target, boolean exclude) { in excludeTarget() argument
802 mTargetExcludes = excludeView(mTargetExcludes, target, exclude); in excludeTarget()
827 public Transition excludeChildren(View target, boolean exclude) { in excludeChildren() argument
828 mTargetChildExcludes = excludeView(mTargetChildExcludes, target, exclude); in excludeChildren()
[all …]
/frameworks/native/opengl/libs/
DAndroid.mk38 LOCAL_LDFLAGS += -Wl,--exclude-libs=ALL
/frameworks/native/include/ui/
DRect.h164 Rect reduce(const Rect& exclude) const;
/frameworks/native/services/surfaceflinger/
DLayer.cpp255 static Rect reduce(const Rect& win, const Region& exclude) { in reduce() argument
256 if (CC_LIKELY(exclude.isEmpty())) { in reduce()
259 if (exclude.isRect()) { in reduce()
260 return win.reduce(exclude.getBounds()); in reduce()
262 return Region(win).subtract(exclude).getBounds(); in reduce()
/frameworks/base/docs/html/guide/topics/resources/
Dmenu-resource.jd115 be sure to exclude the method you specify in this attribute from renaming, because it can break the
159 be sure to exclude the class you specify in this attribute from renaming, because it can break the
171 be sure to exclude the class you specify in this attribute from renaming, because it can break the
Daccessing-resources.jd321 <code>?android:attr/textColorSecondary</code>)&mdash;you can exclude the {@code attr} type.</p>
Dproviding-resources.jd951 case, you probably want {@code notnight} to be your default resources, so you should exclude that
/frameworks/base/docs/html/guide/webapps/
Doverview.jd25 <p>Thus, your decision to develop a web application for Android can exclude consideration for
/frameworks/base/docs/html/training/notify-user/
Dnavigation.jd150 <code><a href="{@docRoot}guide/topics/manifest/activity-element.html#exclude">android:excludeFromRe…
/frameworks/base/docs/html/about/versions/
Dandroid-2.3.4.jd72 products or exclude it. The library is forward-compatible with Android 3.1, so
Dkitkat.jd1151 can include or exclude system processes. You can also change the duration of
1152 the data collected to 3, 6, 12, or 24 hours, and you can include or exclude
/frameworks/base/docs/html/sdk/installing/
Dstudio-tips.jd82 <strong>Layout resource file</strong>, a dialog opens so you can name the file (you can exclude
/frameworks/base/docs/html/distribute/googleplay/about/
Ddistribution.jd76 even exclude specific devices if needed.</p>
/frameworks/base/tools/layoutlib/create/
DREADME.txt74 The analyzer is also given a list of classes to exclude. A fake implementation of these
/frameworks/base/docs/html/tools/debugging/
Ddebugging-memory.jd421 <strong>Path To GC Roots</strong> &gt; <strong>exclude weak references</strong>.</p>
431 <strong>Path To GC Roots</strong> &gt; <strong>exclude weak references</strong>. This opens a
Dimproving-w-lint.jd43 …ile that you can use to specify any {@code lint} checks that you want to exclude and to customize …
/frameworks/wilhelm/doc/
DDoxyfile610 # excluded from the INPUT source files. This way you can easily exclude a
622 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
624 # against the file with absolute path, so to exclude all test directories
/frameworks/base/docs/html/tools/help/
Dadb.jd752 <dt>{@code --exclude-stopped-packages}</dt>
767 <dt>{@code --activity-exclude-from-recents}</dt>
/frameworks/base/docs/html/guide/topics/manifest/
Dactivity-element.jd16 android:<a href="#exclude">excludeFromRecents</a>=["true" | "false"]
283 <dt><a name="exclude"></a>{@code android:excludeFromRecents}</dt>
/frameworks/base/docs/html/guide/topics/ui/
Dcustom-components.jd535 with the XML element name, and exclude the <code>class</code> attribute. For example:</p>
/frameworks/base/docs/html/distribute/googleplay/publish/
Dpreparing.jd163 you might want to exclude one or more countries from your distribution. </p>
/frameworks/base/docs/html/guide/topics/ui/notifiers/
Dnotifications.jd719 <code><a href="{@docRoot}guide/topics/manifest/activity-element.html#exclude">android:excludeFromRe…
/frameworks/base/docs/html/sdk/
DRELEASENOTES.jd349 exclude locale resources when building your APK from a single
/frameworks/base/docs/html/google/gcm/
Dgcm.jd155 exclude the GCM registration ID, it could get reused on a new device,

12