HomeSort by relevance Sort by last modified time
    Searched refs:VISIBLE (Results 276 - 300 of 329) sorted by null

<<11121314

  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 497 b.putInt("viz", View.VISIBLE);
    [all...]
  /external/chromium/third_party/icu/source/i18n/
coll.cpp 97 CollatorFactory::visible(void) const { function in class:CollatorFactory
611 : LocaleKeyFactory(delegate->visible() ? VISIBLE : INVISIBLE)
numfmt.cpp 117 SimpleNumberFormatFactory::SimpleNumberFormatFactory(const Locale& locale, UBool visible)
118 : _visible(visible)
125 UBool SimpleNumberFormatFactory::visible(void) const { function in class:SimpleNumberFormatFactory
520 : LocaleKeyFactory(delegate->visible() ? VISIBLE : INVISIBLE)
551 * Return the set of ids that this factory supports (visible or
  /external/icu4c/i18n/
coll.cpp 97 CollatorFactory::visible(void) const { function in class:CollatorFactory
611 : LocaleKeyFactory(delegate->visible() ? VISIBLE : INVISIBLE)
numfmt.cpp 154 SimpleNumberFormatFactory::SimpleNumberFormatFactory(const Locale& locale, UBool visible)
155 : _visible(visible)
162 UBool SimpleNumberFormatFactory::visible(void) const { function in class:SimpleNumberFormatFactory
728 : LocaleKeyFactory(delegate->visible() ? VISIBLE : INVISIBLE)
759 * Return the set of ids that this factory supports (visible or
    [all...]
  /external/webkit/WebCore/rendering/
RenderListBox.cpp 208 // Only count fully visible rows. But don't return 0 even if only part of a row shows.
255 if (style()->visibility() != VISIBLE)
RenderListMarker.cpp     [all...]
RenderObject.cpp     [all...]
RenderView.cpp 197 return object && object->style()->visibility() == VISIBLE && object->style()->opacity() == 1 && !object->style()->hasTransform();
RenderBox.cpp 212 // (3) The root element has visible overflow.
220 // It's sufficient to just check one direction, since it's illegal to have visible on only one overflow value.
269 // For objects with visible overflow, this matches IE.
279 // For objects with visible overflow, this matches IE.
660 if (!shouldPaintWithinRoot(paintInfo) || style()->visibility() != VISIBLE || paintInfo.phase != PaintPhaseMask)
    [all...]
RenderObject.h     [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 700 if (getVisibility() != VISIBLE) {
SlidingDrawer.java 830 mContent.setVisibility(View.VISIBLE);
    [all...]
AbsListView.java 86 * notification is received and only if the last item is already visible
94 * are currently visible.
568 * @param firstVisibleItem the index of the first visible cell (ignore if
570 * @param visibleItemCount the number of visible cells
712 * If fast scroll is visible, then don't draw the vertical scrollbar.
722 * is computed based on the number of visible pixels in the visible items. This
730 * visible items inside the adapter. This provides a stable scrollbar as the user
    [all...]
  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountSyncSettings.java 369 mErrorInfoView.setVisibility(syncIsFailing ? View.VISIBLE : View.GONE);
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 420 holder.setVisibility(View.VISIBLE);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupBasics.java 184 mDefaultView.setVisibility(View.VISIBLE);
  /packages/apps/Settings/src/com/android/settings/applications/
RunningProcessesView.java 191 icon.setVisibility(View.VISIBLE);
  /external/chromium/third_party/icu/source/test/intltest/
icusvtst.cpp 40 : LocaleKeyFactory(VISIBLE, "LKFSubclass0")
49 LKFSubclass(UBool visible)
50 : LocaleKeyFactory(visible ? VISIBLE : INVISIBLE, "LKFSubclass")
117 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status)
120 return new SimpleFactory((Integer*)obj, id, visible);
444 // be visible by default, but if you know the secret password you
475 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status)
482 return ICUService::createSimpleFactory(obj, id, visible, status);
498 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& /* status */)
    [all...]
  /external/icu4c/test/intltest/
icusvtst.cpp 40 : LocaleKeyFactory(VISIBLE, "LKFSubclass0")
49 LKFSubclass(UBool visible)
50 : LocaleKeyFactory(visible ? VISIBLE : INVISIBLE, "LKFSubclass")
117 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status)
120 return new SimpleFactory((Integer*)obj, id, visible);
444 // be visible by default, but if you know the secret password you
475 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& status)
482 return ICUService::createSimpleFactory(obj, id, visible, status);
498 virtual ICUServiceFactory* createSimpleFactory(UObject* obj, const UnicodeString& id, UBool visible, UErrorCode& /* status */)
    [all...]
  /external/webkit/WebCore/editing/
visible_units.cpp 805 if (style->visibility() != VISIBLE) {
865 if (style->visibility() != VISIBLE) {
    [all...]
htmlediting.cpp 595 // Returns the visible position at the beginning of a node
605 // Returns the visible position at the ending of a node
615 // Create a range object with two visible positions, start and end.
833 // Make sure there is no visible content between this li and the previous list
977 return renderer->style()->visibility() == VISIBLE;
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboardBaseView.java 290 if (mPreviewPopup.isShowing() && mPreviewText.getVisibility() == VISIBLE) {
291 // Show right away, if it's already visible and finger is moving around
    [all...]
  /external/webkit/WebCore/page/
Frame.cpp 438 if (n->isTextNode() && n->renderer() && n->renderer()->style()->visibility() == VISIBLE) {
498 } else if (n->isTextNode() && n->renderer() && n->renderer()->style()->visibility() == VISIBLE) {
    [all...]

Completed in 595 milliseconds

<<11121314