/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CjkBreakEngine.java | 101 int numChars = 0; in divideUpDictionaryRange() local 109 numChars++; in divideUpDictionaryRange() 110 charPositions[numChars] = index; in divideUpDictionaryRange() 121 numChars++; in divideUpDictionaryRange() 123 charPositions[numChars] = index; in divideUpDictionaryRange() 129 int[] bestSnlp = new int[numChars + 1]; in divideUpDictionaryRange() 131 for (int i = 1; i <= numChars; i++) { in divideUpDictionaryRange() 135 int[] prev = new int[numChars + 1]; in divideUpDictionaryRange() 136 for (int i = 0; i <= numChars; i++) { in divideUpDictionaryRange() 141 int values[] = new int[numChars]; in divideUpDictionaryRange() [all …]
|
D | CharsDictionaryMatcher.java | 30 int numChars = 1; in matches() local 38 lengths[count] = numChars; in matches() 49 if (numChars >= maxLength) { in matches() 56 ++numChars; in matches() 60 return numChars; in matches()
|
D | BytesDictionaryMatcher.java | 51 int numChars = 1; in matches() local 59 lengths[count] = numChars; in matches() 69 if (numChars >= maxLength) { in matches() 77 ++numChars; in matches() 81 return numChars; in matches()
|
/external/lzma/CPP/Common/ |
D | MyString.cpp | 29 int numChars = ::WideCharToMultiByte(CP_ACP, 0, &c, 1, s, kBufferSize, 0, 0); in MyCharUpper() local 30 if (numChars == 0 || numChars > kBufferSize) in MyCharUpper() 32 s[numChars] = 0; in MyCharUpper() 34 ::MultiByteToWideChar(CP_ACP, 0, s, numChars, &c, 1); in MyCharUpper() 47 int numChars = ::WideCharToMultiByte(CP_ACP, 0, &c, 1, s, kBufferSize, 0, 0); in MyCharLower() local 48 if (numChars == 0 || numChars > kBufferSize) in MyCharLower() 50 s[numChars] = 0; in MyCharLower() 52 ::MultiByteToWideChar(CP_ACP, 0, s, numChars, &c, 1); in MyCharLower()
|
D | StringConvert.cpp | 17 int numChars = MultiByteToWideChar(codePage, 0, srcString, in MultiByteToUnicodeString() local 20 if (numChars == 0) in MultiByteToUnicodeString() 22 resultString.ReleaseBuffer(numChars); in MultiByteToUnicodeString() 35 int numChars = WideCharToMultiByte(codePage, 0, s, s.Length(), in UnicodeStringToMultiByte() local 39 if (numChars == 0) in UnicodeStringToMultiByte() 41 dest.ReleaseBuffer(numChars); in UnicodeStringToMultiByte()
|
/external/icu/icu4c/source/test/perf/dicttrieperf/ |
D | dicttrieperf.cpp | 358 int32_t numChars=1; in ucharsTrieMatches() local 364 lengths[count++]=numChars; // CompactTrieDictionary just counts chars too. in ucharsTrieMatches() 372 if(numChars>=textLimit) { in ucharsTrieMatches() 383 ++numChars; in ucharsTrieMatches() 399 return numChars; in ucharsTrieMatches() 552 int32_t numChars=1; in bytesTrieMatches() local 558 lengths[count++]=numChars; // CompactTrieDictionary just counts chars too. in bytesTrieMatches() 566 if(numChars>=textLimit) { in bytesTrieMatches() 573 ++numChars; in bytesTrieMatches() 576 return numChars; in bytesTrieMatches()
|
/external/lzma/CPP/Windows/ |
D | Registry.cpp | 326 UInt32 numChars = 0; in SetValue_Strings() local 329 numChars += strings[i].Length() + 1; in SetValue_Strings() 331 buffer.SetCapacity(numChars); in SetValue_Strings() 339 return SetValue(valueName, buffer, numChars * sizeof(wchar_t)); in SetValue_Strings() 353 int numChars = dataSize / sizeof(wchar_t); in GetValue_Strings() local 355 for (int i = 0; i < numChars; i++) in GetValue_Strings()
|
/external/skia/gm/ |
D | verttext.cpp | 73 int numChars = paint.getTextWidths(gText, gLen, adv, NULL); in drawBaseline() local 74 for (int i = 0; i < numChars; ++i) { in drawBaseline()
|
/external/lzma/C/Util/7z/ |
D | 7zMain.c | 113 int numChars = WideCharToMultiByte(fileMode ? in Utf16_To_Char() local 122 if (numChars == 0 || numChars >= size) in Utf16_To_Char() 124 buf->data[numChars] = 0; in Utf16_To_Char()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCharacterProperty.java | 1237 int numChars = (reservedOffset7 - scriptExtensionsOffset) * 2; in UCharacterProperty() local 1238 if(numChars > 0) { in UCharacterProperty() 1239 m_scriptExtensions_ = new char[numChars]; in UCharacterProperty() 1240 for(int i = 0; i < numChars; ++i) { in UCharacterProperty()
|
D | Normalizer2Impl.java | 456 int numChars=(nextOffset-offset)/2; in load() local 458 if(numChars!=0) { in load() 459 chars=new char[numChars]; in load() 460 for(int i=0; i<numChars; ++i) { in load()
|
/external/mesa3d/src/mesa/drivers/windows/gdi/ |
D | wgl.c | 373 DWORD numChars, DWORD listBase) in wglUseFontBitmaps_FX() argument 401 for(i = 0; i < (int)numChars; i++) { in wglUseFontBitmaps_FX()
|
/external/clang/test/Analysis/Inputs/ |
D | system-header-simulator-objc.h | 127 …hExternalCharactersNoCopy(CFAllocatorRef alloc, UniChar *chars, CFIndex numChars, CFIndex capacity…
|
/external/lzma/CPP/7zip/UI/Common/ |
D | ArchiveCommandLine.cpp | 346 UInt32 numChars = dataSize / sizeof(wchar_t); in ParseMapWithPaths() local 348 for (UInt32 i = 1; i < numChars; i++) in ParseMapWithPaths()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 1703 size_t numChars = sizeof(ourBaseExcpClassChars) / sizeof(char); in createStandardUtilityFunctions() local 1706 ourBaseExceptionClass = genClass(ourBaseExcpClassChars, numChars); in createStandardUtilityFunctions()
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 3734 unsigned numChars = 0; in print_usrs_file() local 3749 if (numChars == 0) in print_usrs_file() 3752 line[numChars] = '\0'; in print_usrs_file() 3753 numChars = 0; in print_usrs_file() 3768 line[numChars++] = c; in print_usrs_file()
|
/external/clang/lib/CodeGen/ |
D | CodeGenModule.h | 657 llvm::ConstantInt *getSize(CharUnits numChars);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.debug.core_3.6.0.v20100519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.apache.jasper_5.5.17.v201004212143.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
D | jdimodel.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |