OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mdistances
(Results
1 - 3
of
3
) sorted by null
/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
...]
/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/support/v7/recyclerview/src/android/support/v7/widget/helper/
ItemTouchHelper.java
276
private List<Integer>
mDistances
;
775
mDistances
= new ArrayList<Integer>();
778
mDistances
.clear();
[
all
...]
Completed in 896 milliseconds