HomeSort by relevance Sort by last modified time
    Searched full:rightindex (Results 1 - 25 of 25) sorted by null

  /external/icu/icu4c/source/i18n/
collationfastlatin.cpp 123 int32_t leftIndex = 0, rightIndex = 0;
164 if(rightIndex == rightLength) {
168 UChar32 c = right[rightIndex++];
188 rightPair = nextPair(table, c, rightPair, right, NULL, rightIndex, rightLength);
216 leftIndex = rightIndex = 0;
245 if(rightIndex == rightLength) {
249 UChar32 c = right[rightIndex++];
264 rightPair = nextPair(table, c, rightPair, right, NULL, rightIndex, rightLength);
292 leftIndex = rightIndex = 0;
309 if(rightIndex == rightLength)
    [all...]
collationcompare.cpp 115 int32_t rightIndex = 0;
124 rightSecondary = ((uint32_t)right.getCE(rightIndex++)) >> 16;
155 int32_t rightIndex = rightLimit;
163 while(rightSecondary == 0 && rightIndex > rightStart) {
164 rightSecondary = ((uint32_t)right.getCE(--rightIndex)) >> 16;
188 int32_t rightIndex = 0;
206 ce = right.getCE(rightIndex++);
232 rightCase = (uint32_t)right.getCE(rightIndex++);
255 int32_t rightIndex = 0;
269 rightLower32 = (uint32_t)right.getCE(rightIndex++)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_collectionsmodule.c 27 * d.rightblock[rightindex]; note that, unlike as for Python slice
35 * The indices, d.leftindex and d.rightindex are always in the range
38 * (d.leftindex + d.len - 1) % BLOCKLEN == d.rightindex.
41 * d.leftindex == CENTER+1; and d.rightindex == CENTER.
45 * d.leftindex + d.len - 1 == d.rightindex.
47 * However, when d.leftblock != d.rightblock, d.leftindex and d.rightindex
103 Py_ssize_t rightindex; /* in range(BLOCKLEN) */ member in struct:__anon5437
149 deque->rightindex = CENTER;
168 item = deque->rightblock->data[deque->rightindex];
169 deque->rightindex--;
524 Py_ssize_t rightindex = deque->rightindex; local
    [all...]
  /external/python/cpython2/Modules/
_collectionsmodule.c 25 * d.rightblock[rightindex]; note that, unlike as for Python slice
33 * The indices, d.leftindex and d.rightindex are always in the range
36 * (d.leftindex + d.len - 1) % BLOCKLEN == d.rightindex.
39 * d.leftindex == CENTER+1; and d.rightindex == CENTER.
43 * d.leftindex + d.len - 1 == d.rightindex.
45 * However, when d.leftblock != d.rightblock, d.leftindex and d.rightindex
101 Py_ssize_t rightindex; /* in range(BLOCKLEN) */ member in struct:__anon30140
147 deque->rightindex = CENTER;
166 item = deque->rightblock->data[deque->rightindex];
167 deque->rightindex--
522 Py_ssize_t rightindex = deque->rightindex; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationCompare.java 105 int rightIndex = 0;
114 rightSecondary = ((int) right.getCE(rightIndex++)) >>> 16;
145 int rightIndex = rightLimit;
153 while (rightSecondary == 0 && rightIndex > rightStart) {
154 rightSecondary = ((int) right.getCE(--rightIndex)) >>> 16;
182 int rightIndex = 0;
200 ce = right.getCE(rightIndex++);
226 rightCase = (int) right.getCE(rightIndex++);
253 int rightIndex = 0;
266 rightLower32 = (int) right.getCE(rightIndex++)
    [all...]
CollationFastLatin.java 300 int leftIndex = startIndex, rightIndex = startIndex;
346 if(rightIndex == right.length()) {
350 int c = right.charAt(rightIndex++);
370 long pairAndInc = nextPair(table, c, rightPair, right, rightIndex);
372 ++rightIndex;
403 leftIndex = rightIndex = startIndex;
436 if(rightIndex == right.length()) {
440 int c = right.charAt(rightIndex++);
455 long pairAndInc = nextPair(table, c, rightPair, right, rightIndex);
457 ++rightIndex;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationCompare.java 101 int rightIndex = 0;
110 rightSecondary = ((int) right.getCE(rightIndex++)) >>> 16;
141 int rightIndex = rightLimit;
149 while (rightSecondary == 0 && rightIndex > rightStart) {
150 rightSecondary = ((int) right.getCE(--rightIndex)) >>> 16;
178 int rightIndex = 0;
196 ce = right.getCE(rightIndex++);
222 rightCase = (int) right.getCE(rightIndex++);
249 int rightIndex = 0;
262 rightLower32 = (int) right.getCE(rightIndex++)
    [all...]
CollationFastLatin.java 296 int leftIndex = startIndex, rightIndex = startIndex;
342 if(rightIndex == right.length()) {
346 int c = right.charAt(rightIndex++);
366 long pairAndInc = nextPair(table, c, rightPair, right, rightIndex);
368 ++rightIndex;
399 leftIndex = rightIndex = startIndex;
432 if(rightIndex == right.length()) {
436 int c = right.charAt(rightIndex++);
451 long pairAndInc = nextPair(table, c, rightPair, right, rightIndex);
453 ++rightIndex;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_collectionsmodule.c 23 * d.rightblock[rightindex]; note that, unlike as for Python slice
31 * The indices, d.leftindex and d.rightindex are always in the range
34 * (d.leftindex + d.len - 1) % BLOCKLEN == d.rightindex.
37 * d.leftindex == CENTER+1; and d.rightindex == CENTER.
41 * d.leftindex + d.len - 1 == d.rightindex.
43 * However, when d.leftblock != d.rightblock, d.leftindex and d.rightindex
104 Py_ssize_t rightindex; /* in range(BLOCKLEN) */ member in struct:__anon5743
150 deque->rightindex = CENTER;
169 item = deque->rightblock->data[deque->rightindex];
170 deque->rightindex--;
471 Py_ssize_t rightindex = deque->rightindex; local
    [all...]
  /external/python/cpython2/Lib/idlelib/
ParenMatch.py 142 rightindex = indices[1]+"+1c"
144 rightindex = indices[1]
145 self.text.tag_add("paren", indices[0], rightindex)
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.h 104 const int rightIndex = index + 1;
105 if (rightIndex < mSampledInputSize
106 && existsCodePointInProximityAt(rightIndex, currentCodePoint)) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ParenMatch.py 141 rightindex = indices[1]+"+1c"
143 rightindex = indices[1]
144 self.text.tag_add("paren", indices[0], rightindex)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ParenMatch.py 141 rightindex = indices[1]+"+1c"
143 rightindex = indices[1]
144 self.text.tag_add("paren", indices[0], rightindex)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 141 rightindex = indices[1]+"+1c"
143 rightindex = indices[1]
144 self.text.tag_add("paren", indices[0], rightindex)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ParenMatch.py 141 rightindex = indices[1]+"+1c"
143 rightindex = indices[1]
144 self.text.tag_add("paren", indices[0], rightindex)
  /external/v8/src/js/
typedarray.js 370 for(var rightIndex = sourceLength - 1;
371 rightIndex >= leftIndex && targetPtr >= sourcePtr;
372 rightIndex--) {
373 target[offset + rightIndex] = source[rightIndex];
377 return rightIndex;
379 var rightIndex = CopyRightPart();
381 var temp = new GlobalArray(rightIndex + 1 - leftIndex);
382 for (var i = leftIndex; i <= rightIndex; i++) {
385 for (i = leftIndex; i <= rightIndex; i++)
    [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalAppWidgetCityViewsFactory.java 110 final int rightIndex = leftIndex + 1;
114 final City right = rightIndex < mCities.size() ? mCities.get(rightIndex) : null;
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 792 Optional<NonLoc> RightIndex = RightIndexVal.getAs<NonLoc>();
793 if (!RightIndex)
795 RightIndexVal = evalCastFromNonLoc(*RightIndex, ArrayIndexTy);
796 RightIndex = RightIndexVal.getAs<NonLoc>();
797 if (!RightIndex)
802 return evalBinOpNN(state, op, *LeftIndex, *RightIndex, resultTy);
    [all...]
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp     [all...]
  /external/llvm/lib/LTO/
ThinLTOCodeGenerator.cpp 766 [&](int LeftIndex, int RightIndex) {
768 auto RSize = Modules[RightIndex].getBufferSize();
  /libcore/ojluni/src/main/java/java/lang/
String.java     [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsService.java     [all...]
  /external/swiftshader/src/OpenGL/compiler/
OutputASM.cpp     [all...]
  /frameworks/base/core/java/android/net/
NetworkStats.java     [all...]
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/
antlr4-runtime-4.5.jar 

Completed in 1159 milliseconds