HomeSort by relevance Sort by last modified time
    Searched full:touch (Results 1 - 25 of 1042) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/cmds/monkey/
example_script.txt 0 # Touch the android
2 touch down 160 200
3 touch up 160 200
7 touch down 300 450
8 touch up 300 450
12 touch down 300 450
13 touch up 300 450
17 touch down 300 450
18 touch up 300 450
53 touch down 300 45
    [all...]
  /frameworks/base/docs/html/resources/articles/
touch-mode.jd 1 page.title=Touch Mode
4 <p>This article explains the <em>touch mode</em>, one of the most
7 <p>The touch mode is a state of the view hierarchy that depends solely on the
8 user interaction with the phone. By itself, the touch mode is something very
10 performed with the touch screen. For example, if you are using an
12 of touch mode; however, if you touch a button on the screen with your finger,
13 you will enter touch mode. When the user is not in touch mode, we talk about the
17 <p>There is only one API directly related to touch mode,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
TouchModeFlexibleAsserts.java 26 * When entering touch mode via touch, the tests can be flaky. These asserts
27 * are more flexible (allowing up to MAX_ATTEMPTS touches to enter touch mode via touch or
44 + "touch mode", viewToTouch.isInTouchMode());
45 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode);
56 + "touch mode", viewToTouch.isInTouchMode());
57 //Assert.assertEquals("number of touches to enter touch mode", 1, numAttemptsAtTouchMode);
73 + "pressing key event, still in touch mode", checkForTouchMode.isInTouchMode());
  /external/webkit/WebCore/dom/
TouchList.h 31 #include "Touch.h"
46 Touch* item(unsigned);
48 void append(const PassRefPtr<Touch> touch) { m_values.append(touch); }
53 Vector<RefPtr<Touch> > m_values;
Touch.h 39 class Touch : public RefCounted<Touch> {
41 static PassRefPtr<Touch> create(Frame* frame, EventTarget* target,
44 return adoptRef(new Touch(frame, target, identifier, screenX,
58 Touch(Frame* frame, EventTarget* target, unsigned identifier,
Touch.cpp 30 #include "Touch.h"
56 Touch::Touch(Frame* frame, EventTarget* target, unsigned identifier,
  /frameworks/base/core/tests/coretests/src/android/widget/touchmode/
TouchModeFocusableTest.java 31 * Some views, like edit texts, can keep and gain focus even when in touch mode.
52 assertFalse("should not be in touch mode to start off", mButton.isInTouchMode());
54 assertTrue("edit text should be focusable in touch mode", mEditText.isFocusableInTouchMode());
60 assertTrue("should be in touch mode", mButton.isInTouchMode());
71 assertTrue("clicking edit text should have entered touch mode", mButton.isInTouchMode());
76 // entering touch mode takes focus away from the currently focused item if it
77 // isn't focusable in touch mode.
86 assertTrue("should be in touch mode", mButton.isInTouchMode());
TouchModeFocusChangeTest.java 30 * Make sure focus isn't kept by buttons when entering touch mode.
32 * When in touch mode and hitting the d-pad, we should leave touch mode and the
54 assertFalse("we should not be in touch mode", mActivity.isInTouchMode());
62 assertTrue("should be in touch mode", mActivity.isInTouchMode());
79 assertTrue("should be in touch mode", mActivity.isInTouchMode());
84 assertFalse("should be out of touch mode", mActivity.isInTouchMode());
StartInTouchWithViewInFocusTest.java 49 assertTrue("should start in touch mode", mEditText.isInTouchMode());
50 assertTrue("edit text is focusable in touch mode, should have focus", mEditText.isFocused());
56 assertFalse("should have left touch mode", mEditText.isInTouchMode());
63 assertFalse("should have left touch mode", mEditText.isInTouchMode());
ChangeTouchModeTest.java 31 * Tests that the touch mode changes from various events, and that the state
47 assertFalse("touch mode", getActivity().isInTouchMode());
53 assertTrue("touch mode", getActivity().isInTouchMode());
61 assertFalse("touch mode", getActivity().isInTouchMode());
105 assertFalse("touch mode", getActivity().isInTouchMode());
124 assertTrue("touch mode", getActivity().isInTouchMode());
  /external/ipsec-tools/src/include-glibc/
Makefile.am 4 touch .includes
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 32 import android.text.method.Touch;
36 @TestTargetClass(Touch.class)
84 Touch.scrollTo(tv, layout, width - tv.getWidth() - 1, 0);
94 Touch.scrollTo(tv, layout, width + 100, 5);
103 Touch.scrollTo(tv, layout, width - 10, 5);
158 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event1);
166 assertEquals(0, Touch.getInitialScrollX(tv, spannable));
167 assertEquals(0, Touch.getInitialScrollY(tv, spannable));
172 mReturnFromTouchEvent = Touch.onTouchEvent(tv, spannable, event2);
180 assertEquals(0, Touch.getInitialScrollX(tv, spannable))
    [all...]
  /external/webkit/WebKit/android/plugins/
PluginDebugAndroid.cpp 33 // used for key, mouse, and touch inputs
37 "move", /* touch only */
38 "cancel", /* touch only */
39 "longPress", /* touch only */
40 "doubleTap" /* touch only */
87 evt->data.touch.x, evt->data.touch.y);
94 if(evt->data.touch.action < ARRAY_COUNT(inputActions)) {
96 anp_logPlugin("%p EVENT::TOUCH[%d] time=%d action=%s [%d %d]",
98 inputActions[evt->data.touch.action], evt->data.touch.x
    [all...]
  /external/blktrace/doc/
Makefile 6 @touch blktrace.tex
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/sdk/
config_sample.xml 27 <d:touch-type>notouch</d:touch-type>
89 <d:config name="touch-type-notouch">
90 <d:touch-type>notouch</d:touch-type>
92 <d:config name="touch-type-stylus">
93 <d:touch-type>stylus</d:touch-type>
95 <d:config name="touch-type-finger">
96 <d:touch-type>finger</d:touch-type>
    [all...]
  /frameworks/base/core/java/android/widget/
SeekBar.java 25 * A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch
39 * touch gesture or arrow key/trackball as well as changes that were initiated
56 * Notification that the user has started a touch gesture. Clients may want to use this
58 * @param seekBar The SeekBar in which the touch gesture began
63 * Notification that the user has finished a touch gesture. Clients may want to use this
65 * @param seekBar The SeekBar in which the touch gesture began
95 * provides notifications of when the user starts and stops a touch gesture within the SeekBar.
  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 34 * touch happened
36 * touch happened
62 * original touch happened
64 * original touch happened
80 * original touch happened
82 * original touch happened
  /packages/apps/Protips/res/values/
arrays.xml 31 | Touch the Launcher icon. | |___|
37 Touch the Launcher icon. @drawable/all_apps</item>
41 Touch &amp; hold an app in the Launcher until it vibrates.</item>
45 Touch &amp; hold an item and when it vibrates, drag it where you want.</item>
49 Touch &amp; hold an item and when it vibrates, drag it to the Trash icon. @drawable/trash</item>
59 Touch &amp; hold it and when it vibrates, drag it to the Trash icon.</item>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/
TouchScreenQualifier.java 26 * Resource Qualifier for Touch Screen type.
30 public static final String NAME = "Touch Screen";
38 NOTOUCH("notouch", "No Touch"), //$NON-NLS-1$
73 public static int getIndex(TouchScreenType touch) {
76 if (t == touch) {
123 return IconFactory.getInstance().getIcon("touch"); //$NON-NLS-1$
  /sdk/files/
devices.xml 12 <d:touch-type>finger</d:touch-type>
43 <d:touch-type>finger</d:touch-type>
68 <d:touch-type>finger</d:touch-type>
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchSetSelectionTest.java 17 package android.widget.gridview.touch;
29 * Tests setting the selection in touch mode
59 assertEquals("Selection still available after touch", -1,
  /bionic/
CleanSpec.mk 16 # If you don't need to do a full clean build but would like to touch
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
35 # touch step and add it to the end of the list.
  /bootable/bootloader/legacy/
CleanSpec.mk 16 # If you don't need to do a full clean build but would like to touch
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
35 # touch step and add it to the end of the list.
  /bootable/diskinstaller/
CleanSpec.mk 16 # If you don't need to do a full clean build but would like to touch
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
35 # touch step and add it to the end of the list.
  /bootable/recovery/
CleanSpec.mk 16 # If you don't need to do a full clean build but would like to touch
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
25 # Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with
35 # touch step and add it to the end of the list.

Completed in 3991 milliseconds

1 2 3 4 5 6 7 8 91011>>