HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 76 - 100 of 919) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
FilePermission.java 59 // "canonicalized" action list
62 // the numeric representation of this action list
63 // for implies() to check if one action list is the subset of another.
127 * order if there is more than one action.
129 * @param action
130 * the action name
133 private String toCanonicalActionString(String action) {
134 actions = action.trim().toLowerCase();
136 // get the numerical representation of the action list
139 // convert the mask to a canonical action list
172 String action = tail > 0 ? actionNames.substring(head, tail).trim() local
    [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
AnalogAppWidgetProvider.java 36 String action = intent.getAction(); local
38 if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 38 public MonkeyKeyEvent(int action, int keycode) {
40 mAction = action;
49 public MonkeyKeyEvent(long downTime, long eventTime, int action,
54 mAction = action;
  /external/qemu/hw/
watchdog.h 30 /* Possible values for action parameter. */
59 extern int select_watchdog_action(const char *action);
  /external/webkit/WebKit/qt/WebCoreSupport/
DragClientQt.cpp 54 static inline DragOperation dropActionToDragOperation(Qt::DropActions action)
57 if (action & Qt::CopyAction)
59 if (action & Qt::LinkAction)
61 if (action & Qt::MoveAction)
  /libcore/luni/src/main/java/com/ibm/icu4jni/charset/
NativeConverter.java 116 private static int translateCodingErrorAction(CodingErrorAction action) {
117 if (action == CodingErrorAction.REPORT) {
119 } else if (action == CodingErrorAction.IGNORE) {
121 } else if (action == CodingErrorAction.REPLACE) {
  /packages/apps/Calculator/src/com/android/calculator2/
EventListener.java 82 int action = keyEvent.getAction(); local
91 if (action == KeyEvent.ACTION_MULTIPLE && keyCode == KeyEvent.KEYCODE_UNKNOWN) {
95 //Calculator.log("KEY " + keyCode + "; " + action);
98 if (action == KeyEvent.ACTION_UP) {
118 if (action == KeyEvent.ACTION_UP) {
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 65 final String action = original.getAction(); local
67 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
72 } else if (Intent.ACTION_DEVICE_STORAGE_LOW.equals(action)) {
75 } else if (Intent.ACTION_DEVICE_STORAGE_OK.equals(action)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
ExportAction.java 25 import org.eclipse.jface.action.IAction;
41 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
45 public void run(IAction action) {
60 // and finally do the action
74 public void selectionChanged(IAction action, ISelection selection) {
ExportWizardAction.java 25 import org.eclipse.jface.action.IAction;
42 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
46 public void run(IAction action) {
62 // and finally do the action
82 public void selectionChanged(IAction action, ISelection selection) {
  /cts/tests/src/android/app/cts/
IntentServiceStub.java 68 String action = intent.getAction(); local
69 if (action != null && action.equals(ISS_ADD)) {
LaunchpadActivity.java 180 final String action = getIntent().getAction(); local
181 if (LIFECYCLE_BASIC.equals(action)) {
185 } else if (LIFECYCLE_SCREEN.equals(action)) {
194 } else if (LIFECYCLE_DIALOG.equals(action)) {
277 final String action = getIntent().getAction(); local
281 if (LAUNCH.equals(action)) {
287 } else if (FORWARD_RESULT.equals(action)) {
292 } else if (BAD_PARCELABLE.equals(action)) {
298 } else if (BROADCAST_REGISTERED.equals(action)) {
305 } else if (BROADCAST_LOCAL.equals(action)) {
439 String action = getIntent().getAction(); local
    [all...]
  /cts/tests/tests/permission2/src/android/permission2/cts/
ProtectedBroadcastsTest.java 54 "android.intent.action.SERVICE_STATE",
55 "android.intent.action.RADIO_TECHNOLOGY",
56 "android.intent.action.EMERGENCY_CALLBACK_MODE_CHANGED",
57 "android.intent.action.SIG_STR",
58 "android.intent.action.ANY_DATA_STATE",
59 "android.intent.action.DATA_CONNECTION_FAILED",
60 "android.intent.action.SIM_STATE_CHANGED",
61 "android.intent.action.NETWORK_SET_TIME",
62 "android.intent.action.NETWORK_SET_TIMEZONE",
63 "android.intent.action.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS"
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleBroadcastReceiver.java 40 String action = intent.getAction(); local
41 if (action.equals(Intent.ACTION_TIMEZONE_CHANGED)
42 || action.equals(Intent.ACTION_TIME_CHANGED)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DateView.java 39 String action = intent.getAction();
40 if (action.equals(Intent.ACTION_TIME_TICK)
41 || action.equals(Intent.ACTION_TIMEZONE_CHANGED)) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java 54 String action = intent.getAction(); local
55 in.putExtra("action", action);
57 if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED)) {
  /packages/apps/Phone/src/com/android/phone/
GetPin2Screen.java 69 Intent action = new Intent(); local
70 if (uri != null) action.setAction(uri.toString());
71 setResult(RESULT_OK, action.putExtras(map));
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursorNoDuplicates.java 55 String action = makeKeyComponent(suggestion.getSuggestionIntentAction()); local
60 int size = action.length() + 2 + data.length() + query.length();
62 .append(action)
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 34 String action = intent.getAction(); local
36 if (action.equals(AppInterface.STK_CMD_ACTION)) {
38 } else if (action.equals(AppInterface.STK_SESSION_END_ACTION)) {
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 49 String action = intent.getAction(); local
50 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
52 } else if (action.equals(ConnectivityManager.CONNECTIVITY_ACTION)) {
58 } else if (action.equals(Constants.ACTION_RETRY)) {
60 } else if (action.equals(Constants.ACTION_OPEN)
61 || action.equals(Constants.ACTION_LIST)
62 || action.equals(Constants.ACTION_HIDE)) {
72 String action = intent.getAction(); local
74 if (action.equals(Constants.ACTION_OPEN)) {
76 } else if (action.equals(Constants.ACTION_LIST))
    [all...]
  /libcore/luni/src/main/java/java/net/
SocketPermission.java 30 * action list. The target should identify the host by either indicating the
33 * action list can be made up of one or more of the following actions separated
112 * The action list is a comma-separated list which can consists of the
119 * @param action
120 * the action string of this permission.
122 public SocketPermission(String host, String action) {
125 if (action == null) {
128 if (action.isEmpty()) {
132 setActions(action);
133 actions = toCanonicalActionString(action);
210 String action; local
    [all...]
  /external/icu4c/layout/
LigatureSubstProc.cpp 63 LigatureActionEntry action; local
71 action = SWAPL(*ap++);
77 offset = action & lafComponentOffsetMask;
83 if (action & (lafLast | lafStore)) {
94 } while (!(action & lafLast));
  /external/iproute2/tc/
m_mirred.c 34 fprintf(stderr, "Usage: mirred <DIRECTION> <ACTION> [index INDEX] <dev DEVICENAME> \n");
50 char *mirred_n2a(int action)
52 switch (action) {
82 if (matches(*argv, "action") == 0) {
113 p.action = TC_ACT_PIPE;
122 p.action = TC_ACT_STOLEN;
163 p.action = TC_POLICE_RECLASSIFY;
166 p.action = TC_POLICE_PIPE;
170 p.action = TC_POLICE_SHOT;
173 p.action = TC_POLICE_UNSPEC
    [all...]
  /frameworks/base/core/java/android/text/method/
LinkMovementMethod.java 43 if (action(CLICK, widget, buffer)) {
54 if (action(UP, widget, buffer)) {
63 if (action(DOWN, widget, buffer)) {
72 if (action(UP, widget, buffer)) {
81 if (action(DOWN, widget, buffer)) {
88 private boolean action(int what, TextView widget, Spannable buffer) { method in class:LinkMovementMethod
195 int action = event.getAction(); local
197 if (action == MotionEvent.ACTION_UP ||
198 action == MotionEvent.ACTION_DOWN) {
215 if (action == MotionEvent.ACTION_UP)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/timer/unix/
SDL_systimer.c 153 struct sigaction action; local
156 SDL_memset(&action, 0, sizeof(action));
157 action.sa_handler = HandleAlarm;
158 action.sa_flags = SA_RESTART;
159 sigemptyset(&action.sa_mask);
160 sigaction(SIGALRM, &action, NULL);

Completed in 887 milliseconds

1 2 34 5 6 7 8 91011>>