/external/chromium_org/third_party/icu/source/i18n/ |
strrepl.cpp | 108 int32_t newStart = 0; 120 newStart = cursorPos; 160 newStart = destLimit - destStart; // relative to start 190 newStart = destLimit - destStart; // relative to start 206 // is within the output string, then use newStart, which has 209 newStart = start; 212 while (n < 0 && newStart > 0) { 213 newStart -= UTF_CHAR_LENGTH(text.char32At(newStart-1)); 216 newStart += n [all...] |
buddhcal.cpp | 196 UDate newStart = calendar.getTime(status); 201 fgSystemDefaultCenturyStart = newStart;
|
taiwncal.cpp | 203 UDate newStart = calendar.getTime(status); 209 fgSystemDefaultCenturyStart = newStart;
|
/external/icu4c/i18n/ |
strrepl.cpp | 107 int32_t newStart = 0; 119 newStart = cursorPos; 159 newStart = destLimit - destStart; // relative to start 189 newStart = destLimit - destStart; // relative to start 205 // is within the output string, then use newStart, which has 208 newStart = start; 211 while (n < 0 && newStart > 0) { 212 newStart -= U16_LENGTH(text.char32At(newStart-1)); 215 newStart += n [all...] |
buddhcal.cpp | 196 UDate newStart = calendar.getTime(status); 201 fgSystemDefaultCenturyStart = newStart;
|
taiwncal.cpp | 203 UDate newStart = calendar.getTime(status); 209 fgSystemDefaultCenturyStart = newStart;
|
smpdtfmt.cpp | [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
CharSequences.java | 73 public CharSequence subSequence(int newStart, int newEnd) { 74 newStart -= start; 76 validate(newStart, newEnd, length()); 77 return forAsciiBytes(bytes, newStart, newEnd);
|
/external/chromium_org/third_party/bintrees/bintrees/ |
treeslice.py | 44 def newstart(): function in function:TreeSlice._subslice 60 return TreeSlice(self._tree, newstart(), newstop())
|
/external/chromium_org/third_party/icu/source/common/ |
utrie2_builder.c | 986 int32_t start, newStart, movedStart; 991 newStart=UTRIE2_DATA_START_OFFSET; 992 for(start=0, i=0; start<newStart; start+=UTRIE2_DATA_BLOCK_LENGTH, ++i) { 1002 for(start=newStart; start<trie->dataLength;) { 1005 * newStart: index where the current block is to be moved 1018 /* leave newStart with the previous block! */ 1023 if( (movedStart=findSameDataBlock(trie->data, newStart, start, blockLength)) 1035 /* leave newStart with the previous block! * [all...] |
utrie.c | 589 int32_t i, start, newStart, overlapStart; 616 newStart=UTRIE_DATA_BLOCK_LENGTH; 617 for(start=newStart; start<trie->dataLength;) { 620 * newStart: index where the current block is to be moved 629 /* leave newStart with the previous block! */ 635 (i=_findSameDataBlock(trie->data, newStart, start, 645 /* leave newStart with the previous block! */ 653 i>0 && !equal_uint32(trie->data+(newStart-i), trie->data+start, i); 661 trie->map[start>>UTRIE_SHIFT]=newStart-i; 666 trie->data[newStart++]=trie->data[start++] [all...] |
/external/icu4c/common/ |
utrie2_builder.cpp | 986 int32_t start, newStart, movedStart; 991 newStart=UTRIE2_DATA_START_OFFSET; 992 for(start=0, i=0; start<newStart; start+=UTRIE2_DATA_BLOCK_LENGTH, ++i) { 1002 for(start=newStart; start<trie->dataLength;) { 1005 * newStart: index where the current block is to be moved 1018 /* leave newStart with the previous block! */ 1023 if( (movedStart=findSameDataBlock(trie->data, newStart, start, blockLength)) 1035 /* leave newStart with the previous block! * [all...] |
utrie.cpp | 589 int32_t i, start, newStart, overlapStart; 616 newStart=UTRIE_DATA_BLOCK_LENGTH; 617 for(start=newStart; start<trie->dataLength;) { 620 * newStart: index where the current block is to be moved 629 /* leave newStart with the previous block! */ 635 (i=_findSameDataBlock(trie->data, newStart, start, 645 /* leave newStart with the previous block! */ 653 i>0 && !equal_uint32(trie->data+(newStart-i), trie->data+start, i); 661 trie->map[start>>UTRIE_SHIFT]=newStart-i; 666 trie->data[newStart++]=trie->data[start++] [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableInfo.java | 116 RegisterSpecSet newStart = start.mutableCopy(); 118 newStart.intersect(specs, true); 120 newStart = specs.mutableCopy(); 123 if (start.equals(newStart)) { 127 newStart.setImmutable(); 128 setStarts(label, newStart);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
LocalVariableInfo.java | 117 RegisterSpecSet newStart = start.mutableCopy(); 119 newStart.intersect(specs, true); 121 newStart = specs.mutableCopy(); 124 if (start.equals(newStart)) { 128 newStart.setImmutable(); 129 setStarts(label, newStart);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextLayoutAttributesBuilder.h | 56 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0) 58 , start(newStart)
|
/external/chromium_org/third_party/icu/source/tools/makeconv/ |
genmbcs.c | [all...] |
/external/icu4c/tools/makeconv/ |
genmbcs.cpp | [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
SpannableStringBuilderSpanTest.java | 266 int newStart = Math.max(0, originalStart - replStart) + replaceStart; 268 if (isValidSpan(newStart, newEnd, flag)) { 269 assertEquals(start, newStart); 406 int newStart; 409 public Changed(Object span, int oldStart, int oldEnd, int newStart, int newEnd) { 413 this.newStart = newStart; 456 public void assertChanged(Object span, int oldStart, int oldEnd, int newStart, int newEnd) { 459 assertEquals(changed.newStart, newStart); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableInfo.java | 117 RegisterSpecSet newStart = start.mutableCopy(); 118 newStart.intersect(specs, true); 120 if (start.equals(newStart)) { 124 newStart.setImmutable(); 125 setStarts(label, newStart);
|
/dalvik/dx/src/com/android/dx/ssa/ |
LocalVariableInfo.java | 117 RegisterSpecSet newStart = start.mutableCopy(); 118 newStart.intersect(specs, true); 120 if (start.equals(newStart)) { 124 newStart.setImmutable(); 125 setStarts(index, newStart);
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
LocalVariableInfo.java | 118 RegisterSpecSet newStart = start.mutableCopy(); 119 newStart.intersect(specs, true); 121 if (start.equals(newStart)) { 125 newStart.setImmutable(); 126 setStarts(index, newStart);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
AutoCompleteWindow.py | 56 def _change_start(self, newstart): 57 min_len = min(len(self.start), len(newstart)) 59 while i < min_len and self.start[i] == newstart[i]: 64 if i < len(newstart): 66 newstart[i:]) 67 self.start = newstart 123 newstart = lts 129 newstart = selstart[:i] 130 self._change_start(newstart)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
AutoCompleteWindow.py | 56 def _change_start(self, newstart): 57 min_len = min(len(self.start), len(newstart)) 59 while i < min_len and self.start[i] == newstart[i]: 64 if i < len(newstart): 66 newstart[i:]) 67 self.start = newstart 123 newstart = lts 129 newstart = selstart[:i] 130 self._change_start(newstart)
|
/frameworks/base/services/java/com/android/server/ |
AlarmManagerService.java | 162 boolean newStart = false; 174 newStart = true; 183 return newStart; 188 long newStart = 0; // recalculate endpoints as we go 196 if (alarm.whenElapsed > newStart) { 197 newStart = alarm.whenElapsed; 207 start = newStart; 215 long newStart = 0; // recalculate endpoints as we go 223 if (alarm.whenElapsed > newStart) { 224 newStart = alarm.whenElapsed [all...] |