Lines Matching defs:word

55     const uint16_t word[] = {'t', 'a', 'b', 'l', 'e'};
57 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
69 const uint16_t word[] = {'l', 'l', MIDDLE_DOT, 'l', 'l'};
71 hyphenator->hyphenate(&result, word, NELEM(word), catalanLocale);
80 // Catalan l·l should not break if the word is too short.
83 const uint16_t word[] = {'l', MIDDLE_DOT, 'l'};
85 hyphenator->hyphenate(&result, word, NELEM(word), catalanLocale);
95 const uint16_t word[] = {'x', HYPHEN, 'y'};
97 hyphenator->hyphenate(&result, word, NELEM(word), polishLocale);
107 const uint16_t word[] = {GREEK_LOWER_ALPHA, HYPHEN, GREEK_LOWER_ALPHA};
109 hyphenator->hyphenate(&result, word, NELEM(word), polishLocale);
120 const uint16_t word[] = {'x', EN_DASH, 'y'};
122 hyphenator->hyphenate(&result, word, NELEM(word), polishLocale);
132 const uint16_t word[] = {'x', SOFT_HYPHEN, 'y'};
134 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
141 // Soft hyphens at the beginning of a word are not useful in linebreaking.
144 const uint16_t word[] = {SOFT_HYPHEN, 'y'};
146 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
155 const uint16_t word[] = {MALAYALAM_KA, SOFT_HYPHEN, MALAYALAM_KA};
157 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
167 const uint16_t word[] = {
170 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
182 const uint16_t word[] = {ARMENIAN_AYB, SOFT_HYPHEN, ARMENIAN_AYB};
184 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
195 const uint16_t word[] = {HEBREW_ALEF, SOFT_HYPHEN, HEBREW_ALEF};
197 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
208 const uint16_t word[] = {ARABIC_BEH, SOFT_HYPHEN, ARABIC_BEH};
210 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
221 const uint16_t word[] = {ARABIC_ALEF, SOFT_HYPHEN, ARABIC_BEH};
223 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
233 const uint16_t word[] = {ARABIC_BEH, ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY, ARABIC_BEH};
235 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
248 const uint16_t word[] = {ARABIC_BEH, ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY};
250 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
262 const uint16_t word[] = {ARABIC_ZWARAKAY, SOFT_HYPHEN, ARABIC_ZWARAKAY, ARABIC_BEH};
264 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
275 const uint16_t word[] = {UCAS_E, SOFT_HYPHEN, UCAS_E};
277 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
288 const uint16_t word[] = {'a', SOFT_HYPHEN, UCAS_E};
290 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
300 const uint16_t word[] = {'x', HYPHEN, 'y'};
302 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
312 const uint16_t word[] = {'x', HYPHEN_MINUS, 'y'};
314 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);
321 // If the word starts with a hard hyphen or hyphen-minus, it doesn't make sense to break
325 const uint16_t word[] = {HYPHEN_MINUS, 'y'};
327 hyphenator->hyphenate(&result, word, NELEM(word), usLocale);