Searched refs:mLength (Results 1 - 18 of 18) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DResizableIntArray.java24 private int mLength; field in class:ResizableIntArray
31 if (index < mLength) {
34 throw new ArrayIndexOutOfBoundsException("length=" + mLength + "; index=" + index);
38 if (index < mLength) {
41 mLength = index;
47 final int currentLength = mLength;
50 mLength = currentLength + 1;
78 return mLength;
83 mLength = newLength;
89 mLength
[all...]
H A DDictionaryInfoUtils.java81 values.put(FILESIZE_COLUMN, mFileAddress.mLength);
311 new File(fileAddress.mFilename), fileAddress.mOffset, fileAddress.mLength);
/packages/apps/Email/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/native/jni/src/suggest/core/
H A Dsuggest_options.h27 : mOptions(options), mLength(length) {}
63 const int mLength; member in class:latinime::SuggestOptions
66 return 0 <= key && key < 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;
H A DDictionaryFactory.java63 new ReadOnlyBinaryDictionary(f.mFilename, f.mOffset, f.mLength,
194 address.mFilename, address.mOffset, address.mLength, useFullEditDistance,
/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/apps/Exchange/src/com/android/exchange/
H A DEasResponse.java48 private final int mLength; field in class:EasResponse
65 mLength = (int) mEntity.getContentLength();
67 mLength = 0;
168 return mLength == 0;
184 return mLength;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictIOUtils.java75 public int mLength; field in class:BinaryDictIOUtils.Position
79 mLength = length;
104 p.mNumOfPtNode + ", position=" + p.mPosition + ", length=" + p.mLength);
108 if (index != p.mLength) index = p.mLength;
H A DVer2DictDecoder.java116 protected final long mLength; field in class:Ver2DictDecoder
127 mLength = length;
144 mLength = length;
172 mDictionaryBinaryFile.getAbsolutePath(), mOffset, mLength,
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppSendFileInfo.java77 public final long mLength; field in class:BluetoothOppSendFileInfo
84 mLength = length;
96 mLength = length;
H A DBluetoothOppObexClientSession.java312 if (fileInfo.mFileName == null || fileInfo.mLength == 0) {
320 Log.v(TAG, "length :" + fileInfo.mLength);
328 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
352 request.setHeader(HeaderSet.LENGTH, fileInfo.mLength);
402 if (!mInterrupted && (position != fileInfo.mLength)) {
417 if (position != fileInfo.mLength) {
447 while (!mInterrupted && okToProceed && (position != fileInfo.mLength)) {
479 + fileInfo.mLength);
484 } else if (!mInterrupted && position == fileInfo.mLength) {
486 + " length " + fileInfo.mLength);
[all...]
H A DBluetoothOppReceiveFileInfo.java63 public long mLength; field in class:BluetoothOppReceiveFileInfo
74 mLength = length;
82 mLength = length;
H A DBluetoothOppObexServerSession.java464 while ((!mInterrupted) && (position != fileInfo.mLength)) {
504 if (position == fileInfo.mLength) {
508 if (D) Log.d(TAG, "Reading file failed at " + position + " of " + fileInfo.mLength);
532 Log.v(TAG, "length :" + fileInfo.mLength);
H A DBluetoothOppTransfer.java323 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DSentenceLevelAdapter.java54 public final int mLength; field in class:SentenceLevelAdapter.SentenceWordItem
58 mLength = end - start;
190 lengths[i] = item.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;

Completed in 548 milliseconds