HomeSort by relevance Sort by last modified time
    Searched refs:visible (Results 26 - 50 of 265) sorted by null

12 3 4 5 6 7 8 91011

  /cts/tests/src/android/app/cts/
AppStubActivity.java 118 public boolean setProBarIndeterminateVisibility(boolean visible){
119 mIndterminatevisibility = visible;
120 super.setProgressBarIndeterminateVisibility(visible);
  /packages/wallpapers/Basic/src/com/android/wallpaper/
RenderScriptWallpaper.java 67 public void onVisibilityChanged(boolean visible) {
68 super.onVisibilityChanged(visible);
70 if (visible) {
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
RenderScriptWallpaper.java 66 public void onVisibilityChanged(boolean visible) {
67 super.onVisibilityChanged(visible);
69 if (visible) {
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptWallpaper.java 63 public void onVisibilityChanged(boolean visible) {
64 super.onVisibilityChanged(visible);
66 if (visible) {
  /bootable/recovery/
common.h 28 int ui_text_visible(); // returns >0 if text log is currently visible
29 void ui_show_text(int visible);
48 // Set the icon (normally the only thing visible besides the progress bar).
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 74 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
75 return super.visitAnnotation(desc, visible);
89 public AnnotationVisitor visitParameterAnnotation(int parameter, String desc, boolean visible) {
90 return super.visitParameterAnnotation(parameter, desc, visible);
ClassStubber.java 51 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
52 return super.visitAnnotation(desc, visible);
  /external/webkit/WebCore/inspector/front-end/
Popup.js 37 * element is an optional unparented visible element (style.display != "none" AND style.visibility != "hidden").
53 if (this.visible)
75 if (this.visible) {
84 get visible()
149 if (this.visible)
150 throw new Error("The popup must not be visible.");
StatusBarButton.js 130 get visible()
135 set visible(x)
DOMStorageItemsView.js 36 this.deleteButton.visible = false;
58 this.deleteButton.visible = false;
73 this.deleteButton.visible = true;
SourceView.js 44 this.sourceFrame.visible = true;
51 this.sourceFrame.visible = false;
87 if (this.visible)
  /packages/apps/Mms/src/com/android/mms/ui/
AudioAttachmentView.java 136 public void setImageVisibility(boolean visible) {
146 public void setTextVisibility(boolean visible) {
156 public void setVideoVisibility(boolean visible) {
183 public void setVisibility(boolean visible) {
190 mErrorMsgView.setVisibility(VISIBLE);
BasicSlideEditorView.java 96 mAudioView.setVisibility(View.VISIBLE);
116 public void setImageVisibility(boolean visible) {
129 public void setTextVisibility(boolean visible) {
146 public void setVideoVisibility(boolean visible) {
166 public void setVisibility(boolean visible) {
SlideListItemView.java 101 public void setImageVisibility(boolean visible) {
107 mTextPreview.setVisibility(TextUtils.isEmpty(text) ? View.GONE : View.VISIBLE);
110 public void setTextVisibility(boolean visible) {
134 public void setVideoVisibility(boolean visible) {
150 public void setVisibility(boolean visible) {
SlideView.java 122 mImageView.setVisibility(View.VISIBLE);
153 mVideoView.setVisibility(View.VISIBLE);
185 mAudioInfoView.setVisibility(View.VISIBLE);
242 mTextView.setVisibility(View.VISIBLE);
259 public void setImageVisibility(boolean visible) {
262 mImageView.setVisibility(visible ? View.VISIBLE : View.GONE);
264 mImageView.setVisibility(visible ? View.VISIBLE : View.INVISIBLE);
269 public void setTextVisibility(boolean visible) {
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 84 * combines both visible and invisible annotations into a single
177 AttRuntimeVisibleAnnotations visible = local
184 if (visible == null) {
192 return visible.getAnnotations();
197 return Annotations.combine(visible.getAnnotations(),
353 * combines both visible and invisible annotations into a single
362 AttRuntimeVisibleParameterAnnotations visible = local
371 if (visible == null) {
379 return visible.getParameterAnnotations();
384 return AnnotationsList.combine(visible.getParameterAnnotations()
    [all...]
  /frameworks/base/core/java/android/view/
IWindow.aidl 49 void dispatchAppVisibility(boolean visible);
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBarService.aidl 31 void setIconVisibility(String slot, boolean visible);
  /external/webkit/WebKit/qt/WebCoreSupport/
ChromeClientQt.cpp 192 void ChromeClientQt::setToolbarsVisible(bool visible)
194 toolBarsVisible = visible;
195 emit m_webPage->toolBarVisibilityChangeRequested(visible);
205 void ChromeClientQt::setStatusbarVisible(bool visible)
207 emit m_webPage->statusBarVisibilityChangeRequested(visible);
208 statusBarVisible = visible;
232 void ChromeClientQt::setMenubarVisible(bool visible)
234 menuBarVisible = visible;
235 emit m_webPage->menuBarVisibilityChangeRequested(visible);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
StorageNotification.java 279 boolean sound, boolean visible, PendingIntent pi) {
281 if (!visible && mUsbStorageNotification == null) {
292 if (visible) {
338 if (visible) {
357 private synchronized void setMediaStorageNotification(int titleId, int messageId, int icon, boolean visible,
360 if (!visible && mMediaStorageNotification == null) {
371 if (mMediaStorageNotification != null && visible) {
380 if (visible) {
409 if (visible) {
  /external/chromium/third_party/icu/public/i18n/unicode/
numfmt.h 807 * Return true if this factory will be visible. Default is true.
808 * If not visible, the locales supported by this factory will not
812 virtual UBool visible(void) const = 0;
832 * A NumberFormatFactory that supports a single locale. It can be visible or invisible.
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis1/
Visualization1.java 102 public void onVisibilityChanged(boolean visible) {
103 mVisible = visible;
104 if (visible) {
  /external/libxml2/
c14n.c 44 int nsPrevStart; /* the begginning of the stack for previous visible node */
45 int nsPrevEnd; /* the end of the stack for previous visible node */
596 xmlC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
625 if(visible) {
647 if(visible && !has_empty_ns) {
701 xmlExcC14NProcessNamespacesAxis(xmlC14NCtxPtr ctx, xmlNodePtr cur, int visible)
754 if(visible) {
775 if(visible && xmlC14NIsVisible(ctx, ns, cur)) {
780 if(visible) {
792 * we need to check that attribute is visible and has no
1228 int visible; local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 128 public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
131 return super.visitAnnotation(desc, visible);
  /external/chromium/third_party/icu/source/common/
servlkf.cpp 73 UBool visible = (_coverage & 0x1) == 0; local
79 if (!visible) {

Completed in 1040 milliseconds

12 3 4 5 6 7 8 91011