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

1 2 3

  /external/clang/test/CodeGen/
debug-info.c 11 struct OPAQUE;
12 typedef struct OPAQUE *PTR;
  /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;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Wbxml.java 47 static public final int OPAQUE = 0x0c3;
Serializer.java 175 public Serializer opaque(InputStream is, int length) throws IOException { method in class:Serializer
177 mOutput.write(Wbxml.OPAQUE);
180 log("Opaque, length: " + length);
182 // Now write out the opaque data in batches
197 mOutput.write(Wbxml.OPAQUE);
  /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)
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SerializerTests.java 36 // Basic test for use of start, end, tag, data, opaque, and done
51 s.opaque(new ByteArrayInputStream(BYTE_ARRAY), BYTE_ARRAY_LENGTH);
81 (byte)Wbxml.OPAQUE,
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 132 return PixelFormat.OPAQUE;
NinePatchDrawable.java 327 * value of OPAQUE or TRANSLUCENT.
332 PixelFormat.TRANSLUCENT : PixelFormat.OPAQUE;
ShapeDrawable.java 269 return PixelFormat.OPAQUE;
  /frameworks/base/services/java/com/android/server/wm/
DimSurface.java 41 -1, 16, 16, PixelFormat.OPAQUE,
BlackFrame.java 42 -1, w, h, PixelFormat.OPAQUE, Surface.FX_SURFACE_DIM);
DimAnimator.java 50 -1, 16, 16, PixelFormat.OPAQUE,
ScreenRotationAnimation.java 91 -1, mWidth, mHeight, PixelFormat.OPAQUE, Surface.FX_SURFACE_SCREENSHOT | Surface.HIDDEN);
  /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());
BitmapDrawableTest.java 388 assertEquals(PixelFormat.OPAQUE, bitmapDrawable.getOpacity());
394 assertEquals(PixelFormat.OPAQUE, bitmapDrawable.getOpacity());
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 45 protected int mRequestedFormat = PixelFormat.OPAQUE;
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 212 assertEquals(PixelFormat.OPAQUE, attr.format);
543 * Setting the background to null will make the window be opaque(No way to get the window
544 * attribute of PixelFormat to check if the window is opaque). To make the window
562 assertEquals(PixelFormat.OPAQUE, decor.getBackground().getOpacity());
849 // mHaveWindowFormat will be true after set PixelFormat.OPAQUE and
851 window.setFormat(PixelFormat.OPAQUE);
856 assertEquals(PixelFormat.OPAQUE, window.getAttributes().format);
    [all...]
  /frameworks/base/core/java/android/view/
Surface.java 155 * Indicates that the surface must be considered opaque, even if its
158 * still draw every pixel opaque.
162 public static final int OPAQUE = 0x00000400;
WindowManager.java     [all...]

Completed in 2874 milliseconds

1 2 3