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

<<11121314

  /cts/tests/tests/widget/src/android/widget/cts/
CompoundButtonTest.java 266 // update drawable when checkedTextView is VISIBLE
267 compoundButton.setVisibility(View.VISIBLE);
ProgressBarTest.java 388 "1. not clear what is supposed result if visibility isn't VISIBLE, INVISIBLE or GONE.")
395 int visibility = View.VISIBLE;
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 391 mEmpty.setVisibility(View.VISIBLE);
  /external/webkit/WebKit/chromium/src/
WebPluginContainerImpl.cpp 186 return; // This widget has explicitely been marked as not visible.
544 && (!iframeRenderer->style() || iframeRenderer->style()->visibility() == VISIBLE)) {
  /frameworks/base/core/java/android/app/
Dialog.java 219 mDecor.setVisibility(View.VISIBLE);
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 724 view.setVisibility(View.VISIBLE);
  /frameworks/base/core/java/android/widget/
ZoomButtonsController.java 52 * view and does the hit detection locally (attaches when visible, detaches when invisible).
183 // Doh, it is still null, just ignore the set visible call
185 "Cannot make the zoom controller visible if the owner view is " +
329 * Whether the zoom controls are visible to the user.
331 * @return Whether the zoom controls are visible to the user.
338 * Sets whether the zoom controls should be visible to the user.
340 * @param visible Whether the zoom controls should be visible to the user.
342 public void setVisible(boolean visible) {
344 if (visible) {
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 480 statusView.setVisibility(View.VISIBLE);
  /packages/apps/Calendar/src/com/android/calendar/
MonthActivity.java 89 mProgressBar.setVisibility(View.VISIBLE);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 216 // Hide soft keyboard, if visible
305 mOriginator.setVisibility(View.VISIBLE);
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 239 private boolean mIsKeyboardOpen; // Whether the hardware keyboard is visible
441 mTextCounter.setVisibility(View.VISIBLE);
563 // meant to catch one possible path to that, of a non-visible
    [all...]
  /packages/apps/Phone/src/com/android/phone/
SipCallOptionHandler.java 292 mUnsetPriamryHint.setVisibility(View.VISIBLE);
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPattern.java 428 mFooterLeftButton.setVisibility(View.VISIBLE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 469 mPreviewText.setVisibility(VISIBLE);
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java     [all...]
  /external/webkit/WebCore/rendering/
RenderTextControlSingleLine.cpp 522 // When the placeholder is no longer visible, updatePlaceholderVisiblity will reset the style,
605 return input->value().isEmpty() ? HIDDEN : VISIBLE;
690 return PopupMenuStyle(style()->color(), style()->backgroundColor(), style()->font(), style()->visibility() == VISIBLE, style()->textIndent(), style()->direction());
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 244 public void dispatchAppVisibility(boolean visible) {
249 visible ? 1 : 0);
318 * Return whether the wallpaper is currently visible to the user,
367 * Called to inform you of the wallpaper becoming visible or
369 * CPU while it is visible.</em>.
371 public void onVisibilityChanged(boolean visible) {
517 mSession.add(mWindow, mLayout, View.VISIBLE, mContentInsets,
530 View.VISIBLE, false, mWinFrame, mContentInsets,
665 void doVisibilityChanged(boolean visible) {
667 mVisible = visible;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 78 * select which ones they want to be visible.
438 public void putVisible(boolean visible) {
439 put(mUngrouped ? Settings.UNGROUPED_VISIBLE : Groups.GROUP_VISIBLE, visible ? 1 : 0);
694 checkbox.setVisibility(View.VISIBLE);
736 text2.setVisibility(account.mName == null ? View.GONE : View.VISIBLE);
839 * the visible list as needed.
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
UpgradeAccounts.java 256 vh.progress.setVisibility(View.VISIBLE);
261 vh.errorReport.setVisibility(View.VISIBLE);
271 * like to be able to say, "update it if it's visible, skip it if it's not visible."
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 431 mSearchGoButton.setVisibility(View.VISIBLE);
437 mVoiceSearchButton.setVisibility(View.VISIBLE);
  /packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetails.java 341 mAppVersion.setVisibility(View.VISIBLE);
439 permsView.setVisibility(View.VISIBLE);
440 // Make the security sections header visible
  /packages/apps/Camera/src/com/android/camera/
Camera.java 339 mShutterButton.setVisibility(View.VISIBLE);
    [all...]
  /packages/apps/Music/src/com/android/music/
TrackBrowserActivity.java 575 v.setVisibility(View.VISIBLE);
816 v.setVisibility(View.VISIBLE);
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewGroupTest.java 174 textView.setVisibility(View.VISIBLE);
754 textView.setVisibility(View.VISIBLE);
884 vg.setVisibility(View.VISIBLE);
    [all...]
  /development/apps/Development/src/com/android/development/
AccountsTester.java 124 holder.icon.setVisibility(View.VISIBLE);

Completed in 605 milliseconds

<<11121314