OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_runWidthSoFar
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.h
55
float runWidthSoFar() const { return
m_runWidthSoFar
; }
74
float
m_runWidthSoFar
;
WidthIterator.cpp
41
,
m_runWidthSoFar
(0)
145
float widthSinceLastRounding =
m_runWidthSoFar
;
146
m_runWidthSoFar
= floorf(
m_runWidthSoFar
);
147
widthSinceLastRounding -=
m_runWidthSoFar
;
170
width = m_font->tabWidth(*fontData, m_run.tabSize(), m_run.xPos() +
m_runWidthSoFar
+ widthSinceLastRounding);
187
m_runWidthSoFar
+= applyFontTransforms(glyphBuffer, m_run.ltr(), lastGlyphCount, lastFontData, m_typesettingFeatures, charactersTreatedAsSpace);
218
m_runWidthSoFar
+= expansionAtThisOpportunity;
272
m_runWidthSoFar
+= width;
285
m_runWidthSoFar
+= widthSinceLastRounding
[
all
...]
FontFastPath.cpp
406
float beforeWidth = it.
m_runWidthSoFar
;
412
float afterWidth = it.
m_runWidthSoFar
;
417
initialAdvance = finalRoundingWidth + it.
m_runWidthSoFar
- afterWidth;
549
return it.
m_runWidthSoFar
;
557
float beforeWidth = it.
m_runWidthSoFar
;
559
float afterWidth = it.
m_runWidthSoFar
;
567
float totalWidth = it.
m_runWidthSoFar
;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.h
63
float runWidthSoFar() const { return
m_runWidthSoFar
; }
161
float
m_runWidthSoFar
;
ComplexTextController.cpp
122
,
m_runWidthSoFar
(0)
170
m_runWidthSoFar
= m_leadingExpansion;
492
m_runWidthSoFar
= m_leadingExpansion;
541
m_runWidthSoFar
+= adjustedAdvance.width;
544
m_runWidthSoFar
+= adjustedAdvance.width;
546
m_runWidthSoFar
+= adjustedAdvance.width * (m_characterInCurrentGlyph - oldCharacterInCurrentGlyph) / (glyphEndOffset - glyphStartOffset);
566
m_runWidthSoFar
+= m_finalRoundingWidth;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp
[
all
...]
Completed in 1111 milliseconds