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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/LegacyCamera/src/com/android/camera/
ShutterButton.java 27 * pressed state changes.
31 * A callback to be invoked when a ShutterButton's pressed state changes.
35 * Called when a ShutterButton has been pressed.
37 * @param pressed The ShutterButton that was pressed.
39 void onShutterButtonFocus(boolean pressed);
56 * onPressed listener doesn't always get called when the pressed state
62 final boolean pressed = isPressed();
63 if (pressed != mOldPressed) {
64 if (!pressed) {
    [all...]
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
KeyboardTest.java 54 // At first, both "pressed" and "on" must be false.
55 assertFalse(nonStickyKey.pressed);
56 assertFalse(stickyKey.pressed);
60 // Pressing the key must flip the "pressed" state only.
63 assertTrue(nonStickyKey.pressed);
64 assertTrue(stickyKey.pressed);
68 // Releasing the key inside the key area must flip the "pressed" state and toggle the "on"
72 assertFalse(nonStickyKey.pressed);
73 assertFalse(stickyKey.pressed);
77 // Pressing the key again must flip the "pressed" state only
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
ShutterButton.java 36 * pressed state changes.
47 * A callback to be invoked when a ShutterButton's pressed state changes.
51 * Called when a ShutterButton has been pressed.
53 * @param pressed The ShutterButton that was pressed.
55 void onShutterButtonFocus(boolean pressed);
134 * onPressed listener doesn't always get called when the pressed state
140 final boolean pressed = isPressed();
141 if (pressed != mOldPressed) {
142 if (!pressed) {
    [all...]
  /frameworks/base/core/java/android/widget/
DoubleDigitManager.java 35 * @param timeoutInMillis How long after the first digit is pressed does
45 * Report to this manager that a digit was pressed.
75 * The callback to indicate what is going on with the digits pressed.
80 * A digit was pressed, and there are no intermediate digits.
81 * @param digit The digit pressed.
89 * A single digit was pressed, and it is 'the final answer'.
90 * - a single digit pressed, and the timeout expires.
91 * - a single digit pressed, and {@link #singleDigitIntermediate}
98 * The user pressed digit1, then digit2 within the timeout.
  /external/kernel-headers/original/uapi/linux/
keychord.h 29 * keychord combination is pressed. A keychord is signalled when
30 * all of the keys in the keycode list are in the pressed state.
31 * The order in which the keys are pressed does not matter.
33 * list are pressed.
41 * when this keychord is pressed.
  /external/chromium-trace/catapult/third_party/polymer/components/core-focusable/
core-focusable.js 5 * Elements using this mixin will receive attributes reflecting the focus, pressed
40 * @attribute pressed
44 pressed: {value: false, reflect: true},
93 this.pressed = true;
115 this.pressed = false;
123 if (!this.pressed) {
  /developers/build/prebuilts/gradle/BasicAccessibility/Application/src/main/res/values/
strings.xml 19 <string name="composeButtonPressed">(Compose button pressed.)</string>
20 <string name="discardButtonPressed">(Discard button pressed.)</string>
21 <string name="infoButtonPressed">(Info button pressed.)</string>
  /developers/samples/android/ui/accessibility/BasicAccessibility/Application/src/main/res/values/
strings.xml 19 <string name="composeButtonPressed">(Compose button pressed.)</string>
20 <string name="discardButtonPressed">(Discard button pressed.)</string>
21 <string name="infoButtonPressed">(Info button pressed.)</string>
  /development/samples/browseable/BasicAccessibility/res/values/
strings.xml 19 <string name="composeButtonPressed">(Compose button pressed.)</string>
20 <string name="discardButtonPressed">(Discard button pressed.)</string>
21 <string name="infoButtonPressed">(Info button pressed.)</string>
  /packages/inputmethods/OpenWnn/res/values/
attrs.xml 21 possible states: normal, pressed, checkable, checkable+pressed, checkable+checked,
22 checkable+checked+pressed. -->
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/
SetupStartIndicatorView.java 61 updateIndicatorView(true /* pressed */);
65 updateIndicatorView(false /* pressed */);
71 // public void setPressed(final boolean pressed) {
72 // super.setPressed(pressed);
73 // updateIndicatorView(pressed);
76 private void updateIndicatorView(final boolean pressed) {
78 mIndicatorView.setPressed(pressed);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TimerProxy.java 46 * Start a timer to detect a long pressed key.
48 * long pressed shift key.
55 * Cancel timers for detecting a long pressed key and a long press shift key.
61 * Cancel a timer for detecting a long pressed shift key.
66 * Cancel timers for detecting repeated key press, long pressed key, and long pressed shift key.
  /external/opencv3/samples/cpp/tutorial_code/viz/
launching_viz.cpp 40 /// Event loop is over when pressed q, Q, e, E
49 /// Event loop is over when pressed q, Q, e, E
52 /// Event loop is over when pressed q, Q, e, E
  /frameworks/base/core/res/res/drawable/
seekbar_thumb_material_anim.xml 35 android:id="@+id/pressed"
43 android:toId="@+id/pressed"
46 android:fromId="@+id/pressed"
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyButtonRipple.java 160 boolean pressed = false;
163 pressed = true;
167 if (pressed != mPressed) {
168 setPressed(pressed);
169 mPressed = pressed;
186 public void setPressed(boolean pressed) {
188 setPressedHardware(pressed);
190 setPressedSoftware(pressed);
205 private void setPressedSoftware(boolean pressed) {
206 if (pressed) {
    [all...]
  /external/autotest/client/site_tests/touch_TouchscreenScroll/
README 5 Single finger is pressed to touchscreen and then dragged in the direction
  /frameworks/base/core/java/android/view/
HapticFeedbackConstants.java 34 * The user has pressed on a virtual on-screen key.
39 * The user has pressed a soft keyboard key.
44 * The user has pressed either an hour or minute tick of a Clock.
49 * The user has pressed either a day or month or year date of a Calendar.
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
nunchuck.cxx 68 << ((nunchuck->buttonC) ? "pressed" : "not pressed") << endl;
70 << ((nunchuck->buttonZ) ? "pressed" : "not pressed") << endl;
  /hardware/bsp/intel/peripheral/libupm/examples/java/
NUNCHUCKSample.java 56 System.out.println("Button C pressed");
58 System.out.println("Button C not pressed");
61 System.out.println("Button Z pressed");
63 System.out.println("Button Z not pressed");
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
nunchuck.js 54 ((nunchuck_obj.buttonC) ? "pressed" : "not pressed");
57 ((nunchuck_obj.buttonZ) ? "pressed" : "not pressed");
  /packages/apps/DevCamera/res/drawable/
focus_square_button.xml 3 <!-- pressed state -->
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
FabDrawable.java 33 * When not focused or pressed, the fab will be a solid circle of the color specified with
34 * {@link #setFabColor(int)}. When it is pressed or focused, the fab will grow or shrink
92 * or pressed and will be the color of the interior circle when selected
93 * or pressed.
101 * or pressed.
132 boolean pressed = false;
138 pressed = true;
142 if ((focused || pressed) && mStrokeAnimatorIsReversing) {
145 } else if (!(focused || pressed) && !mStrokeAnimatorIsReversing) {
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDVideoCallView.h 21 // Called when the camera switch button is pressed.
24 // Called when the hangup button is pressed.
  /docs/source.android.com/src/devices/input/
key-character-map-files.jd 157 are pressed.</p>
161 behavior (character that should be typed) when the key is pressed and all of the
164 the either the LEFT SHIFT or RIGHT SHIFT modifier is pressed.</p>
166 when the both RIGHT SHIFT and RIGHT ALT modifiers are pressed together.</p>
171 <li><code>shift</code>: Applies when either the LEFT SHIFT or RIGHT SHIFT modifier is pressed.</li>
172 <li><code>lshift</code>: Applies when the LEFT SHIFT modifier is pressed.</li>
173 <li><code>rshift</code>: Applies when the RIGHT SHIFT modifier is pressed.</li>
174 <li><code>alt</code>: Applies when either the LEFT ALT or RIGHT ALT modifier is pressed.</li>
175 <li><code>lalt</code>: Applies when the LEFT ALT modifier is pressed.</li>
176 <li><code>ralt</code>: Applies when the RIGHT ALT modifier is pressed.</li
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tmschema.h 510 TM_STATE(3,PBS,PRESSED)
557 TM_STATE(3,CHEVS,PRESSED)
572 TM_STATE(3,TS,PRESSED)
625 TM_STATE(3,HIS,PRESSED)
631 TM_STATE(3,HILS,PRESSED)
637 TM_STATE(3,HIRS,PRESSED)
757 TM_STATE(3,TUS,PRESSED)
765 TM_STATE(3,TUBS,PRESSED)
773 TM_STATE(3,TUTS,PRESSED)
781 TM_STATE(3,TUVS,PRESSED)
    [all...]

Completed in 2148 milliseconds

1 2 3 4 5 6 7 8 91011>>