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

  /packages/apps/Calculator/src/com/android/calculator2/
ColorButton.java 46 Calculator calc = (Calculator) context; local
47 init(calc);
48 mListener = calc.mListener;
56 private void init(Calculator calc) {
67 calc.adjustFontSize(this);
CalculatorDisplay.java 58 Calculator calc = (Calculator) getContext(); local
59 calc.adjustFontSize((TextView)getChildAt(0));
60 calc.adjustFontSize((TextView)getChildAt(1));
  /bionic/libc/bionic/
md5.c 75 calc (struct md5 *m, u_int32_t *data) function
228 calc(m, current);
230 calc(m, (u_int32_t*)m->save);
  /development/tools/zoneinfo/
ZoneInfo.java 158 long calc = (year / 400) * MILLISECONDS_PER_400_YEARS; local
161 calc += year * (365 * MILLISECONDS_PER_DAY);
162 calc += ((year + 3) / 4) * MILLISECONDS_PER_DAY;
165 calc -= ((year - 1) / 100) * MILLISECONDS_PER_DAY;
170 calc += mlen[month] * MILLISECONDS_PER_DAY;
171 calc += (day - 1) * MILLISECONDS_PER_DAY;
172 calc += millis;
174 calc -= mRawOffset;
175 calc -= UNIX_OFFSET;
177 return getOffset(calc);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
ZoneInfo.java 143 long calc = (year / 400) * MILLISECONDS_PER_400_YEARS; local
146 calc += year * (365 * MILLISECONDS_PER_DAY);
147 calc += ((year + 3) / 4) * MILLISECONDS_PER_DAY;
150 calc -= ((year - 1) / 100) * MILLISECONDS_PER_DAY;
155 calc += mlen[month] * MILLISECONDS_PER_DAY;
156 calc += (day - 1) * MILLISECONDS_PER_DAY;
157 calc += millis;
159 calc -= mRawOffset;
160 calc -= UNIX_OFFSET;
162 return getOffset(calc);
    [all...]
  /external/v8/test/cctest/
test-regexp.cc 1465 int calc = first[j] + i; local
    [all...]

Completed in 2103 milliseconds