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

  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIteratorICU.cpp 186 static inline TextContext textGetContext(const UText* text, int64_t nativeIndex, UBool forward)
188 if (!text->b || nativeIndex > text->b)
190 if (nativeIndex == text->b)
202 static void textLatin1MoveInPrimaryContext(UText* text, int64_t nativeIndex, int64_t nativeLength, UBool forward)
206 ASSERT(nativeIndex >= text->b && nativeIndex < nativeLength);
207 text->chunkNativeStart = nativeIndex;
208 text->chunkNativeLimit = nativeIndex + text->extraSize / sizeof(UChar);
212 ASSERT(nativeIndex > text->b && nativeIndex <= nativeLength)
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/
VideoFormats.cpp 461 size_t nativeIndex;
462 sinkSupported.getNativeResolution(&nativeType, &nativeIndex);
463 if (sinkSupported.isResolutionEnabled(nativeType, nativeIndex)) {
464 if (sourceSupported.isResolutionEnabled(nativeType, nativeIndex)) {
467 *chosenIndex = nativeIndex;
475 sourceSupported.getNativeResolution(&nativeType, &nativeIndex);
476 if (sourceSupported.isResolutionEnabled(nativeType, nativeIndex)) {
477 if (sinkSupported.isResolutionEnabled(nativeType, nativeIndex)) {
480 *chosenIndex = nativeIndex;
  /external/chromium_org/third_party/icu/source/common/unicode/
utext.h 443 * @param nativeIndex the native index of the character to be accessed. If the index points
450 utext_char32At(UText *ut, int64_t nativeIndex);
523 * @param nativeIndex Iteration index, in the native units of the text provider.
529 utext_next32From(UText *ut, int64_t nativeIndex);
542 * @param nativeIndex Iteration index in the native units of the text provider.
549 utext_previous32From(UText *ut, int64_t nativeIndex);
586 * @param nativeIndex the native unit index of the new iteration position.
590 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
    [all...]
  /external/icu/icu4c/source/common/unicode/
utext.h 443 * @param nativeIndex the native index of the character to be accessed. If the index points
450 utext_char32At(UText *ut, int64_t nativeIndex);
523 * @param nativeIndex Iteration index, in the native units of the text provider.
529 utext_next32From(UText *ut, int64_t nativeIndex);
542 * @param nativeIndex Iteration index in the native units of the text provider.
549 utext_previous32From(UText *ut, int64_t nativeIndex);
586 * @param nativeIndex the native unit index of the new iteration position.
590 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
    [all...]
  /external/icu/icu4c/source/test/intltest/
utxttest.cpp     [all...]
regextst.cpp     [all...]
  /external/chromium_org/third_party/icu/source/common/
utext.cpp 235 utext_char32At(UText *ut, int64_t nativeIndex) {
239 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) {
240 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart);
248 utext_setNativeIndex(ut, nativeIndex);
249 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) {
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
utxttest.cpp     [all...]
regextst.cpp     [all...]
  /external/icu/icu4c/source/common/
utext.cpp 238 utext_char32At(UText *ut, int64_t nativeIndex) {
242 if (nativeIndex>=ut->chunkNativeStart && nativeIndex < ut->chunkNativeStart + ut->nativeIndexingLimit) {
243 ut->chunkOffset = (int32_t)(nativeIndex - ut->chunkNativeStart);
251 utext_setNativeIndex(ut, nativeIndex);
252 if (nativeIndex>=ut->chunkNativeStart && ut->chunkOffset<ut->chunkLength) {
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
reapits.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
reapits.c     [all...]

Completed in 749 milliseconds