Home
last modified time | relevance | path

Searched refs:maxRunCount (Results 1 - 14 of 14) sorted by relevance

/third_party/skia/modules/skunicode/src/
H A DSkUnicode_icu_bidi.h23 static UBiDi* bidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode* pErrorCode);
H A DSkUnicode_icu.cpp63 UBiDi* SkUnicode_IcuBidi::bidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode* pErrorCode) { in bidi_openSized() argument
64 return sk_ubidi_openSized(maxLength, maxRunCount, pErrorCode); in bidi_openSized()
H A DSkUnicode_client.cpp52 UBiDi* SkUnicode_IcuBidi::bidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode* pErrorCode) { in bidi_openSized() argument
53 return ubidi_openSized_skia(maxLength, maxRunCount, pErrorCode); in bidi_openSized()
/third_party/icu/icu4c/source/layoutex/
H A DParagraphLayout.cpp58 le_int32 maxRunCount = 0; in StyleRuns() local
63 maxRunCount += styleRunArrays[i]->getCount(); in StyleRuns()
66 maxRunCount -= styleCount - 1; in StyleRuns()
68 fRunLimits = LE_NEW_ARRAY(le_int32, maxRunCount); in StyleRuns()
69 fStyleIndices = LE_NEW_ARRAY(le_int32, maxRunCount * styleCount); in StyleRuns()
/third_party/icu/icu4c/source/common/unicode/
H A Dubidi.h516 * <code>maxRunCount</code> cannot be reasonably predetermined and should not
518 * wasting memory, then <code>maxRunCount</code> could be set to 0 here
527 * @param maxRunCount is the maximum anticipated number of same-level runs
541 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
/third_party/node/deps/icu-small/source/common/unicode/
H A Dubidi.h516 * <code>maxRunCount</code> cannot be reasonably predetermined and should not
518 * wasting memory, then <code>maxRunCount</code> could be set to 0 here
527 * @param maxRunCount is the maximum anticipated number of same-level runs
541 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dubidi.h515 * <code>maxRunCount</code> cannot be reasonably predetermined and should not
517 * wasting memory, then <code>maxRunCount</code> could be set to 0 here
526 * @param maxRunCount is the maximum anticipated number of same-level runs
540 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidi.java1264 * <code>maxRunCount</code> cannot be reasonably predetermined and should not
1266 * wasting memory, then <code>maxRunCount</code> could be set to 0 here
1275 * @param maxRunCount is the maximum anticipated number of same-level runs
1283 * @throws IllegalArgumentException if maxLength or maxRunCount is less than 0
1286 public Bidi(int maxLength, int maxRunCount) in Bidi() argument
1289 if (maxLength < 0 || maxRunCount < 0) { in Bidi()
1321 if (maxRunCount > 0) { in Bidi()
1322 // if maxRunCount == 1, use simpleRuns[] in Bidi()
1323 if (maxRunCount > 1) { in Bidi()
1324 getInitialRunsMemory(maxRunCount); in Bidi()
[all...]
/third_party/icu/icu4c/source/common/
H A Dubidi.cpp134 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) { in ubidi_openSized() argument
140 } else if(maxLength<0 || maxRunCount<0) { in ubidi_openSized()
166 if(maxRunCount>0) { in ubidi_openSized()
167 if(maxRunCount==1) { in ubidi_openSized()
170 } else if(!getInitialRunsMemory(pBiDi, maxRunCount)) { in ubidi_openSized()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBidi.java1238 * <code>maxRunCount</code> cannot be reasonably predetermined and should not
1240 * wasting memory, then <code>maxRunCount</code> could be set to 0 here
1249 * @param maxRunCount is the maximum anticipated number of same-level runs
1257 * @throws IllegalArgumentException if maxLength or maxRunCount is less than 0
1259 public Bidi(int maxLength, int maxRunCount) in Bidi() argument
1262 if (maxLength < 0 || maxRunCount < 0) { in Bidi()
1294 if (maxRunCount > 0) { in Bidi()
1295 // if maxRunCount == 1, use simpleRuns[] in Bidi()
1296 if (maxRunCount > 1) { in Bidi()
1297 getInitialRunsMemory(maxRunCount); in Bidi()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dubidi.cpp134 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) { in ubidi_openSized() argument
140 } else if(maxLength<0 || maxRunCount<0) { in ubidi_openSized()
166 if(maxRunCount>0) { in ubidi_openSized()
167 if(maxRunCount==1) { in ubidi_openSized()
170 } else if(!getInitialRunsMemory(pBiDi, maxRunCount)) { in ubidi_openSized()
/third_party/skia/third_party/externals/icu/source/common/
H A Dubidi.cpp134 ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) { in ubidi_openSized() argument
140 } else if(maxLength<0 || maxRunCount<0) { in ubidi_openSized()
166 if(maxRunCount>0) { in ubidi_openSized()
167 if(maxRunCount==1) { in ubidi_openSized()
170 } else if(!getInitialRunsMemory(pBiDi, maxRunCount)) { in ubidi_openSized()
/third_party/icu/ohos_icu4c/src/
H A Dicu_addon.cpp847 UBiDi *ubidi_openSized(int32_t maxLength, int32_t maxRunCount, UErrorCode *pErrorCode) in ubidi_openSized() argument
849 return U_ICU_ENTRY_POINT_RENAME(ubidi_openSized)(maxLength, maxRunCount, pErrorCode); in ubidi_openSized()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 39 milliseconds