OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mDistances
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java
230
private int[]
mDistances
= new int[MAX_NEARBY_KEYS];
804
java.util.Arrays.fill(
mDistances
, Integer.MAX_VALUE);
827
for (int j = 0; j <
mDistances
.length; j++) {
828
if (
mDistances
[j] > dist) {
829
System.arraycopy(
mDistances
, j,
mDistances
, j + nCodes,
830
mDistances
.length - j - nCodes);
835
mDistances
[j + c] = dist;
[
all
...]
/frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java
229
private int[]
mDistances
= new int[MAX_NEARBY_KEYS];
770
java.util.Arrays.fill(
mDistances
, Integer.MAX_VALUE);
794
for (int j = 0; j <
mDistances
.length; j++) {
795
if (
mDistances
[j] > dist) {
797
System.arraycopy(
mDistances
, j,
mDistances
, j + nCodes,
798
mDistances
.length - j - nCodes);
803
mDistances
[j + c] = dist;
[
all
...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
ItemTouchHelper.java
276
private List<Integer>
mDistances
;
774
mDistances
= new ArrayList<Integer>();
777
mDistances
.clear();
807
if (dist >
mDistances
.get(j)) {
[
all
...]
/prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar
Completed in 90 milliseconds