HomeSort by relevance Sort by last modified time
    Searched refs:shown (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/skia/src/views/animated/
SkScrollBarView.cpp 41 void SkScrollBarView::setShown(unsigned shown)
43 if ((int)shown < 0)
44 shown = 0;
46 if (fShownLength != shown)
48 fShownLength = shown;
72 if (dom.findS32(node, "shown", &value))
124 int shown = fShownLength; local
127 if (total <= 0 || shown <= 0 || shown >= total) // no bar to show
134 if (start + shown > total
    [all...]
  /external/elfutils/src/tests/
run-stack-d-test.sh 77 $STACKCMD: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
89 $STACKCMD: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
98 $STACKCMD: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
109 $STACKCMD: tid 13654: shown max number of frames (2, use -n 0 for unlimited)
run-stack-i-test.sh 47 $STACKCMD: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
67 $STACKCMD: tid 13654: shown max number of frames (6, use -n 0 for unlimited)
  /external/skia/include/views/animated/
SkScrollBarView.h 26 void setShown(unsigned shown);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoDreamSettingsReceiver.java 46 boolean shown = ACTION_ADD_ALBUM.equals(intent.getAction());
63 if (DEBUG) Log.d(TAG, "receive: " + albumId + " is " + shown);
65 settings[idx].setAlbumEnabled(albumId, shown);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SignalTileView.java 123 final boolean shown = isShown();
124 setVisibility(mIn, shown, s.activityIn);
125 setVisibility(mOut, shown, s.activityOut);
128 private void setVisibility(View view, boolean shown, boolean visible) {
129 final float newAlpha = shown && visible ? 1 : 0;
131 if (shown) {
  /frameworks/base/core/java/android/app/
ListFragment.java 182 * that is to be shown when the list is empty.
188 * way to have the built-in indeterminant progress state be shown.
286 * be shown when the list is empty. If you would like to have it
287 * shown, call this method to supply the text it should use.
304 * this time an indeterminant progress indicator will be shown instead.
307 * behavior of ListFragment is to start with the list not being shown, only
309 * If the list at that point had not been shown, when it does get shown
312 * @param shown If true, the list view is shown; if false, the progres
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ListFragment.java 80 * that is to be shown when the list is empty.
86 * way to have the built-in indeterminant progress state be shown.
228 * be shown when the list is empty. If you would like to have it
229 * shown, call this method to supply the text it should use.
246 * this time an indeterminant progress indicator will be shown instead.
249 * behavior of ListFragment is to start with the list not being shown, only
251 * If the list at that point had not been shown, when it does get shown
254 * @param shown If true, the list view is shown; if false, the progres
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
MultiSelectGridFragment.java 65 * is to be shown when the grid is empty.
177 * be shown when the grid is empty. If you would like to have it shown, call
195 * this time an indeterminate progress indicator will be shown instead.
199 * shown, only showing it once an adapter is given with
201 * shown, when it does get shown it will be do without the user ever seeing
204 * @param shown If true, the grid view is shown; if false, the progress
207 public void setGridShown(boolean shown) {
    [all...]
  /external/e2fsprogs/resize/
sim_progress.c 24 int shown; member in struct:ext2_sim_progress
101 prog->shown = 0;
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
PermissionsFrameFragment.java 88 private void setViewShown(final View view, boolean shown, boolean animate) {
91 shown ? android.R.anim.fade_in : android.R.anim.fade_out);
92 if (shown) {
113 view.setVisibility(shown ? View.VISIBLE : View.INVISIBLE);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 642 private void animateInfoOffset(boolean shown) {
646 if (shown) {
658 mAnim = new InfoOffsetAnimation(mInfoOffset, shown ? extraHeight : 0);
685 private void animateInfoHeight(boolean shown) {
689 if (shown) {
701 mAnim = new InfoHeightAnimation(mInfoVisFraction, shown ? 1.0f : 0f);
730 private void animateInfoAlpha(boolean shown) {
733 if (shown) {
739 mAnim = new InfoAlphaAnimation(mInfoAlpha, shown ? 1.0f : 0.0f);
    [all...]
  /external/doclava/res/assets/templates/
sample.cs 20 <p>The file containing the source code shown below is located in the corresponding directory in <code>&lt;sdk&gt;/samples/android-&lt;version&gt;/...</code></p>
  /external/valgrind/memcheck/tests/
leak-segv-jmp.stderr.exp 11 Reachable blocks (those to which a pointer was found) are not shown.
26 Reachable blocks (those to which a pointer was found) are not shown.
42 Reachable blocks (those to which a pointer was found) are not shown.
58 Reachable blocks (those to which a pointer was found) are not shown.
  /frameworks/base/core/java/android/widget/
DatePicker.java 351 * Returns whether the {@link CalendarView} is shown.
357 * @return {@code true} if the calendar view is shown
379 * Sets whether the {@link CalendarView} is shown.
385 * @param shown {@code true} to show the calendar view, {@code false} to
388 public void setCalendarViewShown(boolean shown) {
389 mDelegate.setCalendarViewShown(shown);
393 * Returns whether the spinners are shown.
399 * @return {@code true} if the spinners are shown
406 * Sets whether the spinners are shown.
412 * @param shown {@code true} to show the spinners, {@code false} to hid
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AccessibilityController.java 583 public void setMagnifiedRegionBorderShownLocked(boolean shown, boolean animate) {
584 if (shown) {
588 mWindow.setShown(shown, animate);
681 public void setShown(boolean shown, boolean animate) {
683 if (mShown == shown) {
686 mShown = shown;
687 mAnimationController.onFrameShownStateChanged(shown, animate);
689 Slog.i(LOG_TAG, "ViewportWindow shown: " + mShown);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
AnswerFragment.java 112 public void onShowAnswerUi(boolean shown) {
113 Log.d(this, "Show answer UI: " + shown);
114 if (shown) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnn.java 257 @Override public void setCandidatesViewShown(boolean shown) {
258 super.setCandidatesViewShown(shown);
259 if (shown) {
  /frameworks/base/core/java/com/android/internal/view/menu/
MenuItemImpl.java 474 * @param shown Whether to show (true) or hide (false).
475 * @return Whether the item's shown state was changed
477 boolean setVisibleInt(boolean shown) {
479 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
483 public MenuItem setVisible(boolean shown) {
484 // Try to set the shown state to the given state. If the shown state was changed
486 // the shown state has changed for this item
487 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuItemImpl.java 514 * @param shown Whether to show (true) or hide (false).
515 * @return Whether the item's shown state was changed
517 boolean setVisibleInt(boolean shown) {
519 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
524 public MenuItem setVisible(boolean shown) {
525 // Try to set the shown state to the given state. If the shown state was changed
527 // the shown state has changed for this item
528 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this);
  /external/valgrind/helgrind/tests/
locked_vs_unlocked2.stderr.exp 39 Locks held: 2, at address 0x........ (and 1 that can't be shown)
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 112 * <li>The candidates view, if currently shown, is placed above the soft
134 * soft input view should be shown to the user. This is done by implementing
136 * whether it should be shown in the current environment. If any of your
154 * view, because the candidates view tends to be more transient, being shown
156 * by the user. To control whether the candidates view is shown, you use
158 * view tends to be shown and hidden a lot, it does not impact the application
311 * have not shown our own window yet. In this situation, the previous inset continues to be
312 * shown as an empty region until it is explicitly updated. Basically we can trigger the update
445 // If user uses hard keyboard, IME button should always be shown.
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
bootstrap.js 485 this.transition('addClass', $.Event('show'), 'shown')
744 that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) :
745 that.$element.trigger('shown')
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintPreviewController.java 103 public void setUiShown(boolean shown) {
104 if (shown) {
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ComposeMessageView.java 220 boolean shown = mInputManager.toggleSimSelector(true /* animate */,
222 hideAttachmentsWhenShowingSims(shown);
231 boolean shown = mInputManager.toggleSimSelector(true /* animate */,
233 hideAttachmentsWhenShowingSims(shown);
272 boolean shown = mInputManager.toggleSimSelector(true /* animate */,
274 hideAttachmentsWhenShowingSims(shown);
    [all...]

Completed in 566 milliseconds

1 2 3 4 5