OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:computedsize
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.cpp
309
// multiplier; hence for specifiedSize == pleasantSize,
computedSize
will be
312
// specifiedSize beyond pleasantSize we will only increase
computedSize
314
//
computedSize
= specifiedSize line, after which we stay on that line (so
315
// then every 1px increase in specifiedSize increases
computedSize
by 1px).
318
float
computedSize
;
320
computedSize
= multiplier * specifiedSize;
322
computedSize
= multiplier * pleasantSize + gradientAfterPleasantSize * (specifiedSize - pleasantSize);
323
if (
computedSize
< specifiedSize)
324
computedSize
= specifiedSize;
326
return
computedSize
;
[
all
...]
RenderCombineText.cpp
101
float emWidth = description.
computedSize
() * textCombineMargin;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDescription.h
110
float
computedSize
() const { return m_computedSize; }
142
float effectiveFontSize() const; // Returns either the
computedSize
or the computedPixelSize
FontDescription.cpp
151
?
computedSize
()
Font.h
96
float size() const { return fontDescription().
computedSize
(); }
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.cpp
140
return primitiveValue->getFloatValue() * m_document->renderStyle()->fontDescription().
computedSize
();
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
SimpleFontDataWin.cpp
115
float scaledSize = scaleFactor * fontDescription.
computedSize
();
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp
568
factor = computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().
computedSize
();
577
factor = (computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().
computedSize
()) / 2.0;
580
factor = computingFontSize ? rootStyle.fontDescription().specifiedSize() : rootStyle.fontDescription().
computedSize
();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp
183
const float scaledSize = lroundf(fontDescription.
computedSize
() * scaleFactor);
/external/chromium_org/third_party/WebKit/Source/web/
AutofillPopupMenuClient.cpp
283
regularFontDescription.setComputedSize(style->fontDescription().
computedSize
());
PopupListBox.cpp
522
d.setComputedSize(d.
computedSize
() * 0.9);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp
[
all
...]
/external/chromium_org/tools/deep_memory_profiler/tests/data/heap.01234.symmap/
chrome.abcdef.nm
98
0000000001c573e0 t WebCore::FontDescription::
computedSize
() const<0000000001c573e0>
[
all
...]
Completed in 765 milliseconds