HomeSort by relevance Sort by last modified time
    Searched defs:alpha (Results 1 - 25 of 374) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
instantiate-case.cpp 4 static int alpha(T c) function
15 alpha(1); // expected-note{{instantiation of function template}}
  /external/webkit/Source/WebCore/css/
RGBColor.cpp 55 PassRefPtr<CSSPrimitiveValue> RGBColor::alpha() function in class:WebCore::RGBColor
  /frameworks/native/services/surfaceflinger/
LayerDim.cpp 46 if (s.alpha>0) {
48 const GLfloat alpha = s.alpha/255.0f; local
53 if (s.alpha == 0xFF) {
60 glColor4f(0, 0, 0, alpha);
LayerScreenshot.cpp 112 if (s.alpha>0) {
114 const GLfloat alpha = s.alpha/255.0f; local
117 if (s.alpha == 0xFF) {
124 glColor4f(0, 0, 0, alpha);
  /external/v8/test/mjsunit/
string-index.js 135 N[-2] = "Alpha";
136 assertEquals("Alpha", N[-2]);
165 var alpha = ['@']; variable
168 alpha[i] = c[0];
170 var alphaStr = alpha.join("");
174 assertEquals(alpha[i], alphaStr[i]);
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
multiple-frames.js 6 shouldBe('deviceOrientationEvent.alpha', 'mockEvent.alpha');
30 var mockEvent = {alpha: 1.1, beta: 2.2, gamma: 3.3};
32 layoutTestController.setMockDeviceOrientation(true, mockEvent.alpha, true, mockEvent.beta, true, mockEvent.gamma);
null-values.js 4 function setMockOrientation(alpha, beta, gamma) {
5 mockEvent = {alpha: alpha, beta: beta, gamma: gamma};
8 null != mockEvent.alpha, null == mockEvent.alpha ? 0 : mockEvent.alpha,
18 shouldBe('deviceOrientationEvent.alpha', 'mockEvent.alpha');
updates.js 4 function setMockOrientation(alpha, beta, gamma) {
5 mockEvent = {alpha: alpha, beta: beta, gamma: gamma};
7 layoutTestController.setMockDeviceOrientation(true, mockEvent.alpha, true, mockEvent.beta, true, mockEvent.gamma);
15 shouldBe('deviceOrientationEvent.alpha', 'mockEvent.alpha');
  /external/webkit/Source/WebCore/dom/
DeviceOrientation.cpp 36 PassRefPtr<DeviceOrientation> DeviceOrientation::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
38 return adoptRef(new DeviceOrientation(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma));
49 DeviceOrientation::DeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
53 , m_alpha(alpha)
59 double DeviceOrientation::alpha() const function in class:WebCore::DeviceOrientation
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ColorGtk.cpp 39 static_cast<int>(c.alpha * 255)))
46 double red, green, blue, alpha; local
47 getRGBA(red, green, blue, alpha);
48 GdkRGBA rgba = { red, green, blue, alpha };
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 24 public final int alpha; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
30 this.alpha = alpha;
37 this.alpha = 0x10000;
47 alpha == color.alpha);
  /external/clang/test/CodeGenCXX/
2007-04-10-PackedUnion.cpp 11 float alpha; member in struct:ABCS
  /external/skia/src/core/
SkAlphaRuns.cpp 27 void SkAlphaRuns::Break(int16_t runs[], uint8_t alpha[], int x, int count) {
30 // SkAlphaRuns::BreakAt(runs, alpha, x);
31 // SkAlphaRuns::BreakAt(&runs[x], &alpha[x], count);
34 uint8_t* next_alpha = alpha + x;
41 alpha[x] = alpha[0];
47 alpha += n;
52 alpha = next_alpha;
60 alpha[x] = alpha[0]
82 uint8_t* alpha = fAlpha + offsetX; local
137 const uint8_t* alpha = fAlpha; local
148 const uint8_t* alpha = fAlpha; local
    [all...]
  /external/skia/src/effects/
SkTransparentShader.cpp 66 unsigned alpha = fAlpha; local
73 span[i] = SkPackARGB32( alpha,
  /external/webkit/Source/WebCore/bindings/js/
JSDeviceOrientationEventCustom.cpp 38 JSValue JSDeviceOrientationEvent::alpha(ExecState*) const function in class:WebCore::JSDeviceOrientationEvent
43 return jsNumber(imp->orientation()->alpha());
67 // If alpha, beta or gamma are null or undefined, mark them as not provided.
70 double alpha = exec->argument(3).toNumber(exec); local
75 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceOrientationEventCustom.cpp 42 INC_STATS("DOM.DeviceOrientationEvent.alpha._get");
47 return v8::Number::New(imp->orientation()->alpha());
76 // If alpha, beta or gamma are null or undefined, mark them as not provided.
79 double alpha = args[3]->NumberValue(); local
84 RefPtr<DeviceOrientation> orientation = DeviceOrientation::create(alphaProvided, alpha, betaProvided, beta, gammaProvided, gamma);
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
PNGImageEncoder.cpp 56 const unsigned alpha = SkGetPackedA32(*input); local
57 if ((alpha != 0) && (alpha != 255)) {
58 *output++ = SkUnPreMultiply::ApplyScale(scale[alpha], SkGetPackedR32(*input));
59 *output++ = SkUnPreMultiply::ApplyScale(scale[alpha], SkGetPackedG32(*input));
60 *output++ = SkUnPreMultiply::ApplyScale(scale[alpha], SkGetPackedB32(*input));
61 *output++ = alpha;
66 *output++ = alpha;
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 61 CGFloat red, green, blue, alpha; local
62 graphicsContext->fillColor().getRGBA(red, green, blue, alpha);
63 CGContextSetRGBFillColor(cgContext, red, green, blue, alpha);
  /external/webkit/Source/WebCore/svg/
SVGFEComponentTransferElement.cpp 91 ComponentTransferFunction alpha; local
101 alpha = static_cast<SVGFEFuncAElement*>(node)->transferFunction();
104 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha);
  /frameworks/base/core/java/android/view/animation/
AlphaAnimation.java 24 * An animation that controls the alpha level of an object.
26 * changing the alpha property of a {@link Transformation}
54 * @param fromAlpha Starting alpha value for the animation, where 1.0 means
56 * @param toAlpha Ending alpha value for the animation.
64 * Changes the alpha property of the supplied {@link Transformation}
68 final float alpha = mFromAlpha; local
69 t.setAlpha(alpha + ((mToAlpha - alpha) * interpolatedTime));
  /frameworks/base/libs/hwui/
SkiaColorFilter.cpp 91 const int alpha = (color >> 24) & 0xFF; local
92 mA = alpha / 255.0f;
Vertex.h 56 * Simple structure to describe a vertex with a position and an alpha value.
59 float alpha; member in struct:android::uirenderer::AlphaVertex
61 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) {
63 vertex[0].alpha = alpha;
66 static inline void setColor(AlphaVertex* vertex, float alpha) {
67 vertex[0].alpha = alpha;
72 * Simple structure to describe a vertex with a position and an alpha value.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
ctype_base.h 50 static const mask alpha = _ISalpha; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
ctype_base.h 52 static const mask alpha = _ISalpha; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
ctype_base.h 52 static const mask alpha = _ISalpha; member in struct:ctype_base

Completed in 1531 milliseconds

1 2 3 4 5 6 7 8 91011>>