/external/icu4c/layout/ |
LayoutEngine.cpp | 196 le_int32 LayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 224 fakeGlyphStorage.allocateGlyphArray(count, rightToLeft, success); 243 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, reordered, fakeGlyphStorage); 254 if (rightToLeft) { 268 outCharCount = canonGSUBTable->process(fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success); 275 out = (rightToLeft? outCharCount - 1 : 0); 303 le_int32 LayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 316 le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyphStorage, success); 319 mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success) [all...] |
OpenTypeLayoutEngine.cpp | 276 le_int32 OpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 306 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); 313 glyphStorage.allocateGlyphArray(count, rightToLeft, success); 325 le_int32 OpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 337 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success); 345 count = fGSUBTable->process(glyphStorage, rightToLeft, fScriptTagV2, fLangSysTag, fGDEFTable, fSubstitutionFilter, 349 count = fGSUBTable->process(glyphStorage, rightToLeft, fScriptTag, fLangSysTag, fGDEFTable, fSubstitutionFilter, 358 le_int32 OpenTypeLayoutEngine::glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, 372 count = fGSUBTable->process(glyphStorage, rightToLeft, fScriptTagV2, fLangSysTag, fGDEFTable, fSubstitutionFilter [all...] |
GlyphPositionAdjustments.cpp | 84 void GlyphPositionAdjustments::applyCursiveAdjustments(LEGlyphStorage &glyphStorage, le_bool rightToLeft, const LEFontInstance *fontInstance) 100 if (rightToLeft) { 117 if (rightToLeft) {
|
loengine.cpp | 44 le_bool rightToLeft, 56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success);
|
ArabicLayoutEngine.cpp | 66 le_int32 ArabicOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 85 glyphStorage.allocateGlyphArray(count, rightToLeft, success); 93 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); 98 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage);
|
ArabicLayoutEngine.h | 104 * @param rightToLeft - <code>TRUE</code> if the characters are in a right to left directional run 116 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, 138 // static void adjustMarkGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
LookupProcessor.h | 37 le_bool rightToLeft, const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, const LEFontInstance *fontInstance, LEErrorCode& success) const;
|
loengine.h | 78 * @param rightToLeft - TRUE if the characers are in a right to left directional run 100 le_bool rightToLeft,
|
ArabicShaping.cpp | 124 le_bool rightToLeft, LEGlyphStorage &glyphStorage) 167 if (rightToLeft) {
|
GlyphIterator.h | 26 GlyphIterator(LEGlyphStorage &theGlyphStorage, GlyphPositionAdjustments *theGlyphPositionAdjustments, le_bool rightToLeft, le_uint16 theLookupFlags,
|
LEGlyphStorage.h | 225 * @param rightToLeft <code>true</code> if the original input text is right to left. 231 void allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success);
|
LookupProcessor.cpp | 50 le_bool rightToLeft, const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, 64 rightToLeft, 0, 0, glyphDefinitionTableHeader);
|
LEGlyphStorage.cpp | 65 void LEGlyphStorage::allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success) 99 if (rightToLeft) { 111 fInsertionList = new LEInsertionList(rightToLeft);
|
/device/google/accessory/arduino/USB_Host_Shield/ |
Max_LCD.h | 96 void rightToLeft();
|
Max_LCD.cpp | 223 void Max_LCD::rightToLeft(void) {
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
nptrans.cpp | 206 UBool leftToRight=FALSE, rightToLeft=FALSE; 246 rightToLeft = TRUE; 251 if( leftToRight == TRUE && rightToLeft == TRUE){ 258 if( rightToLeft == TRUE &&
|
/external/icu4c/test/intltest/ |
nptrans.cpp | 206 UBool leftToRight=FALSE, rightToLeft=FALSE; 246 rightToLeft = TRUE; 251 if( leftToRight == TRUE && rightToLeft == TRUE){ 258 if( rightToLeft == TRUE &&
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapText.java | 57 public BitmapText(BitmapFont font, boolean rightToLeft) {
58 this(font, rightToLeft, false);
61 public BitmapText(BitmapFont font, boolean rightToLeft, boolean arrayBased) {
71 letters = new Letters(font, block, rightToLeft);
|
LetterQuad.java | 38 private boolean rightToLeft;
46 * @param rightToLeft
48 protected LetterQuad(BitmapFont font, boolean rightToLeft) {
51 this.rightToLeft = rightToLeft;
64 this.rightToLeft = prev.rightToLeft;
288 float incrScale = rightToLeft ? -1f : 1f;
|
Letters.java | 24 Letters(BitmapFont font, StringBlock bound, boolean rightToLeft) {
28 head = new LetterQuad(font, rightToLeft);
29 tail = new LetterQuad(font, rightToLeft);
|
/external/chromium_org/third_party/angle/src/compiler/ |
intermediate.h | 580 TIntermTraverser(bool preVisit = true, bool inVisit = false, bool postVisit = false, bool rightToLeft = false) : 584 rightToLeft(rightToLeft), 625 const bool rightToLeft;
|
/external/chromium_org/third_party/icu/source/test/letest/ |
FontObject.h | 194 le_uint32 *charIndices, le_bool rightToLeft);
|
/external/harfbuzz/src/ |
harfbuzz-shaper.h | 242 HB_Bool (*convertStringToGlyphIndices)(HB_Font font, const HB_UChar16 *string, hb_uint32 length, HB_Glyph *glyphs, hb_uint32 *numGlyphs, HB_Bool rightToLeft);
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-shaper.h | 211 HB_Bool (*convertStringToGlyphIndices)(HB_Font font, const HB_UChar16 *string, hb_uint32 length, HB_Glyph *glyphs, hb_uint32 *numGlyphs, HB_Bool rightToLeft);
|
/external/icu4c/test/letest/ |
FontObject.h | 194 le_uint32 *charIndices, le_bool rightToLeft);
|