HomeSort by relevance Sort by last modified time
    Searched defs:tempResult (Results 1 - 4 of 4) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 108 List<Rectangle> tempResult = new ArrayList<Rectangle>();
118 tempResult.add(new Rectangle(r.x, r.y, r.width, h.y - r.y));
123 tempResult.add(new Rectangle(r.x, h.y, h.x - r.x, h.height));
133 tempResult.add(new Rectangle(r.x, hy2, r.width, ry2 - hy2));
138 tempResult.add(new Rectangle(hx2, h.y, rx2 - hx2, h.height));
141 tempResult.add(r);
145 result = tempResult;
  /external/icu4c/i18n/
nfsubs.cpp 722 double tempResult = result.getDouble(status);
746 tempResult = composeRuleValue(tempResult, baseValue);
747 result.setDouble(tempResult);
    [all...]
nfrs.cpp 612 Formattable tempResult;
616 UBool success = negativeNumberRule->doParse(text, workingPos, 0, upperBound, tempResult);
621 result = tempResult;
635 Formattable tempResult;
636 UBool success = fractionRules[i]->doParse(text, workingPos, 0, upperBound, tempResult);
638 result = tempResult;
675 Formattable tempResult;
676 UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResult);
678 result = tempResult;
nfrule.cpp 517 int16_t tempResult = (int16_t)(uprv_log((double)baseValue) / uprv_log((double)radix));
518 int64_t temp = util64_pow(radix, tempResult + 1);
520 tempResult += 1;
522 return tempResult;
    [all...]

Completed in 52 milliseconds