OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isPressed
(Results
1 - 25
of
70
) sorted by null
1
2
3
/hardware/bsp/intel/peripheral/libupm/examples/python/
ttp223.py
32
if touch.
isPressed
():
/hardware/bsp/intel/peripheral/libupm/examples/c++/
ttp223.cxx
41
if ( touch->
isPressed
() ) {
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
ttp223.js
34
if ( touch.
isPressed
() ) {
/hardware/bsp/intel/peripheral/libupm/examples/java/
TTP223Sample.java
41
if (touch.
isPressed
())
/cts/tests/tests/widget/src/android/widget/cts/
ZoomButtonTest.java
85
assertFalse(mZoomButton.
isPressed
());
88
assertFalse(mZoomButton.
isPressed
());
91
assertTrue(mZoomButton.
isPressed
());
94
assertTrue(mZoomButton.
isPressed
());
98
assertFalse(mZoomButton.
isPressed
());
GalleryTest.java
275
assertTrue(gallery.getSelectedView().
isPressed
());
276
assertFalse(gallery.getChildAt(1).
isPressed
());
279
assertFalse(gallery.getSelectedView().
isPressed
());
280
assertFalse(gallery.getChildAt(1).
isPressed
());
/frameworks/base/services/core/java/com/android/server/hdmi/
HdmiMhlLocalDeviceStub.java
44
void sendKeyEvent(int keycode, boolean
isPressed
) {
SendKeyAction.java
104
* @param
isPressed
true if the key event is of {@link KeyEvent#ACTION_DOWN}
106
void processKeyEvent(int keycode, boolean
isPressed
) {
111
if (
isPressed
) {
/hardware/bsp/intel/peripheral/libupm/src/ttp223/
ttp223.h
92
bool
isPressed
();
ttp223.cxx
58
bool TTP223::
isPressed
() {
/frameworks/base/core/java/android/hardware/hdmi/
HdmiClient.java
48
* @param
isPressed
true if this is key press event
50
public void sendKeyEvent(int keyCode, boolean
isPressed
) {
52
mService.sendKeyEvent(getDeviceType(), keyCode,
isPressed
);
IHdmiControlService.aidl
49
void sendKeyEvent(int deviceType, int keyCode, boolean
isPressed
);
/packages/apps/LegacyCamera/src/com/android/camera/
ShutterButton.java
55
* Hook into the drawable state changing to get changes to
isPressed
-- the
62
final boolean pressed =
isPressed
();
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Button.java
138
public boolean
isPressed
() {
169
if (
isPressed
() && !isDisabled()) {
198
boolean
isPressed
=
isPressed
();
204
else if (
isPressed
&& style.down != null)
215
if (
isPressed
&& !isDisabled) {
234
if (stage != null && stage.getActionsRequestRendering() &&
isPressed
!= clickListener.
isPressed
())
ImageTextButton.java
90
else if (
isPressed
() && style.imageDown != null)
106
else if (
isPressed
() && style.downFontColor != null)
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DropDownListView.java
197
if (!
isPressed
()) {
208
if (motionView != null && motionView != child && motionView.
isPressed
()) {
220
if (!child.
isPressed
()) {
/external/proguard/src/proguard/gui/
TabbedPane.java
88
if ((
isPressed
() == b) || !isEnabled())
109
if (
isPressed
())
/packages/apps/Launcher2/src/com/android/launcher2/
DrawableStateProxyView.java
61
mView.setPressed(
isPressed
());
PagedViewIcon.java
86
if (
isPressed
()) {
BubbleTextView.java
126
if (
isPressed
()) {
210
//
isPressed
() on an ACTION_UP
215
// So that the pressed outline is visible immediately when
isPressed
() is true,
224
if (
isPressed
()) {
237
if (!
isPressed
()) {
/development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
AnticiButton.java
170
if (
isPressed
()) {
185
if (
isPressed
() != isInside) {
/packages/apps/Music/src/com/android/music/
RepeatingImageButton.java
115
if (
isPressed
()) {
/frameworks/base/core/java/android/widget/
DropDownListView.java
257
if (!
isPressed
()) {
269
if (motionView != null && motionView != child && motionView.
isPressed
()) {
278
if (!child.
isPressed
()) {
/packages/apps/Camera2/src/com/android/camera/
ShutterButton.java
133
* Hook into the drawable state changing to get changes to
isPressed
-- the
140
final boolean pressed =
isPressed
();
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java
112
if (mStarter.
isPressed
() != isInside) {
117
if (mStarter.
isPressed
()) {
Completed in 374 milliseconds
1
2
3