HomeSort by relevance Sort by last modified time
    Searched refs:charCount (Results 51 - 75 of 94) sorted by null

1 23 4

  /external/icu4c/layout/
LayoutEngine.h 306 * @param charCount - the number of input characers
316 static void adjustMarkGlyphs(const LEUnicode chars[], le_int32 charCount, le_bool reverse, LEGlyphStorage &glyphStorage, LEGlyphFilter *markFilter, LEErrorCode &success);
ThaiShaping.h 70 static le_int32 compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet,
IndicReordering.cpp 597 le_int32 IndicReordering::findSyllable(const IndicClassTable *classTable, const LEUnicode *chars, le_int32 prev, le_int32 charCount)
603 while (cursor < charCount) {
625 le_int32 IndicReordering::reorder(const LEUnicode *chars, le_int32 charCount, le_int32 scriptCode,
637 mpreFixups = new MPreFixups(charCount);
648 while (prev < charCount) {
649 le_int32 syllable = findSyllable(classTable, chars, prev, charCount);
    [all...]
ThaiShaping.cpp 265 le_int32 ThaiShaping::compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet,
275 for (inputIndex = 0; inputIndex < charCount; inputIndex += 1) {
LayoutEngine.cpp 417 void LayoutEngine::adjustMarkGlyphs(const LEUnicode chars[], le_int32 charCount, le_bool reverse, LEGlyphStorage &glyphStorage, LEGlyphFilter *markFilter, LEErrorCode &success)
441 for (p = 0; p < charCount; p += 1, c += direction) {
  /packages/inputmethods/LatinIME/native/jni/src/
binary_format.h 425 int charCount = maxDepth;
426 while (NOT_A_CHARACTER != nextChar && --charCount > 0) {
488 int charCount = maxDepth;
489 while (-1 != nextChar && --charCount > 0) {
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 112 static const UniChar* provideStringAndAttributes(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void* refCon)
118 *charCount = info->length - stringIndex;
  /libcore/luni/src/main/java/java/nio/
HeapByteBuffer.java 69 final void get(char[] dst, int dstOffset, int charCount) {
70 int byteCount = checkGetBounds(SizeOf.CHAR, dst.length, dstOffset, charCount);
ReadWriteHeapByteBuffer.java 116 final void put(char[] src, int srcOffset, int charCount) {
117 int byteCount = checkPutBounds(SizeOf.CHAR, src.length, srcOffset, charCount);
  /libcore/luni/src/main/native/
libcore_icu_NativeBreakIterator.cpp 55 size_t charCount = env->GetStringLength(mString);
57 ubrk_setText(mIt, mChars, charCount, &status);
org_apache_harmony_xml_ExpatParser.cpp     [all...]
  /external/icu4c/test/perf/ubrkperf/
ubrkperfold.cpp 689 int32_t charCount = 0;
716 text[charCount++] = c;
717 if(charCount == bufSize) {
729 printf("file \"%s\", %d charCount code units.\n", opt_fName, charCount);
732 textSize = charCount;
  /external/icu4c/test/letest/
letest.cpp 607 int32_t charCount = 0;
653 charCount = text.length();
684 if (glyphCount < charCount || indexCount != glyphCount || positionCount < glyphCount * 2 + 2) {
685 log_err("Test %s: inconsistent input data: charCount = %d, glyphCount = %d, indexCount = %d, positionCount = %d\n",
686 id, charCount, glyphCount, indexCount, positionCount);
697 actual.glyphCount = engine->layoutChars(text.getBuffer(), 0, charCount, charCount, getRTL(text), 0, 0, success);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Canvas_Delegate.java     [all...]
Paint_Delegate.java     [all...]
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 127 CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
129 CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
WebCoreSystemInterface.h 202 extern CTLineRef (*wkCreateCTLineWithUniCharProvider)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
204 extern CTTypesetterRef (*wkCreateCTTypesetterWithUniCharProviderAndOptions)(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
  /libcore/luni/src/main/java/java/lang/
String.java 425 * if {@code charCount < 0 || offset < 0 || offset + charCount > data.length}
427 public String(char[] data, int offset, int charCount) {
428 if ((offset | charCount) < 0 || charCount > data.length - offset) {
429 throw failedBoundsCheck(data.length, offset, charCount);
432 this.value = new char[charCount];
433 this.count = charCount;
441 String(int offset, int charCount, char[] chars) {
444 this.count = charCount;
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Memory.java 159 public static native void peekCharArray(int address, char[] dst, int dstOffset, int charCount, boolean swap);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 196 for (end = startIndex + 1; end < len; end += Character.charCount(cp)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java     [all...]
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 174 CTLineRef WKCreateCTLineWithUniCharProvider(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*);
176 CTTypesetterRef WKCreateCTTypesetterWithUniCharProviderAndOptions(const UniChar* (*provide)(CFIndex stringIndex, CFIndex* charCount, CFDictionaryRef* attributes, void*), void (*dispose)(const UniChar* chars, void*), void*, CFDictionaryRef options);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 280 for (int srci = Character.charCount(codePoint);
281 srci < length; srci += Character.charCount(codePoint), ++dsti) {
  /external/icu4c/layoutex/
ParagraphLayout.cpp 279 le_int32 charCount) {
282 for (ch = 0; ch <= charCount; ch += 1) {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 85 assertEquals(1, Character.charCount(c));
89 assertEquals(2, Character.charCount(c));
93 assertEquals(2, Character.charCount(Integer.MAX_VALUE));
    [all...]

Completed in 697 milliseconds

1 23 4