HomeSort by relevance Sort by last modified time
    Searched refs:colorType (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGColor.idl 30 readonly attribute unsigned short colorType;
40 [StrictTypeChecking, RequiresAllArguments=Raise] void setColor(in unsigned short colorType, in DOMString rgbColor, in DOMString iccColor)
SVGColor.cpp 33 SVGColor::SVGColor(const SVGColorType& colorType)
34 : m_colorType(colorType)
81 void SVGColor::setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionCode& ec)
83 if (colorType > SVG_COLORTYPE_CURRENTCOLOR) {
91 SVGColorType type = static_cast<SVGColorType>(colorType);
106 // Spec: If colorType requires an RGBColor, then rgbColor must be a string that matches <color>; otherwise, rgbColor must be null.
112 // Spec: If colorType requires an SVGICCColor, then iccColor must be a string that matches <icccolor>; otherwise, iccColor must be null.
SVGPaint.cpp 120 SVGColor::SVGColorType colorType = colorTypeForPaintType(type);
121 if (colorType == SVGColor::SVG_COLORTYPE_UNKNOWN) {
125 setColorType(colorType);
128 setColor(colorType, rgbColor, iccColor, ec);
SVGColor.h 63 const SVGColorType& colorType() const { return m_colorType; }
70 void setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionCode&);
  /external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp 266 int bitDepth, colorType, interlaceType, compressionType, filterType, channels;
267 png_get_IHDR(png, info, &width, &height, &bitDepth, &colorType, &interlaceType, &compressionType, &filterType);
269 if ((colorType == PNG_COLOR_TYPE_RGB || colorType == PNG_COLOR_TYPE_RGB_ALPHA) && !m_ignoreGammaAndColorProfile) {
282 if (colorType == PNG_COLOR_TYPE_PALETTE || (colorType == PNG_COLOR_TYPE_GRAY && bitDepth < 8))
295 if (colorType == PNG_COLOR_TYPE_GRAY || colorType == PNG_COLOR_TYPE_GRAY_ALPHA)
  /development/tools/emulator/opengl/tests/translator_tests/GLES_CM/
triangleCM.cpp 335 GLenum colorType;
342 colorType = type = GL_FIXED;
346 colorType = GL_UNSIGNED_BYTE;
352 colorType = type = GL_FLOAT;
382 glColorPointer(4, colorType, size_of * 10, data);
384 glColorPointer(4,colorType,size_of * 10, (GLvoid*) (size_of * 3) );
  /frameworks/base/tools/aapt/
Images.cpp 670 int *paletteEntries, bool *hasTransparency, int *colorType,
775 *colorType = PNG_COLOR_TYPE_GRAY; // 1 byte/pixel
782 *colorType = PNG_COLOR_TYPE_PALETTE; // 1 byte/pixel + 4 bytes/color
784 *colorType = PNG_COLOR_TYPE_GRAY_ALPHA; // 2 bytes per pixel
788 *colorType = PNG_COLOR_TYPE_PALETTE;
792 *colorType = isOpaque ? PNG_COLOR_TYPE_GRAY : PNG_COLOR_TYPE_GRAY_ALPHA;
794 *colorType = isOpaque ? PNG_COLOR_TYPE_RGB : PNG_COLOR_TYPE_RGB_ALPHA;
801 if (*colorType == PNG_COLOR_TYPE_PALETTE) {
813 } else if (*colorType == PNG_COLOR_TYPE_GRAY || *colorType == PNG_COLOR_TYPE_GRAY_ALPHA)
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 314 // we track if we actually see a non-opaque pixels, since sometimes a PNG sets its colortype
664 // we track if we actually see a non-opaque pixels, since sometimes a PNG sets its colortype
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
VideoEditorHelper.java 204 long startTime, long duration, int effectType, int colorType) {
207 duration, effectType, colorType);
  /external/skia/gpu/src/
GrGpuGLShaders.cpp 186 float colorType = random.nextF();
187 if (colorType < 1.f / 3.f) {
189 } else if (colorType < 2.f / 3.f) {
    [all...]
  /external/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 98 if (svgColor->colorType() == SVGColor::SVG_COLORTYPE_CURRENTCOLOR)
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 1470 milliseconds