Searched defs:mLength (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Email/provider_src/com/android/email/
H A DFixedLengthInputStream.java29 private final int mLength; field in class:FixedLengthInputStream
34 this.mLength = length;
39 return mLength - mCount;
44 if (mCount < mLength) {
54 if (mCount < mLength) {
55 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
73 return mLength;
78 return String.format("FixedLengthInputStream(in=%s, length=%d)", mIn.toString(), mLength);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DAssetFileAddress.java30 public final long mLength; field in class:AssetFileAddress
35 mLength = length;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DAssetFileAddress.java32 public final long mLength; field in class:AssetFileAddress
37 mLength = length;
68 return String.format("%s (offset=%d, length=%d)", mFilename, mOffset, mLength);
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DFixedLengthInputStream.java28 private final int mLength; field in class:FixedLengthInputStream
33 this.mLength = length;
38 return mLength - mCount;
43 if (mCount < mLength) {
53 if (mCount < mLength) {
54 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
72 return mLength;
77 return String.format("FixedLengthInputStream(in=%s, length=%d)", mIn.toString(), mLength);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppReceiveFileInfo.java63 public long mLength; field in class:BluetoothOppReceiveFileInfo
74 mLength = length;
82 mLength = length;
H A DBluetoothOppSendFileInfo.java77 public final long mLength; field in class:BluetoothOppSendFileInfo
84 mLength = length;
96 mLength = length;
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryCellParser.java29 private long mLength; field in class:BatteryCellParser
50 mLength = endTime - startTime;
81 return mLength;
H A DBatteryFlagParser.java31 private long mLength; field in class:BatteryFlagParser
46 mLength = endTime - startTime;
77 return mLength;
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/
H A Dsuggest_options.h27 : mOptions(options), mLength(length) {}
70 const int mLength; member in class:latinime::SuggestOptions
73 return 0 <= key && key < mLength;
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
H A DTextUtilities.java544 final int mLength; field in class:TextUtilities.SearchTerm
551 mLength = term.length();
650 if (t.mMatchLength == t.mLength) {
651 String matchText = text.substring(t.mMatchStart, t.mMatchStart + t.mLength);
669 lastOut = t.mMatchStart + t.mLength - 1;
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
H A DResizableIntArray.java29 private int mLength; field in class:ResizableIntArray
36 if (index < mLength) {
39 throw new ArrayIndexOutOfBoundsException("length=" + mLength + "; index=" + index);
43 if (index < mLength) {
46 mLength = index;
52 final int currentLength = mLength;
55 mLength = currentLength + 1;
83 return mLength;
88 mLength = newLength;
94 mLength
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DSentenceLevelAdapter.java56 public final int mLength; field in class:SentenceLevelAdapter.SentenceWordItem
60 mLength = end - start;
192 lengths[i] = item.mLength;
/packages/apps/DeskClock/src/com/android/deskclock/data/
H A DTimer.java84 private final long mLength; field in class:Timer
105 mLength = length;
116 public long getLength() { return mLength; }
166 return new Timer(mId, RUNNING, mLength, mTotalLength, now(), mRemainingTime, mLabel,
181 return new Timer(mId, PAUSED, mLength, mTotalLength, Long.MIN_VALUE, remainingTime, mLabel,
193 return new Timer(mId, EXPIRED, mLength, mTotalLength, mLastStartTime, mRemainingTime,
205 return new Timer(mId, RESET, mLength, mLength, Long.MIN_VALUE, mLength, mLabel,
217 return new Timer(mId, mState, mLength, mTotalLengt
[all...]
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepMessage.java49 private final int mLength; field in class:SnepMessage
85 mLength = input.getInt();
89 ndefLength = mLength - 4;
93 ndefLength = mLength;
109 mLength = length;
160 return mLength;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictIOUtils.java65 public int mLength; field in class:BinaryDictIOUtils.Position
69 mLength = length;
94 p.mNumOfPtNode + ", position=" + p.mPosition + ", length=" + p.mLength);
98 if (index != p.mLength) index = p.mLength;

Completed in 345 milliseconds