Searched refs:action (Results 101 - 125 of 583) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskTapPointerEventListener.java66 final int action = motionEvent.getAction();
67 switch (action & MotionEvent.ACTION_MASK) {
142 final int action = motionEvent.getAction() & MotionEvent.ACTION_MASK;
146 if (mInGestureDetection || action == MotionEvent.ACTION_DOWN && isTouchInside) {
150 && action != MotionEvent.ACTION_UP
151 && action != MotionEvent.ACTION_POINTER_UP
152 && action != MotionEvent.ACTION_CANCEL;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyTester.java83 String action = intent.getAction();
84 if (DBG) log("sIntentReceiver.onReceive: action=" + action);
85 if (action.equals(mPhone.getActionDetached())) {
88 } else if (action.equals(mPhone.getActionAttached())) {
91 } else if (action.equals(ACTION_TEST_CONFERENCE_EVENT_PACKAGE)) {
94 } else if (action.equals(ACTION_TEST_DIALOG_EVENT_PACKAGE)) {
98 if (DBG) log("onReceive: unknown action=" + action);
110 log("register for intent action
[all...]
H A DPhoneStateIntentReceiver.java163 String action = intent.getAction();
166 if (TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED.equals(action)) {
173 } else if (TelephonyManager.ACTION_PHONE_STATE_CHANGED.equals(action)) {
185 } else if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearSmoothScroller.java106 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { argument
112 action.update(-dx, -dy, time, mDecelerateInterpolator);
120 protected void onSeekTargetStep(int dx, int dy, RecyclerView.State state, Action action) { argument
135 updateActionForInterimTarget(action);
225 protected void updateActionForInterimTarget(Action action) { argument
233 action.jumpTo(target);
246 action.update((int) (mInterimTargetDx * TARGET_SEEK_EXTRA_SCROLL_RATIO)
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DCustomTile.java70 private CustomTile(QSTileHost host, String action) { argument
73 mComponent = ComponentName.unflattenFromString(action);
259 MetricsLogger.action(mContext, getMetricsCategory(), mComponent.getPackageName());
331 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
332 if (action.isEmpty()) {
333 throw new IllegalArgumentException("Empty custom tile spec action");
335 return ComponentName.unflattenFromString(action);
342 final String action = spec.substring(PREFIX.length(), spec.length() - 1);
343 if (action.isEmpty()) {
344 throw new IllegalArgumentException("Empty custom tile spec action");
[all...]
/frameworks/base/tools/aapt2/link/
H A DManifestFixer.cpp108 intentFilterAction[u"action"];
117 manifestAction.action(verifyManifest);
118 manifestAction.action([&](xml::Element* el) -> bool {
143 manifestAction[u"uses-sdk"].action([&](xml::Element* el) -> bool {
163 manifestAction[u"instrumentation"].action([&](xml::Element* el) -> bool {
190 applicationAction.action(optionalNameIsJavaClassName);
193 applicationAction[u"activity"].action(requiredNameIsJavaClassName);
202 applicationAction[u"service"].action(requiredNameIsJavaClassName);
207 applicationAction[u"receiver"].action(requiredNameIsJavaClassName);
212 applicationAction[u"provider"].action(requiredNameIsJavaClassNam
[all...]
/frameworks/base/core/java/android/widget/
H A DViewFlipper.java71 final String action = intent.getAction();
72 if (Intent.ACTION_SCREEN_OFF.equals(action)) {
75 } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DSuggestionsPopupwindowUtils.java34 import android.support.test.espresso.action.GeneralLocation;
35 import android.support.test.espresso.action.Press;
36 import android.support.test.espresso.action.Tap;
95 * Click action to avoid checking ViewClickAction#getConstraints().
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerActivity.java39 final String action = getIntent().getAction();
40 boolean showDemoMode = action != null && action.equals(
41 "com.android.settings.action.DEMO_MODE");
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DMockUtils.java69 public static Intent checkIntentAction(final String action) { argument
74 return Objects.equal(((Intent) item).getAction(), action);
79 description.appendText("Intent: action=\"" + action + "\"");
/frameworks/av/drm/libdrmframework/include/
H A DDrmManager.h73 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
90 int checkRightsStatus(int uniqueId, const String8& path, int action);
92 status_t consumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve);
98 int uniqueId, const String8& path, int action, const ActionDescription& description);
H A DDrmManagerClientImpl.h79 * @param[in] action Actions defined such as,
86 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
175 * @param[in] action Action to perform (Action::DEFAULT, Action::PLAY, etc)
179 virtual int checkRightsStatus(int uniqueId, const String8& path, int action);
188 * @param[in] action Action to perform. (Action::DEFAULT, Action::PLAY, etc)
193 virtual status_t consumeRights(int uniqueId, sp<DecryptHandle> &decryptHandle, int action, bool reserve);
200 * @param[in] playbackStatus Playback action (Playback::START, Playback::STOP, Playback::PAUSE)
210 * Validates whether an action on the DRM content is allowed or not.
214 * @param[in] action Action to validate (Action::PLAY, Action::TRANSFER, etc)
215 * @param[in] description Detailed description of the action
[all...]
H A DDrmManagerService.h79 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
96 int checkRightsStatus(int uniqueId, const String8& path,int action);
98 status_t consumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve);
104 int action, const ActionDescription& description);
H A DIDrmManagerService.h97 int uniqueId, const String8* path, const int action) = 0;
115 virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0;
118 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) = 0;
125 int action, const ActionDescription& description) = 0;
186 virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action);
203 virtual int checkRightsStatus(int uniqueId, const String8& path, int action);
206 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve);
212 int uniqueId, const String8& path, int action, const ActionDescription& description);
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DIDrmEngine.h97 * @param[in] action Actions defined such as,
105 int uniqueId, const String8* path, int action) = 0;
194 * @param[in] action Action to perform (Action::DEFAULT, Action::PLAY, etc)
198 virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0;
207 * @param[in] action Action to perform. (Action::DEFAULT, Action::PLAY, etc)
213 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) = 0;
220 * @param[in] playbackStatus Playback action (Playback::START, Playback::STOP, Playback::PAUSE)
230 * Validates whether an action on the DRM content is allowed or not.
234 * @param[in] action Action to validate (Action::PLAY, Action::TRANSFER, etc)
235 * @param[in] description Detailed description of the action
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/include/
H A DFwdLockEngine.h50 * @param action Actions defined such as,
57 DrmConstraints* onGetConstraints(int uniqueId, const String8* path, int action);
180 * @param action Action to perform (Action::DEFAULT, Action::PLAY, etc)
186 int action);
195 * @param action Action to perform. (Action::DEFAULT, Action::PLAY, etc)
202 int action,
210 * @param playbackStatus Playback action (Playback::START, Playback::STOP, Playback::PAUSE)
229 * Validates whether an action on the DRM content is allowed or not.
233 * @param action Action to validate (Action::PLAY, Action::TRANSFER, etc)
234 * @param description Detailed description of the action
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DIAccessibilityServiceConnection.aidl57 int action, in Bundle arguments, int interactionId,
66 boolean performGlobalAction(int action);
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSession.java160 * @param action Name of the command to be performed. This <em>must</em>
165 public void appPrivateCommand(String action, Bundle data); argument
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DDataConnectionStats.java71 final String action = intent.getAction();
72 if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) {
75 } else if (action.equals(ConnectivityManager.CONNECTIVITY_ACTION) ||
76 action.equals(ConnectivityManager.INET_CONDITION_ACTION)) {
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DDeviceIdleJobsController.java82 final String action = intent.getAction();
83 if (PowerManager.ACTION_LIGHT_DEVICE_IDLE_MODE_CHANGED.equals(action)
84 || PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED.equals(action)) {
89 } else if (PowerManager.ACTION_POWER_SAVE_WHITELIST_CHANGED.equals(action)) {
/frameworks/native/services/inputflinger/
H A DInputListener.h59 int32_t action; member in struct:android::NotifyKeyArgs
69 int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode,
86 int32_t action; member in struct:android::NotifyMotionArgs
103 int32_t action, int32_t actionButton, int32_t flags,
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DViewPagerActions.java22 import android.support.test.espresso.action.CoordinatesProvider;
23 import android.support.test.espresso.action.GeneralClickAction;
24 import android.support.test.espresso.action.Press;
25 import android.support.test.espresso.action.Tap;
/frameworks/support/design/tests/src/android/support/design/widget/
H A DAppBarLayoutBaseTest.java27 import android.support.test.espresso.action.CoordinatesProvider;
28 import android.support.test.espresso.action.GeneralSwipeAction;
29 import android.support.test.espresso.action.Press;
30 import android.support.test.espresso.action.Swipe;
/frameworks/av/drm/drmserver/
H A DDrmManagerService.cpp159 int uniqueId, const String8* path, const int action) {
161 return mDrmManager->getConstraints(uniqueId, path, action);
203 int uniqueId, const String8& path, int action) {
205 return mDrmManager->checkRightsStatus(uniqueId, path, action);
209 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
214 return mDrmManager->consumeRights(uniqueId, decryptHandle, action, reserve);
228 int action, const ActionDescription& description) {
230 return mDrmManager->validateAction(uniqueId, path, action, description);
158 getConstraints( int uniqueId, const String8* path, const int action) argument
202 checkRightsStatus( int uniqueId, const String8& path, int action) argument
208 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
226 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodSession.aidl46 void appPrivateCommand(String action, in Bundle data);

Completed in 1501 milliseconds

1234567891011>>