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

1 2

  /packages/apps/Email/src/com/android/exchange/adapter/
Wbxml.java 47 static public final int OPAQUE = 0x0c3;
  /frameworks/base/graphics/java/android/graphics/
PixelFormat.java 34 /** System chooses an opaque format (no alpha bits required) */
35 public static final int OPAQUE = -1;
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 47 private static String OPAQUE = ParameterNames.OPAQUE;
120 else if (nameValue.getName().compareToIgnoreCase(OPAQUE) == 0)
Challenge.java 50 private static String OPAQUE = ParameterNames.OPAQUE;
121 * get the Opaque field
125 return (String) authParams.getValue(OPAQUE);
AuthenticationHeader.java 56 public static final String OPAQUE = ParameterNames.OPAQUE;
115 || name.equalsIgnoreCase(ParameterNames.OPAQUE)
339 * Sets the Opaque value of the WWWAuthenicateHeader to the new <var>opaque</var>
342 * @param opaque -
343 * the new Opaque string of this WWWAuthenicateHeader.
346 * while parsing the opaque value.
349 public void setOpaque(String opaque) throws ParseException {
350 if (opaque == null
    [all...]
ParameterNames.java 58 public static final String OPAQUE = "opaque";
AuthenticationInfo.java 218 || name.equalsIgnoreCase(ParameterNames.OPAQUE)
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 104 return PixelFormat.OPAQUE;
Drawable.java 339 * 255 means fully opaque.
490 * {@link android.graphics.PixelFormat#OPAQUE}.
495 * TRANSLUCENT and the others are OPAQUE then TRANSLUCENT should be
513 * else, OPAQUE is returned.
537 return PixelFormat.OPAQUE;
    [all...]
NinePatchDrawable.java 315 * value of OPAQUE or TRANSLUCENT.
320 PixelFormat.TRANSLUCENT : PixelFormat.OPAQUE;
ShapeDrawable.java 256 return PixelFormat.OPAQUE;
  /cts/tests/tests/graphics/src/android/graphics/cts/
PixelFormatTest.java 126 PixelFormat.getPixelFormatInfo(PixelFormat.OPAQUE, mPixelFormat);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ColorDrawableTest.java 149 assertEquals(PixelFormat.OPAQUE, colorDrawable.getOpacity());
DrawableContainerStateTest.java 297 dr0.setOpacity(PixelFormat.OPAQUE);
300 assertEquals(PixelFormat.OPAQUE, mDrawableContainerState.getOpacity());
InsetDrawableTest.java 312 assertEquals(PixelFormat.OPAQUE, insetDrawable.getOpacity());
316 assertEquals(PixelFormat.OPAQUE, insetDrawable.getOpacity());
BitmapDrawableTest.java 359 assertEquals(PixelFormat.OPAQUE, bitmapDrawable.getOpacity());
365 assertEquals(PixelFormat.OPAQUE, bitmapDrawable.getOpacity());
DrawableTest.java 600 Drawable.resolveOpacity(PixelFormat.OPAQUE, PixelFormat.TRANSLUCENT));
602 Drawable.resolveOpacity(PixelFormat.OPAQUE, PixelFormat.TRANSPARENT));
603 assertEquals(PixelFormat.OPAQUE,
RotateDrawableTest.java 127 assertEquals(PixelFormat.OPAQUE, mRotateDrawable.getOpacity());
ShapeDrawableTest.java 188 assertEquals(PixelFormat.OPAQUE, shapeDrawable.getOpacity());
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 45 protected int mRequestedFormat = PixelFormat.OPAQUE;
  /frameworks/base/core/java/android/view/
WindowManager.java     [all...]
WindowManagerImpl.java 86 WindowManager.LayoutParams.TYPE_APPLICATION, 0, PixelFormat.OPAQUE));
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 211 assertEquals(PixelFormat.OPAQUE, attr.format);
628 * Setting the background to null will make the window be opaque(No way to get the window
629 * attribute of PixelFormat to check if the window is opaque). To make the window
647 assertEquals(PixelFormat.OPAQUE, decor.getBackground().getOpacity());
    [all...]
  /frameworks/base/core/java/android/app/
LauncherActivity.java 295 final Bitmap.Config c = icon.getOpacity() != PixelFormat.OPAQUE ?
WallpaperManager.java 109 return PixelFormat.OPAQUE;

Completed in 564 milliseconds

1 2