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

1 2

  /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 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);
  /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/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/icu4c/i18n/
coptccal.cpp 140 UDate newStart = calendar.getTime(status);
145 fgSystemDefaultCenturyStart = 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...]
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 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));
taiwncal.cpp 203 UDate newStart = calendar.getTime(status);
209 fgSystemDefaultCenturyStart = newStart;
indiancal.cpp 428 UDate newStart = calendar.getTime(status);
434 fgSystemDefaultCenturyStart = newStart;
islamcal.cpp 529 UDate newStart = calendar.getTime(status);
535 fgSystemDefaultCenturyStart = newStart;
persncal.cpp 315 UDate newStart = calendar.getTime(status);
321 fgSystemDefaultCenturyStart = newStart;
hebrwcal.cpp 740 UDate newStart = calendar.getTime(status);
745 fgSystemDefaultCenturyStart = newStart;
chnsecal.cpp 845 UDate newStart = calendar.getTime(status);
851 fgSystemDefaultCenturyStart = newStart;
gregocal.cpp     [all...]
smpdtfmt.cpp     [all...]
  /external/icu4c/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...]
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...]
  /libcore/luni/src/main/java/java/text/
AttributedString.java 337 int newStart = getRunStart(attribute);
338 if (newStart > start) {
339 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...]
  /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...]
  /frameworks/base/core/java/android/widget/
TextView.java     [all...]

Completed in 996 milliseconds

1 2