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

1 2 3 4

  /external/skia/legacy/src/views/
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/skia/include/views/animated/
SkScrollBarView.h 26 void setShown(unsigned shown);
  /external/skia/legacy/include/views/
SkScrollBarView.h 26 void setShown(unsigned 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/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 60 shown = false;
87 /* Override the Show() method so we can tell when we've been shown */
90 shown = true;
92 virtual bool Shown(void) {
93 return (shown);
285 bool shown; member in class:SDL_BWin
  /external/e2fsprogs/resize/
sim_progress.c 24 int shown; member in struct:ext2_sim_progress
101 prog->shown = 0;
  /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/main/helgrind/tests/
locked_vs_unlocked2.stderr.exp 38 Locks held: 2, at address 0x........ (and 1 that can't be shown)
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_QWin.h 55 virtual bool shown(void) { function in class:SDL_QWin
  /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 509 * @param shown Whether to show (true) or hide (false).
510 * @return Whether the item's shown state was changed
512 boolean setVisibleInt(boolean shown) {
514 mFlags = (mFlags & ~HIDDEN) | (shown ? 0 : HIDDEN);
519 public MenuItem setVisible(boolean shown) {
520 // Try to set the shown state to the given state. If the shown state was changed
522 // the shown state has changed for this item
523 if (setVisibleInt(shown)) mMenu.onItemVisibleChanged(this);
  /frameworks/base/services/java/com/android/server/wm/
DisplayMagnifier.java 439 public void setMagnifiedRegionBorderShownLocked(boolean shown, boolean animate) {
440 if (shown) {
444 mWindow.setShown(shown, animate);
530 public void setShown(boolean shown, boolean animate) {
532 if (mShown == shown) {
535 mShown = shown;
540 if (shown) {
548 if (shown) {
555 Slog.i(LOG_TAG, "ViewportWindow shown: " + mShown);
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 109 * <li>The candidates view, if currently shown, is placed above the soft
131 * soft input view should be shown to the user. This is done by implementing
133 * whether it should be shown in the current environment. If any of your
151 * view, because the candidates view tends to be more transient, being shown
153 * by the user. To control whether the candidates view is shown, you use
155 * view tends to be shown and hidden a lot, it does not impact the application
433 // If user uses hard keyboard, IME button should always be shown.
776 // window is shown for them.
782 // If user uses hard keyboard, IME button should always be shown.
    [all...]
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 87 list > * > button[menu-shown] {
96 list > * > button[menu-shown] {
  /frameworks/base/core/java/android/widget/
DatePicker.java 416 * Gets whether the {@link CalendarView} is shown.
418 * @return True if the calendar view is shown.
436 * Sets whether the {@link CalendarView} is shown.
438 * @param shown True if the calendar view is to be shown.
440 public void setCalendarViewShown(boolean shown) {
441 mCalendarView.setVisibility(shown ? VISIBLE : GONE);
445 * Gets whether the spinners are shown.
447 * @return True if the spinners are shown.
454 * Sets whether the spinners are shown
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 494 boolean shown = false;
530 if (show && !shown) {
531 shown = true;
  /external/v8/test/mjsunit/
stack-traces.js 136 // Test that the error constructor is not shown in the trace
149 // Test that the explicit constructor call is shown in the trace
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java     [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/app_launcher/
popup.js 89 // list of apps shown, we set an explicit width on the outermost div.
  /external/valgrind/main/exp-dhat/
dh_main.c 176 Bool shown; member in struct:__anon17017
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js 748 * Callback when the shown sections changes in another NTP.
749 * @param {number} newShownSections Bitmask of the shown sections.
997 document.body.classList.add('notification-shown');
    [all...]
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
upload_page.js 93 // Login page is shown first.

Completed in 922 milliseconds

1 2 3 4