OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:widgetIndex
(Results
1 - 2
of
2
) sorted by null
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ListOrganizer.java
70
//int
widgetIndex
= widgetOrder.indexOf(key);
79
int
widgetIndex
= list.indexOf(key);
80
if(
widgetIndex
== -1) {
84
if(
widgetIndex
>= list.size()-1) {
89
ElementType widgetAbove = list.get(
widgetIndex
+1);
94
int
widgetIndex
= list.indexOf(key);
95
if(
widgetIndex
== -1) {
99
if(
widgetIndex
<= 0) {
104
ElementType widgetBeneath = list.get(
widgetIndex
-1);
/packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java
140
final int
widgetIndex
= parent.indexOfChild(w);
146
final int x =
widgetIndex
% cellCountX;
147
final int y =
widgetIndex
/ cellCountX;
160
if (
widgetIndex
> 0) {
161
parent.getChildAt(
widgetIndex
- 1).requestFocus();
177
if (
widgetIndex
< (widgetCount - 1)) {
178
parent.getChildAt(
widgetIndex
+ 1).requestFocus();
[
all
...]
Completed in 84 milliseconds