OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMaxLength
(Results
1 - 5
of
5
) sorted by null
/external/libnfc-nci/halimpl/bcm2079x/include/
StartupConfig.h
105
static const UINT8
mMaxLength
;
/frameworks/base/obex/javax/obex/
ApplicationParameter.java
44
private int
mMaxLength
= 1000;
112
mArray = new byte[
mMaxLength
];
117
if ((mLength + len + 2) >
mMaxLength
) {
121
mMaxLength
= mLength + 4 * len;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java
35
private final int
mMaxLength
;
46
mMaxLength
= maxLength;
57
mMaxLength
= 0;
93
if (length1 >
mMaxLength
) {
94
length1 =
mMaxLength
;
98
if (length2 >
mMaxLength
) {
99
length2 =
mMaxLength
;
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
StartupConfig.cpp
29
const UINT8 StartupConfig::
mMaxLength
= 255;
95
if ((newContent[0]+mBuffer.size()) >
mMaxLength
)
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java
246
private final int
mMaxLength
;
258
mMaxLength
= maxLength;
260
mScores = new int[
mMaxLength
];
270
if (insertIndex == 0 && mLength >=
mMaxLength
) {
279
// if (0 >=
mMaxLength
) {
287
if (insertIndex >=
mMaxLength
) {
294
if (mLength <
mMaxLength
) {
Completed in 86 milliseconds