/frameworks/minikin/tests/unittest/ |
D | HyphenatorTest.cpp | 54 Hyphenator* hyphenator = Hyphenator::loadBinary(readWholeFile(usHyph).data(), 2, 3); in TEST_F() 68 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 82 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 94 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 106 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 119 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 131 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 143 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 154 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); in TEST_F() 166 Hyphenator* hyphenator = Hyphenator::loadBinary(readWholeFile(malayalamHyph).data(), 2, 2); in TEST_F() [all …]
|
/frameworks/minikin/tests/perftests/ |
D | Hyphenator.cpp | 30 Hyphenator* hyphenator = Hyphenator::loadBinary( in BM_Hyphenator_short_word() 37 Hyphenator::loadBinary(nullptr, 2, 2); in BM_Hyphenator_short_word() 44 Hyphenator* hyphenator = Hyphenator::loadBinary( in BM_Hyphenator_long_word() 52 Hyphenator::loadBinary(nullptr, 2, 2); in BM_Hyphenator_long_word()
|
D | Android.mk | 28 Hyphenator.cpp \
|
/frameworks/base/core/java/android/text/ |
D | Hyphenator.java | 39 public class Hyphenator { class 53 final static HashMap<Locale, Hyphenator> sMap = new HashMap<Locale, Hyphenator>(); 59 final static Hyphenator sEmptyHyphenator = 60 new Hyphenator(StaticLayout.nLoadHyphenator( 70 private Hyphenator(long nativePtr, ByteBuffer b) { in Hyphenator() method in Hyphenator 79 public static Hyphenator get(@Nullable Locale locale) { in get() 81 Hyphenator result = sMap.get(locale); in get() 135 private static Hyphenator loadHyphenator(HyphenationData data) { in loadHyphenator() 149 return new Hyphenator(nativePtr, buf); in loadHyphenator() 257 Hyphenator h = loadHyphenator(data); in init()
|
D | StaticLayout.java | 360 Hyphenator.get(locale).getNativePtr());
|
/frameworks/minikin/app/ |
D | HyphTool.cpp | 12 using minikin::Hyphenator; 14 Hyphenator* loadHybFile(const char* fn, int minPrefix, int minSuffix) { in loadHybFile() 35 return Hyphenator::loadBinary(buf, minPrefix, minSuffix); in loadHybFile() 39 Hyphenator* hyph = loadHybFile("/tmp/en.hyb", 2, 3); // should also be configurable in main()
|
/frameworks/minikin/libs/minikin/ |
D | Hyphenator.cpp | 111 Hyphenator* Hyphenator::loadBinary(const uint8_t* patternData, size_t minPrefix, size_t minSuffix) { in loadBinary() 112 Hyphenator* result = new Hyphenator; in loadBinary() 119 void Hyphenator::hyphenate(vector<HyphenationType>* result, const uint16_t* word, size_t len, in hyphenate() 147 bool Hyphenator::isLineBreakingHyphen(uint32_t c) { in isLineBreakingHyphen() 283 void Hyphenator::hyphenateWithNoPatterns(HyphenationType* result, const uint16_t* word, size_t len, in hyphenateWithNoPatterns() 325 HyphenationType Hyphenator::alphabetLookup(uint16_t* alpha_codes, const uint16_t* word, in alphabetLookup() 384 void Hyphenator::hyphenateFromCodes(HyphenationType* result, const uint16_t* codes, size_t len, in hyphenateFromCodes()
|
D | Android.mk | 30 Hyphenator.cpp \ 100 LOCAL_SRC_FILES := Hyphenator.cpp
|
D | WordBreaker.cpp | 72 if (Hyphenator::isLineBreakingHyphen(codePoint) || codePoint == CHAR_SOFT_HYPHEN) { in isBreakValid()
|
D | LineBreaker.cpp | 64 void LineBreaker::setLocale(const icu::Locale& locale, Hyphenator* hyphenator) { in setLocale()
|
/frameworks/base/core/jni/ |
D | android_text_StaticLayout.cpp | 135 minikin::Hyphenator* hyphenator = minikin::Hyphenator::loadBinary( in nLoadHyphenator() 144 minikin::Hyphenator* hyphenator = reinterpret_cast<minikin::Hyphenator*>(nativeHyphenator); in nSetLocale()
|
/frameworks/minikin/include/minikin/ |
D | Hyphenator.h | 118 class Hyphenator { 139 static Hyphenator* loadBinary(const uint8_t* patternData, size_t minPrefix, size_t minSuffix);
|
D | LineBreaker.h | 116 void setLocale(const icu::Locale& locale, Hyphenator* hyphenator); 228 Hyphenator* mHyphenator;
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteInit.java | 46 import android.text.Hyphenator; 196 Hyphenator.init(); in preloadTextResources()
|
/frameworks/base/ |
D | preloaded-classes | 145 [Landroid.text.Hyphenator$HyphenationData; 2160 android.text.Hyphenator 2161 android.text.Hyphenator$HyphenationData
|
D | compiled-classes-phone | 3984 android.text.Hyphenator 3985 android.text.Hyphenator$HyphenationData
|
/frameworks/base/services/ |
D | profile-classes | 2489 Landroid/text/Hyphenator;
|