OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_textRun
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp
73
TextRunComponent() :
m_textRun
(0, 0) {}
76
~TextRunComponent() {
m_textRun
; }
79
int textLength() const { return m_spaces ? m_spaces :
m_textRun
.length(); }
81
TextRun
m_textRun
;
88
:
m_textRun
(start, length, parentTextRun.allowTabs(), 0, 0
95
WidthIterator it(&font,
m_textRun
);
96
it.advance(
m_textRun
.length(), 0);
101
:
m_textRun
(0, 0)
230
drawSimpleText(context, comp.
m_textRun
, pt, from - curPos, std::min(to, curEnd) - curPos);
271
: offsetForPositionForSimpleText(comp.
m_textRun
, position - xs, includePartialGlyphs))
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp
44
:
m_textRun
(0)
50
:
m_textRun
(textRun)
56
:
m_textRun
(other.
m_textRun
)
63
bool atEnd() const { return !
m_textRun
|| m_offset >=
m_textRun
->length(); }
64
UChar current() const { return (*
m_textRun
)[m_offset]; }
69
return m_offset == other.m_offset &&
m_textRun
== other.
m_textRun
;
75
const TextRun*
m_textRun
;
[
all
...]
/external/webkit/Source/WebKit/android/nav/
SelectText.cpp
61
:
m_textRun
(0)
67
:
m_textRun
(textRun)
73
:
m_textRun
(other.
m_textRun
)
80
bool atEnd() const { return !
m_textRun
|| m_offset >=
m_textRun
->length(); }
81
UChar current() const { return (*
m_textRun
)[m_offset]; }
86
return m_offset == other.m_offset &&
m_textRun
== other.
m_textRun
;
92
const TextRun*
m_textRun
;
[
all
...]
Completed in 25 milliseconds