/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;
|
coptccal.cpp | 140 UDate newStart = calendar.getTime(status); 145 fgSystemDefaultCenturyStart = newStart;
|
ethpccal.cpp | 177 UDate newStart = calendar.getTime(status); 182 fgSystemDefaultCenturyStart = newStart;
|
smpdtfmt.cpp | [all...] |
rbt_rule.cpp | 377 // int32_t newStart = 0; 451 int32_t newStart; 452 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart); 459 pos.start = uprv_max(minOText, uprv_min(uprv_min(oText, pos.limit), newStart));
|
indiancal.cpp | 428 UDate newStart = calendar.getTime(status); 434 fgSystemDefaultCenturyStart = newStart;
|
/external/clang/test/SemaTemplate/ |
example-dynarray.cpp | 34 T* NewStart = (T*)malloc(sizeof(T) * other.size()); 37 new (NewStart + I) T(other[I]); 43 Start = NewStart; 44 Last = End = NewStart + other.size(); 101 T* NewStart = (T*)malloc(sizeof(T) * NewCapacity); 105 new (NewStart + I) T(Start[I]); 111 Start = NewStart;
|
/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/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 | 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/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/webkit/Source/WebCore/rendering/svg/ |
SVGTextLayoutAttributesBuilder.h | 50 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0) 52 , start(newStart)
|
/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 | 118 RegisterSpecSet newStart = start.mutableCopy(); 119 newStart.intersect(specs, true); 121 if (start.equals(newStart)) { 125 newStart.setImmutable(); 126 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);
|
/external/webkit/Source/WebCore/editing/ |
ApplyStyleCommand.cpp | 177 void ApplyStyleCommand::updateStartEnd(const Position& newStart, const Position& newEnd) 179 ASSERT(comparePositions(newEnd, newStart) >= 0); 181 if (!m_useEndingSelection && (newStart != m_start || newEnd != m_end)) 184 setEndingSelection(VisibleSelection(newStart, newEnd, VP_DEFAULT_AFFINITY)); 185 m_start = newStart; [all...] |
ApplyStyleCommand.h | 117 void updateStartEnd(const Position& newStart, const Position& newEnd);
|
/external/clang/lib/Frontend/ |
TextDiagnostic.cpp | 421 unsigned NewStart = map.startOfPreviousColumn(SourceStart); 426 while (NewStart && isWhitespace(SourceLine[NewStart])) 427 NewStart = map.startOfPreviousColumn(NewStart); 430 while (NewStart) { 431 unsigned Prev = map.startOfPreviousColumn(NewStart); 434 NewStart = Prev; 437 assert(map.byteToColumn(NewStart) != -1); 439 map.byteToColumn(NewStart); [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebFrame.mm | 745 Position newStart = start.upstream().leadingWhitespacePosition(DOWNSTREAM, true); 746 if (newStart.isNull()) 747 newStart = start; 752 newStart = newStart.parentAnchoredEquivalent(); 757 range->setStart(newStart.containerNode(), newStart.offsetInContainerNode(), exception); 758 range->setEnd(newStart.containerNode(), newStart.offsetInContainerNode(), exception); [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
SearchActivity.java | 135 int newstart = Math.max(0, startPos - offset); local 138 if (newstart == start && newend == end) { 142 start = newstart;
|