OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cssPixelsPerInch
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/css/
CSSHelper.h
32
const float
cssPixelsPerInch
= 96;
CSSPrimitiveValue.cpp
54
// between CSS_PX and relative lengths (see
cssPixelsPerInch
comment in CSSHelper.h for the topic treatment).
324
factor =
cssPixelsPerInch
/ 2.54; // (2.54 cm/in)
327
factor =
cssPixelsPerInch
/ 25.4;
330
factor =
cssPixelsPerInch
;
333
factor =
cssPixelsPerInch
/ 72.0;
337
factor =
cssPixelsPerInch
* 12.0 / 72.0;
375
factor =
cssPixelsPerInch
/ 2.54; // (2.54 cm/in)
378
factor =
cssPixelsPerInch
/ 25.4;
381
factor =
cssPixelsPerInch
;
384
factor =
cssPixelsPerInch
/ 72.0
[
all
...]
/external/webkit/Source/WebCore/svg/
SVGLength.cpp
178
return m_valueInSpecifiedUnits / 2.54f *
cssPixelsPerInch
;
180
return m_valueInSpecifiedUnits / 25.4f *
cssPixelsPerInch
;
182
return m_valueInSpecifiedUnits *
cssPixelsPerInch
;
184
return m_valueInSpecifiedUnits / 72 *
cssPixelsPerInch
;
186
return m_valueInSpecifiedUnits / 6 *
cssPixelsPerInch
;
224
m_valueInSpecifiedUnits = value * 2.54f /
cssPixelsPerInch
;
227
m_valueInSpecifiedUnits = value * 25.4f /
cssPixelsPerInch
;
230
m_valueInSpecifiedUnits = value /
cssPixelsPerInch
;
233
m_valueInSpecifiedUnits = value * 72 /
cssPixelsPerInch
;
236
m_valueInSpecifiedUnits = value * 6 /
cssPixelsPerInch
;
[
all
...]
SVGSVGElement.cpp
160
// 2.54 /
cssPixelsPerInch
gives CM.
161
return (2.54f /
cssPixelsPerInch
) * 10.0f;
166
// 2.54 /
cssPixelsPerInch
gives CM.
167
return (2.54f /
cssPixelsPerInch
) * 10.0f;
Completed in 291 milliseconds