OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typesettingFeatures
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
SimpleFontDataCoreText.cpp
34
CFDictionaryRef SimpleFontData::getCFStringAttributes(
TypesettingFeatures
typesettingFeatures
, FontOrientation orientation) const
36
unsigned key =
typesettingFeatures
+ 1;
47
if (!(
typesettingFeatures
& Kerning)) {
53
bool allowLigatures = (orientation == Horizontal && platformData().allowsLigatures()) || (
typesettingFeatures
& Ligatures);
ComplexTextControllerCoreText.mm
205
stringAttributes.adoptCF(CFDictionaryCreateMutableCopy(kCFAllocatorDefault, 0, fontData->getCFStringAttributes(m_font.
typesettingFeatures
(), fontData->platformData().orientation())));
213
stringAttributes = fontData->getCFStringAttributes(m_font.
typesettingFeatures
(), fontData->platformData().orientation());
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.h
66
return !font.
typesettingFeatures
();
92
TypesettingFeatures
m_typesettingFeatures;
Font.cpp
83
TypesettingFeatures
Font::s_defaultTypesettingFeatures = 0;
180
if (codePathToUse != Complex &&
typesettingFeatures
() && (runInfo.from || runInfo.to != runInfo.run.length()))
196
if (codePathToUse != Complex &&
typesettingFeatures
() && (runInfo.from || runInfo.to != runInfo.run.length()))
217
bool hasKerningOrLigatures =
typesettingFeatures
() & (Kerning | Ligatures);
272
if (codePathToUse != Complex &&
typesettingFeatures
() && (from || to != run.length()))
284
if (codePath(run) != Complex && !
typesettingFeatures
())
335
void Font::setDefaultTypesettingFeatures(
TypesettingFeatures
typesettingFeatures
)
337
s_defaultTypesettingFeatures =
typesettingFeatures
;
340
TypesettingFeatures
Font::defaultTypesettingFeatures(
[
all
...]
WidthIterator.cpp
44
, m_typesettingFeatures(font->
typesettingFeatures
())
99
static inline float applyFontTransforms(GlyphBuffer* glyphBuffer, bool ltr, unsigned& lastGlyphCount, const SimpleFontData* fontData,
TypesettingFeatures
typesettingFeatures
, CharactersTreatedAsSpace& charactersTreatedAsSpace)
101
ASSERT(
typesettingFeatures
& (Kerning | Ligatures));
118
fontData->applyTransforms(glyphBuffer->glyphs(lastGlyphCount), advances + lastGlyphCount, glyphBufferSize - lastGlyphCount,
typesettingFeatures
);
Font.h
32
#include "platform/fonts/
TypesettingFeatures
.h"
123
TypesettingFeatures
typesettingFeatures
() const { return static_cast<
TypesettingFeatures
>(m_typesettingFeatures); }
206
static void setDefaultTypesettingFeatures(
TypesettingFeatures
);
207
static
TypesettingFeatures
defaultTypesettingFeatures();
245
TypesettingFeatures
computeTypesettingFeatures() const
248
TypesettingFeatures
features = s_defaultTypesettingFeatures;
287
static
TypesettingFeatures
s_defaultTypesettingFeatures;
294
mutable unsigned m_typesettingFeatures : 2; // (
TypesettingFeatures
) Caches values computed from m_fontDescription
[
all
...]
FontFastPath.cpp
540
it.advance(run.length(), (
typesettingFeatures
() & (Kerning | Ligatures)) ? &glyphBuffer : 0);
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp
[
all
...]
RenderBlockLineLayout.cpp
473
bool kerningIsEnabled = font.
typesettingFeatures
() & Kerning;
[
all
...]
Completed in 129 milliseconds