OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isInside
(Results
1 - 4
of
4
) sorted by null
/development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
AnticiButton.java
183
boolean
isInside
= (x > 0 && x < getWidth() &&
185
if (isPressed() !=
isInside
) {
186
setPressed(
isInside
);
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java
159
public boolean
isInside
(int x, int y) {
160
return super.
isInside
(x, codes[0] == KEYCODE_CANCEL ? y - 10 : y);
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java
110
boolean
isInside
= (x > 0 && x < mStarter.getWidth() &&
112
if (mStarter.isPressed() !=
isInside
) {
113
mStarter.setPressed(
isInside
);
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
ResTable.java
[
all
...]
Completed in 1233 milliseconds