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

1 2

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/filters/
TintFilter.java 22 * Tint filter applied to the image.
26 private int tint; field in class:TintFilter
29 tint = color;
35 ImageUtils.nativeTint(src.bitmap(), dst.bitmap(), tint); local
ImageUtils.java 56 public static native void nativeTint(Bitmap src, Bitmap dst, int tint);
  /gdk/samples/PhotoEditor/jni/
tint.cpp 30 JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jint tint) {
32 return f(env, obj, src_bitmap, dst_bitmap, tint);
35 extern "C" void Tint(
36 JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jint tint) {
45 LOGE("LockBitmaps in Tint failed, error=%d", ret);
55 uint32_t tint_red = kTintRatio * ((tint >> 16) & 0xff);
56 uint32_t tint_green = kTintRatio * ((tint >> 8) & 0xff);
57 uint32_t tint_blue = kTintRatio * (tint & 0xff);
Android-portable.mk 32 tint.cpp \
Android.mk 32 tint.cpp \
_jni.h 22 void Tint(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jint tint);
47 typedef void (*pTintType)(JNIEnv *env, jobject obj, jobject src_bitmap, jobject dst_bitmap, jint tint);
  /frameworks/native/include/private/gui/
LayerState.h 39 alpha(0), tint(0), flags(0), mask(0),
64 uint32_t tint; member in struct:android::layer_state_t
  /external/chromium/chrome/browser/ui/gtk/
gtk_theme_service.h 185 // non-NULL, or tinting |base| with |tint|. Also sets |color_id| and
189 const color_utils::HSL& tint,
215 // Tints an icon based on tint.
217 const color_utils::HSL& tint) const;
219 // Returns the tint for buttons that contrasts with the normal window
221 void GetNormalButtonTintHSL(color_utils::HSL* tint) const;
223 // Returns a tint that's the color of the current normal text in an entry.
224 void GetNormalEntryForegroundHSL(color_utils::HSL* tint) const;
226 // Returns a tint that's the color of the current highlighted text in an
228 void GetSelectedEntryForegroundHSL(color_utils::HSL* tint) const
    [all...]
gtk_theme_service.cc 52 // How much to tint the GTK+ color lighter at the top of the window.
55 // How much to tint the GTK+ color when an explicit frame color hasn't been
133 // Picks a button tint from a set of background colors. While
137 // pair. While 3/4 of the time the resulting tint will be the same, themes that
143 color_utils::HSL* tint) {
156 // 125] will tint green instead of gray). Slight differences (+/-10 (4%) to
165 tint->h = -1;
168 tint->s = text_tint.s;
173 tint->l = accent_tint.l;
175 tint->l = text_tint.l
1073 color_utils::SkColorToHSL(GdkToSkColor(&color), tint); local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumMac.mm 82 // Updates the control tint (a.k.a. active state) of |cell| (from |o|).
84 // NSCell(s) lack a parent NSView. Therefore controls don't have their tint
94 NSControlTint tint = isActive(o) ? [NSColor currentControlTint] :
97 if (tint != oldTint)
98 [cell setControlTint:tint];
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 126 uint32_t tint);
275 SurfaceID id, uint32_t tint) {
281 s->tint = tint;
418 status_t SurfaceComposerClient::setFreezeTint(SurfaceID id, uint32_t tint) {
419 return getComposer().setFreezeTint(this, id, tint);
Surface.cpp 161 status_t SurfaceControl::setFreezeTint(uint32_t tint) {
165 return client->setFreezeTint(mToken, tint);
  /frameworks/native/include/gui/
Surface.h 74 status_t setFreezeTint(uint32_t tint);
SurfaceComposerClient.h 126 status_t setFreezeTint(SurfaceID id, uint32_t tint);
  /external/openssl/crypto/asn1/
tasn_dec.c 927 ASN1_INTEGER **tint; local
991 tint = (ASN1_INTEGER **)pval;
992 if (!c2i_ASN1_INTEGER(tint, &cont, len))
995 (*tint)->type = utype | ((*tint)->type & V_ASN1_NEG);
  /frameworks/base/core/java/android/widget/
ImageView.java 146 int tint = a.getInt(com.android.internal.R.styleable.ImageView_tint, 0); local
147 if (tint != 0) {
148 setColorFilter(tint);
    [all...]
  /external/chromium/chrome/browser/themes/
browser_theme_pack_unittest.cc 36 int color, int tint) {
40 ThemeService::GetDefaultTint(tint));
336 // We shouldn't have a buttons tint, as it was invalid.
  /development/samples/HelloEffects/src/com/example/android/mediafx/
HelloEffects.java 222 case R.id.tint:
225 mEffect.setParameter("tint", Color.MAGENTA);
  /frameworks/base/core/java/android/view/
Surface.java 510 public native void setFreezeTint(int tint);
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 283 NSControlTint tint = windowInactive ? static_cast<NSControlTint>(NSClearControlTint)
285 if (tint != oldTint)
286 [cell setControlTint:tint];
  /frameworks/base/core/jni/
android_view_Surface.cpp 740 jint tint)
744 status_t err = surface->setFreezeTint(tint);
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 958 milliseconds

1 2