Searched refs:action (Results 276 - 300 of 583) sorted by relevance

<<11121314151617181920>>

/frameworks/native/libs/input/
H A DInput.cpp57 int32_t action,
66 mAction = action;
218 int32_t action,
234 mAction = action;
515 bool MotionEvent::isTouchEvent(int32_t source, int32_t action) { argument
518 switch (action & AMOTION_EVENT_ACTION_MASK) {
54 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, int32_t metaState, int32_t repeatCount, nsecs_t downTime, nsecs_t eventTime) argument
215 initialize( int32_t deviceId, int32_t source, int32_t action, int32_t actionButton, int32_t flags, int32_t edgeFlags, int32_t metaState, int32_t buttonState, float xOffset, float yOffset, float xPrecision, float yPrecision, nsecs_t downTime, nsecs_t eventTime, size_t pointerCount, const PointerProperties* pointerProperties, const PointerCoords* pointerCoords) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsRow.java49 * Base class for an action comprised of a series of icons.
67 * of valid indices for this action.
76 * of valid indices for this action. The labels are used to define the accessibility
159 * An action displaying icons for play and pause.
196 * An action displaying an icon for fast forward.
243 * An action displaying an icon for rewind.
290 * An action displaying an icon for skip next.
307 * An action displaying an icon for skip previous.
324 * An action displaying an icon for picture-in-picture.
341 * An action displayin
[all...]
H A DSearchBar.java261 public boolean onEditorAction(TextView textView, int action, KeyEvent keyEvent) {
262 if (DEBUG) Log.v(TAG, "onEditorAction: " + action + " event: " + keyEvent);
264 if ((EditorInfo.IME_ACTION_SEARCH == action ||
265 EditorInfo.IME_NULL == action) && null != mSearchBarListener) {
271 if (DEBUG) Log.v(TAG, "Delayed action handling (search)");
276 } else if (EditorInfo.IME_ACTION_NONE == action && null != mSearchBarListener) {
282 if (DEBUG) Log.v(TAG, "Delayed action handling (escape_north)");
286 } else if (EditorInfo.IME_ACTION_GO == action) {
292 if (DEBUG) Log.v(TAG, "Delayed action handling (voice_mode)");
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorCaptionView.java67 * down action is performed on top close or maximize buttons; the reason for that is we want these
174 final int action = event.getAction();
175 if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
196 // Checking for a drag action is started if we aren't dragging already and the
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java137 final String action = intent.getAction();
141 if (action.equals(FullBackup.FULL_BACKUP_INTENT_ACTION)) {
144 } else if (action.equals(FullBackup.FULL_RESTORE_INTENT_ACTION)) {
148 Slog.w(TAG, "Backup/restore confirmation activity launched with invalid action!");
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DPdfManipulationService.java62 String action = intent.getAction();
63 switch (action) {
71 throw new IllegalArgumentException("Invalid intent action:" + action);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsViewTouchHandler.java205 int action = ev.getActionMasked();
206 switch (action) {
260 boolean cancelled = action == MotionEvent.ACTION_CANCEL;
/frameworks/base/services/core/java/com/android/server/policy/
H A DEnableAccessibilityController.java177 final int action = event.getActionMasked();
179 if (action == MotionEvent.ACTION_UP) {
184 switch (action) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhone.java651 private boolean isCfEnable(int action) { argument
652 return (action == CF_ACTION_ENABLE) || (action == CF_ACTION_REGISTRATION);
685 private int getActionFromCFAction(int action) { argument
686 switch(action) {
714 if (DBG) Rlog.d(LOG_TAG, "setCLIR action= " + clirMode);
764 if (DBG) Rlog.d(LOG_TAG, "setCallForwardingOption action=" + commandInterfaceCFAction
865 int action;
867 action = CommandsInterface.CF_ACTION_ENABLE;
870 action
1341 handleTimerInEmergencyCallbackMode(int action) argument
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c199 #define _(entryState, action, probability) {entryState, action, probability, #action, 0},
296 printf("state %d action %s count %u\n",
/frameworks/base/core/java/android/view/
H A DNotificationHeaderView.java70 public boolean performAccessibilityAction(View host, int action, Bundle args) {
71 if (super.performAccessibilityAction(host, action, args)) {
74 if (action == AccessibilityNodeInfo.ACTION_COLLAPSE
75 || action == AccessibilityNodeInfo.ACTION_EXPAND) {
H A DViewParent.java221 * Start an action mode for the specified view with the default type
227 * then it should override this and start the action mode.</p>
229 * @param originalView The source view where the action mode was first invoked
230 * @param callback The callback that will handle lifecycle events for the action mode
231 * @return The new action mode if it was started, null otherwise
238 * Start an action mode of a specific type for the specified view.
243 * then it should override this and start the action mode.</p>
245 * @param originalView The source view where the action mode was first invoked
246 * @param callback The callback that will handle lifecycle events for the action mode
248 * @return The new action mod
620 onNestedPrePerformAccessibilityAction(View target, int action, Bundle arguments) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DZoomButtonsController.java533 int action = event.getAction();
542 if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
556 switch (action) {
665 * triggers some action, for example zooming.
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DDragAction.java28 import android.support.test.espresso.action.CoordinatesProvider;
29 import android.support.test.espresso.action.MotionEvents;
30 import android.support.test.espresso.action.PrecisionDescriber;
31 import android.support.test.espresso.action.Swiper;
H A DTextViewActions.java19 import static android.support.test.espresso.action.ViewActions.actionWithAssertions;
23 import android.support.test.espresso.action.CoordinatesProvider;
24 import android.support.test.espresso.action.Press;
25 import android.support.test.espresso.action.Tap;
42 * Returns an action that clicks on text at an index on the TextView.<br>
57 * Returns an action that clicks by mouse on text at an index on the TextView.<br>
71 * Returns an action that clicks by mouse on text at an index on the TextView.<br>
88 * Returns an action that double-clicks on text at an index on the TextView.<br>
103 * Returns an action that double-clicks by mouse on text at an index on the TextView.<br>
118 * Returns an action tha
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DColorInversionTile.java84 MetricsLogger.action(mContext, getMetricsCategory(), !mState.value);
H A DUserDetailView.java101 MetricsLogger.action(mContext, MetricsEvent.QS_SWITCH_USER);
H A DWorkModeTile.java67 MetricsLogger.action(mContext, getMetricsCategory(), !mState.value);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java108 // Consume action to prevent IME from closing.
135 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_REMOTE_INPUT_SEND,
141 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_REMOTE_INPUT_FAIL,
182 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_REMOTE_INPUT_CLOSE,
217 MetricsLogger.action(mContext, MetricsProto.MetricsEvent.ACTION_REMOTE_INPUT_OPEN,
318 * Tries to find an action in {@param actions} that matches the current pending intent
319 * of this view and updates its state to that of the found action
321 * @return true if a matching action was found, false otherwise
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DBatteryPreference.java85 MetricsLogger.action(getContext(), MetricsEvent.TUNER_BATTERY_PERCENTAGE, v);
H A DPowerNotificationControlsFragment.java62 MetricsLogger.action(getContext(),
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DEnrollClient.java69 MetricsLogger.action(getContext(), MetricsEvent.ACTION_FINGERPRINT_ENROLL);
/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConnectionService.java443 String callId, String action) {
447 Log.w(this, "%s - Cannot find Connection %s", action, callId);
452 String callId, String action) {
456 Log.w(this, "%s - Cannot find Conference %s", action, callId);
442 findConnectionForAction( String callId, String action) argument
451 findConferenceForAction( String callId, String action) argument
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
H A DSinkActivity.java492 String action = intent.getAction();
493 if (action.equals(UsbManager.ACTION_USB_DEVICE_ATTACHED)) {
495 } else if (action.equals(UsbManager.ACTION_USB_DEVICE_DETACHED)) {
497 } else if (action.equals(ACTION_USB_DEVICE_PERMISSION)) {
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h140 void send_broadcast(const std::string& action, const std::vector<std::string>& args);

Completed in 2207 milliseconds

<<11121314151617181920>>