OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:softkeys
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboard.java
190
List<SoftKey>
softKeys
= keyRow.mSoftKeys;
193
softKeys
.add(softKey);
219
List<SoftKey>
softKeys
= keyRow.mSoftKeys;
220
for (int i = 0; i <
softKeys
.size(); i++) {
221
SoftKey softKey =
softKeys
.get(i);
292
List<SoftKey>
softKeys
= mKeyRows.get(row).mSoftKeys;
293
if (
softKeys
.size() > location) {
294
return
softKeys
.get(location);
313
List<SoftKey>
softKeys
= keyRow.mSoftKeys;
314
int keyNum =
softKeys
.size()
[
all
...]
SoftKeyboardView.java
415
List<SoftKey>
softKeys
= keyRow.mSoftKeys;
416
int keyNum =
softKeys
.size();
418
SoftKey softKey =
softKeys
.get(i);
/external/guava/guava/src/com/google/common/collect/
GenericMapMaker.java
102
* See {@link MapMaker#
softKeys
}.
106
public abstract GenericMapMaker<K0, V0>
softKeys
();
MapMaker.java
82
* #
softKeys
} was specified, the map uses identity ({@code ==}) comparisons instead for keys.
154
* {@link #weakKeys} or {@link #
softKeys
} is specified, and {@link Equivalences#equals()}
332
public MapMaker
softKeys
() {
[
all
...]
/external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java
251
MapMakerInternalMap<Object, Object> map = makeMap(createMapMaker().
softKeys
());
[
all
...]
Completed in 525 milliseconds