Searched defs:alpha (Results 1 - 25 of 243) sorted by relevance

12345678910

/external/clang/test/SemaTemplate/
H A Dinstantiate-case.cpp4 static int alpha(T c) function
15 alpha(1); // expected-note{{instantiation of function template}}
/external/skia/include/core/
H A DSkUnPreMultiply.h22 // index this table with alpha [0..255]
27 static Scale GetScale(U8CPU alpha) { argument
28 SkASSERT(alpha <= 255);
29 return gTable[alpha];
/external/v8/test/mjsunit/
H A Dstring-index.js165 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/
H A Dmultiple-frames.js6 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);
H A Dnull-values.js4 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');
H A Dupdates.js4 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/css/
H A DRGBColor.cpp55 PassRefPtr<CSSPrimitiveValue> RGBColor::alpha() function in class:WebCore::RGBColor
/external/webkit/Source/WebCore/dom/
H A DDeviceOrientation.cpp36 PassRefPtr<DeviceOrientation> DeviceOrientation::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma) argument
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) argument
53 , m_alpha(alpha)
59 double DeviceOrientation::alpha() const function in class:WebCore::DeviceOrientation
/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp11 float alpha; member in struct:ABCS
/external/proguard/src/proguard/gui/splash/
H A DShadowedSprite.java34 private final VariableDouble alpha; field in class:ShadowedSprite
46 * @param alpha the variable darkness of the shadow (between 0 and 1).
53 VariableDouble alpha,
59 this.alpha = alpha;
69 double l = alpha.getDouble(time);
51 ShadowedSprite(VariableInt xOffset, VariableInt yOffset, VariableDouble alpha, VariableInt blur, Sprite sprite) argument
/external/skia/src/core/
H A DSkAntiRun.h15 /** Sparse array of run-length-encoded alpha (supersampling coverage) values.
26 /// of alpha value 0.
62 static void Break(int16_t runs[], uint8_t alpha[], int x, int count);
66 * matching alpha values.
70 static void BreakAt(int16_t runs[], uint8_t alpha[], int x) { argument
76 alpha[x] = alpha[0];
82 alpha += n;
H A DSkBlitRow_D32.cpp17 int count, U8CPU alpha) {
18 SkASSERT(255 == alpha);
24 int count, U8CPU alpha) {
25 SkASSERT(alpha <= 255);
27 unsigned src_scale = SkAlpha255To256(alpha);
58 int count, U8CPU alpha) {
59 SkASSERT(255 == alpha);
99 int count, U8CPU alpha) {
100 SkASSERT(alpha <= 255);
104 *dst = SkBlendARGB32(*(src++), *dst, alpha);
15 S32_Opaque_BlitRow32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha) argument
22 S32_Blend_BlitRow32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha) argument
56 S32A_Opaque_BlitRow32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha) argument
97 S32A_Blend_BlitRow32(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSDeviceOrientationEventCustom.cpp38 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/platform/graphics/gpu/
H A DBicubicShader.cpp48 , m_alphaLocation(context->getUniformLocation(program, "alpha"))
72 "uniform float alpha;\n"
112 void BicubicShader::use(const AffineTransform& transform, const AffineTransform& texTransform, const float coefficients[16], const float imageIncrement[2], float alpha) argument
129 m_context->uniform1f(m_alphaLocation, alpha);
H A DTexShader.cpp61 void TexShader::use(const AffineTransform& transform, const AffineTransform& texTransform, int sampler, float alpha) argument
73 m_context->uniform1f(m_alphaLocation, alpha);
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DColorGtk.cpp39 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 };
/external/skia/tests/
H A DSrcOverTest.cpp13 static int test_srcover0(unsigned dst, unsigned alpha) { argument
14 return alpha + SkAlphaMul(dst, SkAlpha255To256(255 - alpha));
18 static int test_srcover1(unsigned dst, unsigned alpha) { argument
19 return alpha + SkAlphaMul(dst, 256 - alpha);
23 static int test_srcover2(unsigned dst, unsigned alpha) { argument
24 return alpha + SkMulDiv255Round(dst, 255 - alpha);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DeviceOrientationEventCustom.cpp42 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/html/canvas/
H A DWebGLContextAttributes.cpp60 bool WebGLContextAttributes::alpha() const function in class:WebCore::WebGLContextAttributes
62 return m_attrs.alpha;
65 void WebGLContextAttributes::setAlpha(bool alpha) argument
67 m_attrs.alpha = alpha;
/external/webkit/Source/WebCore/platform/image-encoders/skia/
H A DPNGImageEncoder.cpp56 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/
H A Dnon-kerned-drawing.cpp61 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/
H A DSVGFEComponentTransferElement.cpp91 ComponentTransferFunction alpha; local
101 alpha = static_cast<SVGFEFuncAElement*>(node)->transferFunction();
104 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha);
/external/webkit/Source/WebKit/chromium/public/
H A DWebDeviceOrientation.h38 WebDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma) argument
41 m_alpha(alpha),
53 double alpha() { return m_alpha; } function in class:WebKit::WebDeviceOrientation
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDeviceOrientationClientMockQt.cpp76 void DeviceOrientationClientMockQt::setOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma) argument
78 m_orientation = DeviceOrientation::create(canProvideAlpha, alpha,
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.cc29 double alpha = animation_.GetCurrentValue(); local
33 alpha * 0xff),
36 alpha * 0xff)};

Completed in 551 milliseconds

12345678910