Searched refs:exclusive (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/tools/preload/
H A DOperation.java83 long exclusive = inclusiveTimeNanos();
86 exclusive -= child.inclusiveTimeNanos();
89 if (exclusive < 0) {
93 return nanosToMicros(exclusive);
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuWrapperICS.java119 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
120 mWrappedObject.setGroupCheckable(group, checkable, exclusive);
H A DActionMenuItem.java200 public ActionMenuItem setExclusiveCheckable(boolean exclusive) { argument
201 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
H A DMenuItemImpl.java590 public void setExclusiveCheckable(boolean exclusive) { argument
591 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
607 // exclusive checkable group
721 // Mutually exclusive options selected!
723 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.");
H A DMenuBuilder.java620 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
626 item.setExclusiveCheckable(exclusive);
/frameworks/base/core/java/android/view/
H A DMenu.java333 * this group contains a mutually-exclusive set items. This should be called
339 * @param exclusive If set to true, only one item in this group can be
347 public void setGroupCheckable(int group, boolean checkable, boolean exclusive); argument
/frameworks/av/media/audioserver/
H A DAndroid.mk41 # the LOCAL_MULTILIB for all audioserver exclusive libraries.
/frameworks/base/core/java/com/android/internal/graphics/palette/
H A DTarget.java237 * Returns whether any color selected for this target is exclusive for this target only.
416 * Set whether any color selected for this target is exclusive to this target only.
419 * @param exclusive true if any the color is exclusive to this target, or false is the
422 public Target.Builder setExclusive(boolean exclusive) { argument
423 mTarget.mIsExclusive = exclusive;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java223 boolean exclusive) {
231 item.setExclusiveCheckable(exclusive);
222 setGroupCheckable(int group, boolean checkable, boolean exclusive) argument
H A DActionMenuItem.java170 public ActionMenuItem setExclusiveCheckable(boolean exclusive) { argument
171 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
H A DMenuItemImpl.java555 public void setExclusiveCheckable(boolean exclusive) { argument
556 mFlags = (mFlags & ~EXCLUSIVE) | (exclusive ? EXCLUSIVE : 0);
570 // exclusive checkable group
685 // Mutually exclusive options selected!
687 + " and SHOW_AS_ACTION_NEVER are mutually exclusive.");
H A DMenuBuilder.java570 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
576 item.setExclusiveCheckable(exclusive);
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
H A DTarget.java219 * Returns whether any color selected for this target is exclusive for this target only.
398 * Set whether any color selected for this target is exclusive to this target only.
401 * @param exclusive true if any the color is exclusive to this target, or false is the
404 public Builder setExclusive(boolean exclusive) { argument
405 mTarget.mIsExclusive = exclusive;
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DAutoScrollHelper.java250 * Enables or disables exclusive handling of touch events during scrolling.
251 * By default, exclusive handling is disabled and the target view receives
257 * @param exclusive True to exclusively handle touch events during scrolling,
261 public AutoScrollHelper setExclusive(boolean exclusive) { argument
262 mExclusive = exclusive;
270 * @return True if exclusive handling of touch events during scrolling is
/frameworks/base/core/java/android/widget/
H A DTabHost.java659 // when icon is gone by default, we're in exclusive mode
660 final boolean exclusive = iconView.getVisibility() == View.GONE;
661 final boolean bindIcon = !exclusive || TextUtils.isEmpty(mLabel);
H A DActionMenuView.java739 public void setExpandedActionViewsExclusive(boolean exclusive) { argument
740 mPresenter.setExpandedActionViewsExclusive(exclusive);
/frameworks/base/core/java/com/android/internal/widget/
H A DAutoScrollHelper.java250 * Enables or disables exclusive handling of touch events during scrolling.
251 * By default, exclusive handling is disabled and the target view receives
257 * @param exclusive True to exclusively handle touch events during scrolling,
261 public AutoScrollHelper setExclusive(boolean exclusive) { argument
262 mExclusive = exclusive;
270 * @return True if exclusive handling of touch events during scrolling is
/frameworks/rs/script_api/
H A Drs_atomic.spec216 summary: Thread-safe bitwise exclusive or
H A Drs_for_each.spec62 field: uint32_t xEnd, "Ending index (exclusive) in the X dimension."
64 field: uint32_t yEnd, "Ending index (exclusive) in the Y dimension."
66 field: uint32_t zEnd, "Ending index (exclusive) in the Z dimension."
68 field: uint32_t arrayEnd, "Ending index (exclusive) in the Array0 dimension."
70 field: uint32_t array1End, "Ending index (exclusive) in the Array1 dimension."
72 field: uint32_t array2End, "Ending index (exclusive) in the Array2 dimension."
74 field: uint32_t array3End, "Ending index (exclusive) in the Array3 dimension."
82 The Start fields are inclusive and the End fields are exclusive. E.g. to iterate
H A Drs_math.spec1117 The mantissa is always between 0.5 (inclusive) and 1.0 (exclusive).
1215 1.f (inclusive) and 2.f (exclusive).
1427 1.f (inclusive) and 2.f (exclusive).
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java754 public void setExpandedActionViewsExclusive(boolean exclusive) { argument
755 mPresenter.setExpandedActionViewsExclusive(exclusive);
/frameworks/support/wear/src/android/support/wear/widget/drawer/
H A DWearableActionDrawerMenu.java178 public void setGroupCheckable(int group, boolean checkable, boolean exclusive) { argument
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java504 boolean exclusive) {
508 exclusive ? SQLiteSession.TRANSACTION_MODE_EXCLUSIVE :
1879 * database, the writer implicitly acquires an exclusive lock on the database which
1907 * to start a transaction. Non-exclusive mode allows database file to be in readable
503 beginTransaction(SQLiteTransactionListener transactionListener, boolean exclusive) argument

Completed in 512 milliseconds