HomeSort by relevance Sort by last modified time
    Searched refs:needsWordSpacing (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.h 176 float placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing);
178 float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing);
InlineFlowBox.cpp 362 float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing)
373 placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing);
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;
    [all...]
RenderBlockLineLayout.cpp 561 bool needsWordSpacing;
571 needsWordSpacing = lineBox->isLeftToRightDirection() ? false: true;
572 lineBox->placeBoxesInInlineDirection(lineLogicalLeft, needsWordSpacing);
579 bool needsWordSpacing = true;
608 if (!r->m_start && needsWordSpacing && isSpaceOrNewline(rt->characterAt(r->m_start)))
610 needsWordSpacing = !isSpaceOrNewline(rt->characterAt(r->m_stop - 1));
    [all...]
RenderText.cpp     [all...]

Completed in 260 milliseconds