OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lastCharacter
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLEntityTable.h
34
UChar
lastCharacter
() const { return entity[length - 1]; }
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp
93
UChar
lastCharacter
= m_lastCharacter;
100
if (currentCharacter &&
lastCharacter
&& m_font.wordSpacing()) {
101
if (Font::treatAsSpace(currentCharacter) && !Font::treatAsSpace(
lastCharacter
))
SVGTextLayoutAttributesBuilder.cpp
47
UChar
lastCharacter
= ' ';
48
collectTextPositioningElements(textRoot,
lastCharacter
);
67
UChar
lastCharacter
= ' ';
68
collectTextPositioningElements(textRoot,
lastCharacter
);
85
static inline void processRenderSVGInlineText(RenderSVGInlineText* text, unsigned& atCharacter, UChar&
lastCharacter
)
95
if (currentCharacter == ' ' &&
lastCharacter
== ' ')
98
lastCharacter
= currentCharacter;
103
void SVGTextLayoutAttributesBuilder::collectTextPositioningElements(RenderObject* start, UChar&
lastCharacter
)
109
processRenderSVGInlineText(toRenderSVGInlineText(child), m_textLength,
lastCharacter
);
121
collectTextPositioningElements(child,
lastCharacter
);
[
all
...]
SVGTextMetricsBuilder.cpp
116
,
lastCharacter
(0)
125
UChar
lastCharacter
;
150
if (currentCharacter == ' ' && !preserveWhiteSpace && (!data->hasLastCharacter || data->
lastCharacter
== ' ')) {
171
data->
lastCharacter
= currentCharacter;
/external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIterator.h
80
UChar
lastCharacter
() const
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h
639
inline void nextCharacter(UChar& currentCharacter, UChar&
lastCharacter
, UChar& secondToLastCharacter)
641
secondToLastCharacter =
lastCharacter
;
642
lastCharacter
= currentCharacter;
[
all
...]
Completed in 2597 milliseconds