HomeSort by relevance Sort by last modified time
    Searched defs:colorValues (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TextLinkColors.cpp 67 static const ColorValue colorValues[] = {
90 for (const ColorValue* col = colorValues; col->cssValueId; ++col) {
  /frameworks/base/core/jni/android/graphics/
Shader.cpp 119 const jint* colorValues = env->GetIntArrayElements(colorArray, NULL);
134 reinterpret_cast<const SkColor*>(colorValues),
138 env->ReleaseIntArrayElements(colorArray, const_cast<jint*>(colorValues), JNI_ABORT);
148 const jint* colorValues = env->GetIntArrayElements(colorArray, NULL);
193 storedColors[0] = static_cast<uint32_t>(colorValues[0]);
197 storedColors[i] = static_cast<uint32_t>(colorValues[i - missFirst]);
201 storedColors[stopCount - 1] = static_cast<uint32_t>(colorValues[count - 1]);
208 env->ReleaseIntArrayElements(colorArray, const_cast<jint*>(colorValues), JNI_ABORT);
266 const jint* colorValues = env->GetIntArrayElements(colorArray, NULL);
281 reinterpret_cast<const SkColor*>(colorValues),
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 96 final int[] colorValues = res.getIntArray(R.array.captioning_color_selector_values);
100 mForegroundColor.setValues(colorValues);
103 mEdgeColor.setValues(colorValues);
106 final int[] bgColorValues = new int[colorValues.length + 1];
108 System.arraycopy(colorValues, 0, bgColorValues, 1, colorValues.length);
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 702 ContentValues colorValues = new ContentValues();
703 colorValues.put(Colors.DATA, data);
704 colorValues.put(Colors.COLOR_KEY, index);
705 colorValues.put(Colors.COLOR_TYPE, type);
706 colorValues.put(Colors.COLOR, color);
707 Uri result = resolver.insert(uri, colorValues);
    [all...]

Completed in 150 milliseconds