HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 276 - 300 of 1466) sorted by null

<<11121314151617181920>>

  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppView.java 96 final int action = ev.getAction(); local
98 switch (action & MotionEvent.ACTION_MASK) {
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestView.java 81 final int action = ev.getAction(); local
83 switch (action & MotionEvent.ACTION_MASK) {
  /frameworks/compile/mclinker/lib/CodeGen/
MCLinker.cpp 415 std::vector<InputAction*>::iterator action, actionEnd = actions.end(); local
416 for (action = actions.begin(); action != actionEnd; ++action) {
417 (*action)->activate(pBuilder.getInputBuilder());
418 delete *action;
  /frameworks/native/cmds/service/
service.cpp 163 char* action = NULL; local
183 if (strcmp(key, "action") == 0)
185 action = value;
219 writeString16(data, action);
280 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
  /frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp 76 const int32_t action = AKEY_EVENT_ACTION_DOWN; local
85 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
105 EXPECT_EQ(action, keyEvent->getAction());
135 const int32_t action = AMOTION_EVENT_ACTION_MOVE; local
166 status = mPublisher->publishMotionEvent(seq, deviceId, source, action, flags, edgeFlags,
188 EXPECT_EQ(action, motionEvent->getAction());
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewPager.java 124 final int action = ev.getAction() & MotionEventCompat.ACTION_MASK; local
126 if (action == MotionEvent.ACTION_CANCEL || action == MotionEvent.ACTION_UP) {
130 switch (action) {
  /frameworks/support/v4/java/android/support/v4/app/
NavUtils.java 73 String action = activity.getIntent().getAction(); local
74 return action != null && !action.equals(Intent.ACTION_MAIN);
  /frameworks/support/v4/kitkat/android/support/v4/app/
NotificationCompatKitKat.java 96 public void addAction(NotificationCompatBase.Action action) {
97 mActionExtrasList.add(NotificationCompatJellybean.writeActionAndGetExtras(b, action));
109 // Add the action extras sparse array if any action was added with extras.
126 public static NotificationCompatBase.Action getAction(Notification notif,
127 int actionIndex, NotificationCompatBase.Action.Factory factory,
129 Notification.Action action = notif.actions[actionIndex]; local
137 action.icon, action.title, action.actionIntent, actionExtras)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
Unwind-sjlj.c 147 _Unwind_Action action = _UA_CLEANUP_PHASE; local
149 action = (_Unwind_Action)(
154 (*c->personality)(1, action, exception_object->exception_class,
211 _Unwind_Action action = local
214 (*stop)(1, action, exception_object->exception_class, exception_object,
233 (*p)(1, action, exception_object->exception_class, exception_object,
UnwindLevel1.c 174 _Unwind_Action action = _UA_CLEANUP_PHASE; local
177 action = (_Unwind_Action)(_UA_CLEANUP_PHASE | _UA_HANDLER_FRAME);
180 (*p)(1, action, exception_object->exception_class, exception_object,
262 _Unwind_Action action = local
265 (*stop)(1, action, exception_object->exception_class, exception_object,
285 (*p)(1, action, exception_object->exception_class, exception_object,
  /packages/apps/Camera2/src/com/android/camera/ui/
MainActivityLayout.java 63 String action = intent.getAction(); local
64 mIsCaptureIntent = (MediaStore.ACTION_IMAGE_CAPTURE.equals(action)
65 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(action)
66 || MediaStore.ACTION_VIDEO_CAPTURE.equals(action));
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 54 String action = intent.getAction(); local
56 if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
70 } else if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
71 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
80 loge("ignoring unprivileged action received " + action);
83 .equals(action)) {
93 loge("ignoring unprivileged action received " + action);
95 } else if (GET_LATEST_CB_AREA_INFO_ACTION.equals(action)) {
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstallerMain.java 71 final String action = intent.getAction(); local
73 if (Credentials.INSTALL_ACTION.equals(action)
74 || Credentials.INSTALL_AS_USER_ACTION.equals(action)) {
78 * There is a special INSTALL_AS_USER action that this activity is
107 } else if (Intent.ACTION_VIEW.equals(action)) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 73 final String action = intent.getAction(); local
81 // The only situation where action could be ACTION_JOIN_COMPLETED is if the
84 if (ACTION_JOIN_COMPLETED.equals(action)) {
89 if (ACTION_SAVE_COMPLETED.equals(action)) {
98 if (Intent.ACTION_EDIT.equals(action)) {
112 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null;
113 mFragment.load(action, uri, getIntent().getExtras());
124 String action = intent.getAction(); local
125 if (Intent.ACTION_EDIT.equals(action)) {
127 } else if (ACTION_SAVE_COMPLETED.equals(action)) {
    [all...]
GroupEditorActivity.java 52 String action = getIntent().getAction(); local
54 if (ACTION_SAVE_COMPLETED.equals(action)) {
63 // Inflate a custom action bar that contains the "done" button for saving changes
76 // Show the custom action bar but hide the home icon and title
91 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null;
92 mFragment.load(action, uri, getIntent().getExtras());
123 String action = intent.getAction(); local
124 if (ACTION_SAVE_COMPLETED.equals(action)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
MotionEventHelper.java 50 int action = e.getAction(); local
76 MotionEvent n = MotionEvent.obtain(downTime, eventTime, action,
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWithDraggableItems.java 68 final int action = ev.getAction(); local
69 switch (action & MotionEvent.ACTION_MASK) {
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewWithDraggableItems.java 68 final int action = ev.getAction(); local
69 switch (action & MotionEvent.ACTION_MASK) {
  /packages/apps/LegacyCamera/src/com/android/camera/
MenuHelper.java 100 String action, className; local
103 action = PANORAMA_CLASS;
107 action = MediaStore.INTENT_ACTION_VIDEO_CAMERA;
111 action = MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA;
118 startCameraActivity(activity, new Intent(action), className);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
AbstractIndicatorButton.java 77 int action = ev.getAction(); local
78 if (action == MotionEvent.ACTION_DOWN && !isOverridden()) {
86 } else if (action == MotionEvent.ACTION_CANCEL) {
ZoomControlBar.java 84 int action = event.getAction(); local
86 switch (action) {
  /packages/apps/Mms/src/com/android/mms/model/
AudioModel.java 127 MediaAction action = MediaAction.NO_ACTIVE_ACTION; local
129 action = MediaAction.START;
134 action = MediaAction.STOP;
136 action = MediaAction.PAUSE;
138 action = MediaAction.SEEK;
142 appendAction(action);
VideoModel.java 168 MediaAction action = MediaAction.NO_ACTIVE_ACTION; local
170 action = MediaAction.START;
178 action = MediaAction.STOP;
183 action = MediaAction.PAUSE;
186 action = MediaAction.SEEK;
191 appendAction(action);
  /packages/apps/Nfc/nci/jni/
RoutingManager.cpp 505 tNFA_EE_ACTION& action = eventData->action; local
506 if (action.trigger == NFC_EE_TRIG_SELECT)
507 ALOGD ("%s: NFA_EE_ACTION_EVT; h=0x%X; trigger=select (0x%X)", fn, action.ee_handle, action.trigger);
508 else if (action.trigger == NFC_EE_TRIG_APP_INIT)
510 tNFC_APP_INIT& app_init = action.param.app_init;
512 action.ee_handle, action.trigger, app_init.len_aid, app_init.len_data);
514 else if (action.trigger == NFC_EE_TRIG_RF_PROTOCOL
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSearch.java 59 String action = intent != null ? intent.getAction() : null; local
65 if (Intent.ACTION_WEB_SEARCH.equals(action) || Intent.ACTION_SEARCH.equals(action)) {

Completed in 4054 milliseconds

<<11121314151617181920>>