OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_from
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSUnicodeRangeValue.cpp
35
if (
m_from
== m_to)
36
return String::format("U+%X",
m_from
);
37
return String::format("U+%X-%X",
m_from
, m_to);
42
return
m_from
== other.
m_from
&& m_to == other.m_to;
CSSUnicodeRangeValue.h
41
UChar32 from() const { return
m_from
; }
51
,
m_from
(from)
56
UChar32
m_from
;
member in class:WebCore::CSSUnicodeRangeValue
CSSFontFace.h
73
:
m_from
(from)
78
UChar32 from() const { return
m_from
; }
80
bool contains(UChar32 c) const { return
m_from
<= c && c <= m_to; }
83
UChar32
m_from
;
member in struct:WebCore::CSSFontFace::UnicodeRange
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
SegmentedFontData.h
39
:
m_from
(from)
45
UChar32 from() const { return
m_from
; }
47
bool isEntireRange() const { return !
m_from
&& m_to >= 0x10ffff; }
51
UChar32
m_from
;
member in struct:WebCore::FontDataRange
/external/chromium_org/third_party/WebKit/Source/platform/
CalculationValue.h
217
:
m_from
(from)
226
return m_progress == o.m_progress &&
m_from
== o.
m_from
&& m_to == o.m_to;
236
return (1.0f - m_progress) * floatValueForLength(
m_from
, maxValue) + m_progress * floatValueForLength(m_to, maxValue);
239
const Length& from() const { return
m_from
; }
244
Length
m_from
;
member in class:WebCore::CalcExpressionBlendLength
Completed in 151 milliseconds