Home
last modified time | relevance | path

Searched refs:m_format (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/css/
DCSSFontFaceSrcValue.cpp41 return equalIgnoringCase(m_format, "svg"); in isSVGFontFaceSrc()
49 if (m_format.isEmpty()) { in isSupportedFormat()
56 return FontCustomPlatformData::supportsFormat(m_format) in isSupportedFormat()
72 if (!m_format.isEmpty()) in cssText()
73 result += " format(" + m_format + ")"; in cssText()
DCSSFontFaceSrcValue.h53 const String& format() const { return m_format; } in format()
56 void setFormat(const String& format) { m_format = format; } in setFormat()
82 String m_format; variable
/external/webkit/Source/WebCore/platform/graphics/chromium/
DLayerTexture.cpp40 , m_format(0) in LayerTexture()
53 return m_token && size == m_size && format == m_format && m_textureManager->hasTexture(m_token); in isValid()
61 if (size == m_size && format == m_format && m_textureManager->hasTexture(m_token)) in reserve()
67 m_format = format; in reserve()
DLayerTexture.h68 unsigned m_format; variable
/external/webkit/Source/JavaScriptCore/dfg/
DDFGSpeculativeJIT.h209 , m_format(DataFormatNone) in SpeculateIntegerOperand()
231 m_gprOrInvalid = m_jit->fillSpeculateInt(index(), m_format); in gpr()
238 ASSERT(m_format == DataFormatInteger || m_format == DataFormatJSInteger); in format()
239 return m_format; in format()
251 DataFormat m_format; variable
DDFGJITCodeGenerator.h750 , m_format(DataFormatNone) in IntegerOperand()
772 m_gprOrInvalid = m_jit->fillInteger(index(), m_format); in gpr()
779 ASSERT(m_format == DataFormatInteger || m_format == DataFormatJSInteger); in format()
780 return m_format; in format()
792 DataFormat m_format; variable
/external/emma/core/java12/com/vladium/emma/report/
DIItemAttribute.java150 m_format.format (1.0F, appendTo, m_fieldPosition); in format()
152 m_format.format (n_scaled / d, appendTo, m_fieldPosition); in format()
204 m_format = (DecimalFormat) NumberFormat.getPercentInstance (); // TODO: locale in FractionAttribute()
209 m_format.setMaximumFractionDigits (0); in FractionAttribute()
223 private final DecimalFormat m_format, m_nFormat; field in IItemAttribute.Factory.FractionAttribute
/external/webkit/Source/WebCore/platform/graphics/qt/
DImageDecoderQt.cpp80 m_reader.set(new QImageReader(m_buffer.get(), m_format)); in setData()
86 m_format = m_reader->format(); in setData()
131 return String(m_format.constData(), m_format.length()); in filenameExtension()
DImageDecoderQt.h69 QByteArray m_format;
/external/webkit/Source/WebCore/platform/graphics/gpu/
DTexture.h54 Format format() const { return m_format; } in format()
59 Format m_format; variable
DTexture.cpp52 , m_format(format) in Texture()
161 convertFormat(m_context, m_format, &glFormat, &glType, &swizzle); in updateSubRect()
/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java67 m_format = (DecimalFormat) NumberFormat.getPercentInstance (); // TODO: locale in ReportGenerator()
70 m_format.setMaximumFractionDigits (0); in ReportGenerator()
1222m_format.format ((double) n / d, tooltipBuffer, m_fieldPosition); in embedSrcFile()
1479 private final DecimalFormat m_format; local
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2946419 * platform/graphics/qt/ImageDecoderQt.h: Change the m_format type