HomeSort by relevance Sort by last modified time
    Searched defs:newStart (Results 1 - 25 of 66) sorted by null

1 2 3

  /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/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);
  /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/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/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/chromium_org/third_party/icu/source/i18n/
coptccal.cpp 140 UDate newStart = calendar.getTime(status);
145 fgSystemDefaultCenturyStart = newStart;
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;
ethpccal.cpp 177 UDate newStart = calendar.getTime(status);
182 fgSystemDefaultCenturyStart = newStart;
rbt_rule.cpp 376 // int32_t newStart = 0;
450 int32_t newStart;
451 int32_t newLength = output->toReplacer()->replace(text, pos.start, keyLimit, newStart);
458 pos.start = uprv_max(minOText, uprv_min(uprv_min(oText, pos.limit), newStart));
taiwncal.cpp 203 UDate newStart = calendar.getTime(status);
209 fgSystemDefaultCenturyStart = newStart;
indiancal.cpp 428 UDate newStart = calendar.getTime(status);
434 fgSystemDefaultCenturyStart = newStart;
islamcal.cpp 526 UDate newStart = calendar.getTime(status);
532 fgSystemDefaultCenturyStart = newStart;
persncal.cpp 446 UDate newStart = calendar.getTime(status);
452 fgSystemDefaultCenturyStart = newStart;
hebrwcal.cpp 740 UDate newStart = calendar.getTime(status);
745 fgSystemDefaultCenturyStart = newStart;
  /external/icu/icu4c/source/i18n/
buddhcal.cpp 153 UDate newStart = calendar.getTime(status);
156 gSystemDefaultCenturyStart = newStart;
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...]
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;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
LocaleSpanCompatUtils.java 103 int newStart = start;
128 if (spanStart < newStart) {
129 newStart = spanStart;
157 spannable.setSpan(localeSpan, newStart, newEnd, localeSpanFlag);
  /external/chromium_org/third_party/WebKit/Source/wtf/
Deque.h 331 size_t newStart = m_buffer.capacity() - (oldCapacity - m_start);
332 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart);
333 m_start = newStart;
  /external/chromium_org/third_party/icu/source/common/
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...]
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...]
  /external/icu/icu4c/source/common/
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...]
  /libcore/luni/src/main/java/java/text/
AttributedString.java 337 int newStart = getRunStart(attribute);
338 if (newStart > start) {
339 start = newStart;

Completed in 1775 milliseconds

1 2 3