HomeSort by relevance Sort by last modified time
    Searched refs:Hyphenator (Results 1 - 18 of 18) sorted by null

  /frameworks/minikin/tests/perftests/
Hyphenator.cpp 18 #include <minikin/Hyphenator.h>
30 Hyphenator* hyphenator = Hyphenator::loadBinary( local
35 hyphenator->hyphenate(&result, word.data(), word.size(), usLocale);
37 Hyphenator::loadBinary(nullptr, 2, 2);
44 Hyphenator* hyphenator = Hyphenator::loadBinary( local
50 hyphenator->hyphenate(&result, word.data(), word.size(), usLocale)
    [all...]
Android.mk 28 Hyphenator.cpp \
  /frameworks/minikin/tests/unittest/
HyphenatorTest.cpp 20 #include <minikin/Hyphenator.h>
54 Hyphenator* hyphenator = Hyphenator::loadBinary(readWholeFile(usHyph).data(), 2, 3); local
57 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
68 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
71 hyphenator->hyphenate(&result, word, NELEM(word), catalanLocale);
82 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2) local
94 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
106 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
119 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
131 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
143 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
154 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
166 Hyphenator* hyphenator = Hyphenator::loadBinary(readWholeFile(malayalamHyph).data(), 2, 2); local
181 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
194 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
207 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
220 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
232 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
247 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
261 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
274 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
287 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
299 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
311 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
324 Hyphenator* hyphenator = Hyphenator::loadBinary(nullptr, 2, 2); local
    [all...]
  /frameworks/minikin/app/
HyphTool.cpp 9 #include <minikin/Hyphenator.h>
12 using minikin::Hyphenator;
14 Hyphenator* loadHybFile(const char* fn, int minPrefix, int minSuffix) {
35 return Hyphenator::loadBinary(buf, minPrefix, minSuffix);
39 Hyphenator* hyph = loadHybFile("/tmp/en.hyb", 2, 3); // should also be configurable
  /frameworks/base/core/java/android/text/
Hyphenator.java 34 * Hyphenator is a wrapper class for a native implementation of automatic hyphenation,
39 public class Hyphenator {
43 private static String TAG = "Hyphenator";
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) {
79 public static Hyphenator get(@Nullable Locale locale) {
81 Hyphenator result = sMap.get(locale)
    [all...]
StaticLayout.java 360 Hyphenator.get(locale).getNativePtr());
    [all...]
  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 30 #include "minikin/Hyphenator.h"
111 Hyphenator* Hyphenator::loadBinary(const uint8_t* patternData, size_t minPrefix, size_t minSuffix) {
112 Hyphenator* result = new Hyphenator;
119 void Hyphenator::hyphenate(vector<HyphenationType>* result, const uint16_t* word, size_t len,
147 bool Hyphenator::isLineBreakingHyphen(uint32_t c) {
283 void Hyphenator::hyphenateWithNoPatterns(HyphenationType* result, const uint16_t* word, size_t len,
325 HyphenationType Hyphenator::alphabetLookup(uint16_t* alpha_codes, const uint16_t* word,
384 void Hyphenator::hyphenateFromCodes(HyphenationType* result, const uint16_t* codes, size_t len
    [all...]
Android.mk 30 Hyphenator.cpp \
100 LOCAL_SRC_FILES := Hyphenator.cpp
WordBreaker.cpp 22 #include <minikin/Hyphenator.h>
72 if (Hyphenator::isLineBreakingHyphen(codePoint) || codePoint == CHAR_SOFT_HYPHEN) {
LineBreaker.cpp 64 void LineBreaker::setLocale(const icu::Locale& locale, Hyphenator* hyphenator) {
67 mHyphenator = hyphenator;
  /frameworks/minikin/include/minikin/
Hyphenator.h 118 class Hyphenator {
136 // at least as long as the Hyphenator object.
138 // Note: nullptr is valid input, in which case the hyphenator only processes soft hyphens.
139 static Hyphenator* loadBinary(const uint8_t* patternData, size_t minPrefix, size_t minSuffix);
LineBreaker.h 29 #include "minikin/Hyphenator.h"
115 // Note: caller is responsible for managing lifetime of hyphenator
116 void setLocale(const icu::Locale& locale, Hyphenator* hyphenator);
228 Hyphenator* mHyphenator;
MinikinFont.h 24 #include <minikin/Hyphenator.h>
  /frameworks/base/core/jni/
android_text_StaticLayout.cpp 135 minikin::Hyphenator* hyphenator = minikin::Hyphenator::loadBinary( local
137 return reinterpret_cast<jlong>(hyphenator);
144 minikin::Hyphenator* hyphenator = reinterpret_cast<minikin::Hyphenator*>(nativeHyphenator); local
147 b->setLocale(icuLocale.locale(), hyphenator);
  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 46 import android.text.Hyphenator;
196 Hyphenator.init();
    [all...]
  /frameworks/base/
preloaded-classes 145 [Landroid.text.Hyphenator$HyphenationData;
    [all...]
compiled-classes-phone     [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 

Completed in 262 milliseconds