Searched refs:needsWordSpacing (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineFlowBox.h176 float placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing);
178 float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing);
H A DInlineFlowBox.cpp362 float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing) argument
373 placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing); local
381 float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing)
389 if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start())))
391 needsWordSpacing = !isSpaceOrNewline(rt.characterAt(text->end()));
422 logicalLeft = flow->placeBoxesInInlineDirection(logicalLeft, needsWordSpacing);
441 needsWordSpacing = true;
380 placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing) argument
H A DRenderBlockLineLayout.cpp561 bool needsWordSpacing; local
571 needsWordSpacing = lineBox->isLeftToRightDirection() ? false: true;
572 lineBox->placeBoxesInInlineDirection(lineLogicalLeft, needsWordSpacing);
579 bool needsWordSpacing = true; local
608 if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characterAt(r->m_start)))
610 needsWordSpacing = !isSpaceOrNewline(rt->characterAt(r->m_stop - 1));
H A DRenderText.cpp916 bool needsWordSpacing = false; local
1116 needsWordSpacing = isSpace && !previousCharacterIsSpace && i == len - 1;
1128 if ((needsWordSpacing && len > 1) || (ignoringSpaces && !firstWord))

Completed in 164 milliseconds