HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 201 - 225 of 2353) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 31 public class CategoryAdapter extends ArrayAdapter<Action> {
55 Action action = getItem(i); local
56 action.clearBitmap();
70 public void add(Action action) {
71 super.add(action);
72 action.setAdapter(this);
97 Action action = getItem(position) local
156 Action action = getItem(i); local
168 Action action = getItem(i); local
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionServiceSystemTest.java 17 package com.android.messaging.datamodel.action;
34 import com.android.messaging.datamodel.action.ActionMonitor.ActionCompletedListener;
35 import com.android.messaging.datamodel.action.ActionMonitor.ActionExecutedListener;
36 import com.android.messaging.datamodel.action.ActionTestHelpers.ResultTracker;
37 import com.android.messaging.datamodel.action.ActionTestHelpers.StubBackgroundWorker;
38 import com.android.messaging.datamodel.action.ActionTestHelpers.StubConnectivityUtil;
39 import com.android.messaging.datamodel.action.ActionTestHelpers.StubLoader;
55 final Action action, final Object data, final Object result) {
56 final TestChatAction test = (TestChatAction) action;
103 final TestChatAction action = parcel.readParcelable(mContext.getClassLoader()); local
148 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); local
195 final TestChatAction action = local
237 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 230 ShowInPackageViewAction action = new ShowInPackageViewAction(site); local
231 action.run(fragment);
232 // This action's run() doesn't provide the status (although internally it could)
301 OpenNewPackageWizardAction action = new OpenNewPackageWizardAction(); local
304 action.setSelection(new StructuredSelection(project));
305 action.run();
307 IJavaElement element = action.getCreatedElement();
  /bionic/libc/kernel/uapi/xen/
gntdev.h 61 __u32 action; member in struct:ioctl_gntdev_unmap_notify
  /cts/hostsidetests/devicepolicy/app/WifiConfigCreator/src/com/android/cts/deviceowner/wificonfigcreator/
WifiConfigCreatorActivity.java 47 String action = intent.getAction(); local
48 if (ACTION_CREATE_WIFI_CONFIG.equals(action)) {
53 } else if (ACTION_UPDATE_WIFI_CONFIG.equals(action)) {
59 } else if (ACTION_REMOVE_WIFI_CONFIG.equals(action)) {
65 Log.i(TAG, "Unknown command: " + action);
  /cts/tests/tests/content/src/android/content/cts/
ImageCaptureActivity.java 33 public static final String ACTION_FILE_READY = "android.content.cts.action.file_ready";
40 // Check action.
41 String action = intent.getAction(); local
42 if ((MediaStore.ACTION_IMAGE_CAPTURE.equals(action)
43 || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(action)
44 || MediaStore.ACTION_VIDEO_CAPTURE.equals(action))) {
ReadableFileReceiverActivity.java 35 = "android.content.cts.action.CONFIRM_READ_SUCCESS";
42 // Check action.
43 String action = intent.getAction(); local
44 if (Intent.ACTION_SEND.equals(action)
45 || Intent.ACTION_SEND_MULTIPLE.equals(action)) {
  /cts/tests/tests/view/src/android/view/cts/
ContentPaneFocusTest.java 51 ActionBar action = activity.getActionBar(); local
52 if (action == null || !action.isShowing()) {
53 // No action bar, so we only needed to make sure that the shortcut didn't cause
74 // Should jump to the action bar after control-<
98 // Now it shouldn't go up to action bar -- it doesn't allow taking focus once left
126 private void sendControlKey(int action) throws Throwable {
128 KeyEvent keyEvent = new KeyEvent(time, time, action, KeyEvent.KEYCODE_CTRL_LEFT, 0,
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
ActionsPresets.java 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
100 builder.addAction(action);
117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
124 wearableOptions.addAction(action);
136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder
    [all...]
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 51 String action = intent.getAction(); local
52 if (Constants.ACTION_SHOW_ALARM.equals(action)) {
54 } else if (Constants.ACTION_DELETE_ALARM.equals(action)) {
56 } else if (Constants.ACTION_RESTART_ALARM.equals(action)) {
59 throw new IllegalStateException("Undefined constant used: " + action);
  /developers/samples/android/connectivity/wifidirect/DirectP2P/Application/src/main/java/com/example/android/wifidirectp2p/
WiFiDirectBroadcastReceiver.java 58 String action = intent.getAction(); local
59 if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) {
72 } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) {
82 } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) {
103 } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) {
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
ActionsPresets.java 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
100 builder.addAction(action);
117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
124 wearableOptions.addAction(action);
136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder
    [all...]
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 51 String action = intent.getAction(); local
52 if (Constants.ACTION_SHOW_ALARM.equals(action)) {
54 } else if (Constants.ACTION_DELETE_ALARM.equals(action)) {
56 } else if (Constants.ACTION_RESTART_ALARM.equals(action)) {
59 throw new IllegalStateException("Undefined constant used: " + action);
  /development/ndk/sources/android/ndk_helper/
gestureDetector.cpp 53 int32_t action = AMotionEvent_getAction( motion_event ); local
54 unsigned int flags = action & AMOTION_EVENT_ACTION_MASK;
98 int32_t action = AMotionEvent_getAction( motion_event ); local
99 unsigned int flags = action & AMOTION_EVENT_ACTION_MASK;
153 int32_t action = AMotionEvent_getAction( event ); local
154 uint32_t flags = action & AMOTION_EVENT_ACTION_MASK;
165 int32_t iIndex = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
180 int32_t index = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
268 int32_t action = AMotionEvent_getAction( event ); local
269 int32_t index = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
MagnificationService.java 94 final int action = event.getAction(); local
95 if (action == KeyEvent.ACTION_UP) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 44 * media item, or action.
63 final String action = intent.getAction(); local
67 if (Intent.ACTION_CREATE_SHORTCUT.equals(action)) {
116 * triggers the desired action within your Activity.
121 // data Uri in order to display a more specific result, or a custom action in order to
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectBroadcastReceiver.java 58 String action = intent.getAction(); local
59 if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) {
72 } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) {
82 } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) {
103 } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) {
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
ActionsPresets.java 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
100 builder.addAction(action);
117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local
124 wearableOptions.addAction(action);
136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder
    [all...]
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/
TimerNotificationService.java 51 String action = intent.getAction(); local
52 if (Constants.ACTION_SHOW_ALARM.equals(action)) {
54 } else if (Constants.ACTION_DELETE_ALARM.equals(action)) {
56 } else if (Constants.ACTION_RESTART_ALARM.equals(action)) {
59 throw new IllegalStateException("Undefined constant used: " + action);
  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 53 String action = intent.getAction(); local
56 if(action.equals(CommonConstants.ACTION_PING)) {
58 } else if (action.equals(CommonConstants.ACTION_SNOOZE)) {
64 } else if (action.equals(CommonConstants.ACTION_DISMISS)) {
73 // Sets up the Snooze and Dismiss action buttons that will appear in the
  /external/bison/src/
gram.h 198 const char *action; member in struct:__anon7215
  /external/blktrace/doc/
blktrace.tex 486 & & action specifiers in section~\ref{sec:act-table} \\ \hline
578 below it in the io stack. The remap action details what exactly is
593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline
627 \subsubsection{\label{sec:act-table}Action Table}
674 Seeing this in action:
684 \paragraph{Default output per action}
    [all...]
  /external/boringssl/src/crypto/lhash/
lhash_test.c 11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
131 unsigned action; local
139 action = rand() % 3;
140 switch (action) {
  /external/icu/icu4c/source/layout/
LigatureSubstProc.cpp 69 LigatureActionEntry action; local
77 action = SWAPL(*ap.getAlias());
84 offset = action & lafComponentOffsetMask;
100 if (action & (lafLast | lafStore)) {
120 } while (!(action & lafLast) && (m>=0) ); // stop if last bit is set, or if run out of items
  /external/kernel-headers/original/uapi/xen/
gntdev.h 28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
141 /* Action(s) to take on unmap */
142 __u32 action; member in struct:ioctl_gntdev_unmap_notify

Completed in 1096 milliseconds

1 2 3 4 5 6 7 891011>>