/external/icu/icu4c/source/layout/ |
D | loengine.cpp | 27 …return (le_engine *) LayoutEngine::layoutEngineFactory(fontInstance, scriptCode, languageCode, typ… in le_create() 33 LayoutEngine *le = (LayoutEngine *) engine; in le_close() 49 LayoutEngine *le = (LayoutEngine *) engine; in le_layoutChars() 63 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphCount() 78 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphs() 93 LayoutEngine *le = (LayoutEngine *) engine; in le_getCharIndices() 109 LayoutEngine *le = (LayoutEngine *) engine; in le_getCharIndicesWithBase() 124 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphPositions() 141 LayoutEngine *le = (LayoutEngine *) engine; in le_getGlyphPosition() 155 LayoutEngine *le = (LayoutEngine *) engine; in le_reset()
|
D | LayoutEngine.cpp | 42 const le_int32 LayoutEngine::kTypoFlagKern = LE_Kerning_FEATURE_FLAG; 43 const le_int32 LayoutEngine::kTypoFlagLiga = LE_Ligatures_FEATURE_FLAG; 128 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(LayoutEngine) 143 LayoutEngine::LayoutEngine(const LEFontInstance *fontInstance, in LayoutEngine() function in LayoutEngine 161 le_int32 LayoutEngine::getGlyphCount() const in getGlyphCount() 166 void LayoutEngine::getCharIndices(le_int32 charIndices[], le_int32 indexBase, LEErrorCode &success)… in getCharIndices() 171 void LayoutEngine::getCharIndices(le_int32 charIndices[], LEErrorCode &success) const in getCharIndices() 177 void LayoutEngine::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const in getGlyphs() 182 void LayoutEngine::getGlyphs(LEGlyphID glyphs[], LEErrorCode &success) const in getGlyphs() 188 void LayoutEngine::getGlyphPositions(float positions[], LEErrorCode &success) const in getGlyphPositions() [all …]
|
D | LayoutEngine.h | 64 class U_LAYOUT_API LayoutEngine : public UObject { 140 LayoutEngine(const LEFontInstance *fontInstance, 156 LayoutEngine(); 341 virtual ~LayoutEngine(); 486 …static LayoutEngine *layoutEngineFactory(const LEFontInstance *fontInstance, le_int32 scriptCode, … 492 …static LayoutEngine *layoutEngineFactory(const LEFontInstance *fontInstance, le_int32 scriptCode, …
|
D | GXLayoutEngine.h | 29 class GXLayoutEngine : public LayoutEngine
|
D | ThaiLayoutEngine.h | 29 class ThaiLayoutEngine : public LayoutEngine
|
D | GXLayoutEngine2.h | 28 class GXLayoutEngine2 : public LayoutEngine
|
D | GXLayoutEngine.cpp | 20 : LayoutEngine(fontInstance, scriptCode, languageCode, 0, success), fMorphTable(morphTable) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | GXLayoutEngine2.cpp | 18 …: LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fMorphTable(morphTable) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | Makefile.in | 69 LayoutEngine.o \ 150 HEADERS= $(srcdir)/LayoutEngine.h $(srcdir)/LE*.h $(srcdir)/loengine.h
|
D | ThaiLayoutEngine.cpp | 23 : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | OpenTypeLayoutEngine.cpp | 130 …: LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureMask(minimalFe… in OpenTypeLayoutEngine() 220 LayoutEngine::reset(); in reset() 225 … : LayoutEngine(fontInstance, scriptCode, languageCode, typoFlags, success), fFeatureOrder(FALSE), in OpenTypeLayoutEngine()
|
D | OpenTypeLayoutEngine.h | 46 class U_LAYOUT_API OpenTypeLayoutEngine : public LayoutEngine
|
/external/chromium_org/third_party/icu/source/test/letest/ |
D | gendata.cpp | 200 …int32_t typoFlags = LayoutEngine::kTypoFlagKern | LayoutEngine::kTypoFlagLiga; // kerning + ligatu… in main() 206 LayoutEngine *engine = NULL; in main() 307 … engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, leStatus); in main()
|
D | letest.cpp | 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); in ParamTest() 221 LayoutEngine *engine = NULL; in FactoryTest() 225 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, -1, status); in FactoryTest() 243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); in AccessTest() 616 LayoutEngine *engine = NULL; in DataDrivenTest() 690 … engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success); in DataDrivenTest()
|
/external/icu/icu4c/source/test/letest/ |
D | gendata.cpp | 200 …int32_t typoFlags = LayoutEngine::kTypoFlagKern | LayoutEngine::kTypoFlagLiga; // kerning + ligatu… in main() 206 LayoutEngine *engine = NULL; in main() 307 … engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, leStatus); in main()
|
D | letest.cpp | 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); in ParamTest() 221 LayoutEngine *engine = NULL; in FactoryTest() 225 engine = LayoutEngine::layoutEngineFactory(font, scriptCode, -1, status); in FactoryTest() 243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); in AccessTest() 616 LayoutEngine *engine = NULL; in DataDrivenTest() 690 … engine = LayoutEngine::layoutEngineFactory(font, scriptCode, languageCode, typoFlags, success); in DataDrivenTest()
|
/external/icu/icu4c/source/test/perf/leperf/ |
D | leperf.cpp | 36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status); in iterate()
|
/external/chromium_org/third_party/icu/source/test/perf/leperf/ |
D | leperf.cpp | 36 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, params->script, -1, status); in iterate()
|
/external/chromium_org/third_party/icu/source/samples/layout/ |
D | Sample.txt | 1 The LayoutEngine does all the work necessary to display Unicode text written in languages with comp…
|
/external/icu/icu4c/source/samples/layout/ |
D | Sample.txt | 1 The LayoutEngine does all the work necessary to display Unicode text written in languages with comp…
|
/external/icu/icu4c/source/test/hdrtst/ |
D | cxxfiles.txt | 113 LayoutEngine.h
|
/external/chromium_org/third_party/icu/source/test/hdrtst/ |
D | cxxfiles.txt | 112 LayoutEngine.h
|
/external/icu/icu4c/source/samples/ |
D | readme.txt | 19 layout - demonstrates the ICU LayoutEngine
|
/external/chromium_org/third_party/icu/source/samples/ |
D | readme.txt | 19 layout - demonstrates the ICU LayoutEngine
|
/external/icu/icu4c/source/layoutex/layout/ |
D | ParagraphLayout.h | 559 LayoutEngine *engine;
|