OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:treatAsSpace
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp
101
if (Font::
treatAsSpace
(currentCharacter) && !Font::
treatAsSpace
(lastCharacter))
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.cpp
209
bool
treatAsSpace
= Font::
treatAsSpace
(character);
210
if (
treatAsSpace
|| (expandAroundIdeographs && Font::isCJKIdeographOrSymbol(character))) {
214
if (!
treatAsSpace
&& !m_isAfterExpansion) {
241
if (
treatAsSpace
&& (character != '\t' || !m_run.allowTabs()) && (textIterator.currentCharacter() || character == noBreakSpace) && m_font->wordSpacing())
247
if (shouldApplyFontTransforms() && glyphBuffer && Font::
treatAsSpace
(character))
Font.cpp
608
if (
treatAsSpace
(characters[i])) {
616
if (
treatAsSpace
(characters[i - 1])) {
633
if (
treatAsSpace
(character)) {
654
if (
treatAsSpace
(character)) {
Font.h
216
static bool
treatAsSpace
(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == noBreakSpace; }
223
if (
treatAsSpace
(character))
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.cpp
58
if (m_font.wordSpacing() && from && Font::
treatAsSpace
(m_run[from]))
613
bool
treatAsSpace
= Font::
treatAsSpace
(ch);
614
CGGlyph glyph =
treatAsSpace
? fontData->spaceGlyph() : glyphs[i];
615
CGSize advance =
treatAsSpace
? CGSizeMake(spaceWidth, advances[i].height) : advances[i];
619
else if (Font::treatAsZeroWidthSpace(ch) && !
treatAsSpace
) {
645
if (
treatAsSpace
|| Font::isCJKIdeographOrSymbol(ch)) {
649
if (!
treatAsSpace
&& !m_afterExpansion) {
669
if (
treatAsSpace
&& (ch != '\t' || !m_run.allowTabs()) && (characterIndex > 0 || r > 0) && m_font.wordSpacing())
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
GlyphPageTreeNodeWin.cpp
165
if (Font::
treatAsSpace
(c)) {
UniscribeHelper.cpp
576
if (m_scriptTags[i] == SCRIPT_TAG_UNKNOWN && !Font::
treatAsSpace
(ch) && !Font::treatAsZeroWidthSpace(ch)) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp
342
if (Font::
treatAsSpace
(character) && character != '\t')
379
if (Font::
treatAsSpace
(character) && character != '\t')
[
all
...]
Completed in 524 milliseconds