OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sLocation
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateTestPage.java
40
private static String
sLocation
; // Persist between repeated invocations
65
if (
sLocation
!= null) {
66
mLocation.setText(
sLocation
);
100
sLocation
= path;
/packages/apps/Camera/src/com/android/camera/
Util.java
577
private static int
sLocation
[] = new int[2];
581
v.getLocationInWindow(
sLocation
);
582
return x >=
sLocation
[0] && x < (
sLocation
[0] + v.getWidth())
583
&& y >=
sLocation
[1] && y < (
sLocation
[1] + v.getHeight());
587
reference.getLocationInWindow(
sLocation
);
588
int referenceX =
sLocation
[0];
589
int referenceY =
sLocation
[1];
590
view.getLocationInWindow(
sLocation
);
[
all
...]
/packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java
634
private static int
sLocation
[] = new int[2];
638
v.getLocationInWindow(
sLocation
);
639
return x >=
sLocation
[0] && x < (
sLocation
[0] + v.getWidth())
640
&& y >=
sLocation
[1] && y < (
sLocation
[1] + v.getHeight());
644
reference.getLocationInWindow(
sLocation
);
645
int referenceX =
sLocation
[0];
646
int referenceY =
sLocation
[1];
647
view.getLocationInWindow(
sLocation
);
[
all
...]
Completed in 53 milliseconds