/external/skia/include/core/ |
SkBlitRow.h | 17 //! If set, the alpha parameter will be != 255 19 //! If set, the src colors may have alpha != 255 31 @param alpha A global alpha to be applied to all of the src colors 37 int count, U8CPU alpha, int x, int y); 50 @param src array of src 32bit colors (w/ or w/o alpha) 52 @param alpha global alpha to be applied to all src colors 56 int count, U8CPU alpha);
|
/frameworks/base/libs/hwui/ |
Layer.h | 154 inline void setAlpha(int alpha) { 155 this->alpha = alpha; 158 inline void setAlpha(int alpha, SkXfermode::Mode mode) { 159 this->alpha = alpha; 164 return alpha; 386 int alpha; member in class:android::uirenderer::Layer
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/ |
PreviewPageFrame.java | 74 .alpha(mSelectedPageAlpha); 82 .alpha(mNotSelectedAlpha);
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Description.cpp | 72 void Description::setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { 76 mColor[3] = alpha;
|
GLES11RenderEngine.h | 55 virtual void setupLayerBlending(bool premultipliedAlpha, bool opaque, int alpha); 56 virtual void setupDimLayerBlending(int alpha);
|
GLES20RenderEngine.h | 70 virtual void setupLayerBlending(bool premultipliedAlpha, bool opaque, int alpha); 71 virtual void setupDimLayerBlending(int alpha);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_postproc.c | 456 int y1, int u1, int v1, int alpha, int stride) { 458 int y1_const = y1 * ((1 << 16) - alpha); 459 int u1_const = u1 * ((1 << 16) - alpha); 460 int v1_const = v1 * ((1 << 16) - alpha); 465 y[j] = (y[j] * alpha + y1_const) >> 16; 477 u[j] = (u[j] * alpha + u1_const) >> 16; 478 v[j] = (v[j] * alpha + v1_const) >> 16; 489 int y1, int u1, int v1, int alpha, int stride) { 491 int y1_const = y1 * ((1 << 16) - alpha); 492 int u1_const = u1 * ((1 << 16) - alpha); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
is_1.pass.cpp | 41 assert(f.is(F::alpha, 'a')); 42 assert(!f.is(F::alpha, '1'));
|
/packages/apps/Calendar/src/com/android/calendar/ |
DayOfMonthDrawable.java | 59 public void setAlpha(int alpha) { 60 mPaint.setAlpha(alpha);
|
/packages/apps/Camera/src/com/android/camera/drawable/ |
TextDrawable.java | 75 public void setAlpha(int alpha) { 76 mPaint.setAlpha(alpha);
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
AlphaTouchInterceptorOverlay.java | 31 * Also supports an alpha layer to dim the content underneath. By default, the 32 * alpha layer is the same View as the touch-interceptor layer. However, for 34 * intercepted (for example, {@link CarouselTab}'s label appears above the alpha 35 * layer). In this case, you can specify the View to use as the alpha layer via 37 * the alpha-layer with respect to your other sub-views. 60 * Set the View that the overlay will use as its alpha-layer. If 62 * some child views need to appear above the alpha-layer but below 68 // We're no longer the alpha-layer, so make ourself invisible. 75 /** Sets the alpha value on the alpha layer. * [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseDenseProduct.h | 173 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) 183 res.coeffRef(j,c) = alpha * tmp; 197 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) 203 typename Res::Scalar rhs_j = alpha * rhs.coeff(j,c); 219 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) 225 res_j += (alpha*it.value()) * rhs.row(it.index()); 238 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) 244 res.row(it.index()) += (alpha*it.value()) * rhs_j; 250 inline void sparse_time_dense_product(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const AlphaType& alpha) 252 sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType>::run(lhs, rhs, res, alpha); [all...] |
/external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
is_many.pass.cpp | 43 assert( (m[0] & F::alpha)); 57 assert(!(m[1] & F::alpha)); 71 assert( (m[2] & F::alpha)); 85 assert(!(m[3] & F::alpha)); 99 assert(!(m[4] & F::alpha)); 113 assert( (m[5] & F::alpha)); 127 assert(!(m[6] & F::alpha)); 152 assert(!(m[0] & F::alpha)); 166 assert(!(m[1] & F::alpha)); 180 assert( (m[2] & F::alpha)); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
is_many.pass.cpp | 43 assert( (m[0] & F::alpha)); 57 assert(!(m[1] & F::alpha)); 71 assert( (m[2] & F::alpha)); 85 assert(!(m[3] & F::alpha)); 99 assert(!(m[4] & F::alpha)); 113 assert( (m[5] & F::alpha)); 127 assert(!(m[6] & F::alpha)); 152 assert(!(m[0] & F::alpha)); 166 assert(!(m[1] & F::alpha)); 180 assert( (m[2] & F::alpha)); [all...] |
/external/ceres-solver/internal/ceres/ |
conjugate_gradients_solver.cc | 158 const double alpha = rho / pq; local 159 if (IsInfinite(alpha)) { 162 StringPrintf("Numerical failure. alpha = rho / pq = %e", alpha); 166 xref = xref + alpha * p; 168 // Ideally we would just use the update r = r - alpha*q to keep 180 r = r - alpha * q;
|
/external/chromium_org/ash/touch/ |
touch_hud_projection.cc | 82 int alpha = kProjectionAlpha; variable 84 alpha = static_cast<int>(fadeout_->CurrentValueBetween(alpha, 0)); 85 fill_paint_.setAlpha(alpha); 86 stroke_paint_.setAlpha(alpha);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
ImageFrame.h | 134 void setHasAlpha(bool alpha); 183 unsigned alpha = a * div255; 184 r = (r * alpha) >> 24; 185 g = (g * alpha) >> 24; 186 b = (b * alpha) >> 24;
|
/external/chromium_org/third_party/skia/gm/ |
aarectmodes.cpp | 155 for (int alpha = 0; alpha < 4; ++alpha) { 169 gAlphaValue[alpha & 1], 170 gAlphaValue[alpha & 2]);
|
hairmodes.cpp | 97 for (int alpha = 0; alpha < 4; ++alpha) { 111 gAlphaValue[alpha & 1], 112 gAlphaValue[alpha & 2]);
|
/external/chromium_org/third_party/skia/samplecode/ |
SampleAARectModes.cpp | 103 for (int alpha = 0; alpha < 4; ++alpha) { 117 gAlphaValue[alpha & 1], 118 gAlphaValue[alpha & 2]);
|
SampleHairModes.cpp | 101 for (int alpha = 0; alpha < 4; ++alpha) { 115 gAlphaValue[alpha & 1], 116 gAlphaValue[alpha & 2]);
|
/external/chromium_org/third_party/skia/src/core/ |
SkScan_AntiPath.cpp | 56 virtual void blitV(int x, int y, int height, SkAlpha alpha) SK_OVERRIDE { 157 *accumulates* SCALE pixels worth of "alpha" in [0,(256/SCALE)] 159 itself, with the same (alpha - (alpha >> 8)) correction as 174 int alpha = (256 >> SHIFT) * aa; local 176 return alpha - (alpha >> 8); 317 // xrite/SCALE should give us alpha. 434 static void add_aa_span(uint8_t* alpha, U8CPU startAlpha) { 435 /* I should be able to just add alpha[x] + startAlpha [all...] |
/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixVector.h | 30 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const ResScalar& alpha); 36 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const ResScalar& alpha) 63 res.segment(s,r) += (alpha * cjRhs.coeff(i)) * cjLhs.col(i).segment(s,r); 65 res.coeffRef(i) += alpha * cjRhs.coeff(i); 75 &res.coeffRef(s), resIncr, alpha); 84 _res, resIncr, alpha); 98 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const ResScalar& alpha); 104 const RhsScalar* _rhs, Index rhsIncr, ResScalar* _res, Index resIncr, const ResScalar& alpha) 131 res.coeffRef(i) += alpha * (cjLhs.row(i).segment(s,r).cwiseProduct(cjRhs.segment(s,r).transpose())).sum(); 133 res.coeffRef(i) += alpha * cjRhs.coeff(i) 207 TriangularProductTranspose(m_rhs.transpose(),m_lhs.transpose()), dstT, alpha); local [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU_Memory.h | 67 float alpha = 1.5; // Ratio of the memory increase local 73 new_len = (std::max)(length+1,Index(alpha * length)); 109 alpha = (alpha + 1)/2; 110 new_len = (std::max)(length+1,Index(alpha * length));
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowImageView.java | 22 private int alpha; field in class:ShadowImageView 101 public void setAlpha(int alpha) { 102 this.alpha = alpha; 131 return alpha;
|