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

1 2 3 4

  /external/clang/test/CodeGen/
debug-info.c 10 struct OPAQUE; // CHECK: DW_TAG_structure_type
11 typedef struct OPAQUE *PTR;
  /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/UnifiedEmail/src/com/android/mail/ui/
LeaveBehindItem.java 65 private static final float OPAQUE = 1.0f;
200 if (!mFadingInText && mSwipeableContent.getAlpha() != OPAQUE) {
215 final float end = OPAQUE;
221 fadeIn.setInterpolator(new DecelerateInterpolator(OPAQUE));
234 if (!mFadingInText && mSwipeableContent.getAlpha() != OPAQUE) {
310 mSwipeableContent.setAlpha(OPAQUE);
  /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/UnifiedEmail/src/com/android/mail/bitmap/
CompositeDrawable.java 133 int opacity = PixelFormat.OPAQUE;
135 if (mDrawables.get(i).getOpacity() != PixelFormat.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,
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ColorDrawableTest.java 90 assertEquals(PixelFormat.OPAQUE, colorDrawable.getOpacity());
DrawableContainerStateTest.java 209 dr0.setOpacity(PixelFormat.OPAQUE);
212 assertEquals(PixelFormat.OPAQUE, mDrawableContainerState.getOpacity());
DrawableTest.java 507 Drawable.resolveOpacity(PixelFormat.OPAQUE, PixelFormat.TRANSLUCENT));
509 Drawable.resolveOpacity(PixelFormat.OPAQUE, PixelFormat.TRANSPARENT));
510 assertEquals(PixelFormat.OPAQUE,
  /frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java 151 return PixelFormat.OPAQUE;
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamWallpaper.java 30 surfaceHolder.setFormat(PixelFormat.OPAQUE);
  /frameworks/base/services/java/com/android/server/wm/
BlackFrame.java 50 w, h, PixelFormat.OPAQUE, SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
53 w, h, PixelFormat.OPAQUE, SurfaceControl.FX_SURFACE_DIM | SurfaceControl.HIDDEN);
DimLayer.java 64 16, 16, PixelFormat.OPAQUE,
68 16, 16, PixelFormat.OPAQUE,
  /cts/tests/tests/graphics/src/android/graphics/cts/
PixelFormatTest.java 112 PixelFormat.getPixelFormatInfo(PixelFormat.OPAQUE, mPixelFormat);
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 45 protected int mRequestedFormat = PixelFormat.OPAQUE;
  /hardware/samsung_slsi/exynos5/include/
fimg2d.h 127 OPAQUE,
  /packages/apps/Gallery2/src/com/android/photos/shims/
BitmapJobDrawable.java 142 PixelFormat.TRANSLUCENT : PixelFormat.OPAQUE;
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 169 assertEquals(PixelFormat.OPAQUE, attr.format);
363 * Setting the background to null will make the window be opaque(No way to get the window
364 * attribute of PixelFormat to check if the window is opaque). To make the window
370 assertEquals(PixelFormat.OPAQUE, decor.getBackground().getOpacity());
533 // mHaveWindowFormat will be true after set PixelFormat.OPAQUE and
535 window.setFormat(PixelFormat.OPAQUE);
540 assertEquals(PixelFormat.OPAQUE, window.getAttributes().format);
    [all...]
  /external/chromium_org/skia/ext/
platform_device_win.cc 48 res = SetBkMode(context, OPAQUE);

Completed in 621 milliseconds

1 2 3 4