Home
last modified time | relevance | path

Searched refs:mTypes (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/
DZoneInfoData.java129 final byte[] mTypes; field in ZoneInfoData
162 mTypes = types; in ZoneInfoData()
182 mTypes = that.mTypes == null ? null : that.mTypes.clone(); in ZoneInfoData()
355 mTypes = types; in ZoneInfoData()
362 int typeIndex = mTypes[i] & 0xff; in ZoneInfoData()
381 rawOffsetInSeconds = gmtOffsets[mTypes[lastStdTransitionIndex] & 0xff]; in ZoneInfoData()
447 putField.put("mTypes", mTypes); in writeToSerializationFields()
484 return mTypes[transition] & 0xff; in findOffsetIndexForTimeInSeconds()
591 int type = mTypes[transitionIndex] & 0xff; in getOffsetsByUtcTime()
604 type = mTypes[transitionIndex] & 0xff; in getOffsetsByUtcTime()
[all …]
DWallTime.java291 } else if (delta > 0 && transitionIndex >= zoneInfo.mTypes.length) {
304 int type = zoneInfo.mTypes[transitionIndex] & 0xff;
630 int type = zoneInfo.mTypes[transitionIndex] & 0xff;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DCachedPathIteratorFactory.java28 private final int[] mTypes; field in CachedPathIteratorFactory
50 mTypes = new int[typesArray.size()]; in CachedPathIteratorFactory()
51 mCoordinates = new float[mTypes.length][]; in CachedPathIteratorFactory()
53 mTypes[i] = typesArray.get(i); in CachedPathIteratorFactory()
58 mSegmentsLength = new float[mTypes.length]; in CachedPathIteratorFactory()
66 for (int i = 0; i < mTypes.length; i++) { in CachedPathIteratorFactory()
67 switch (mTypes[i]) { in CachedPathIteratorFactory()
98 mTypes[i] = PathIterator.SEG_LINETO; in CachedPathIteratorFactory()
320 if (mNextIndex >= mTypes.length) { in next()
333 mCurrentType = mTypes[mNextIndex]; in next()
[all …]
/external/doclava/src/com/google/doclava/
DConverter.java590 return (TypeInfo) mTypes.obtain(o); in obtainType()
593 private static Cache mTypes = new Cache() { field in Converter