HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 151 - 175 of 1442) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Calculator/src/com/android/calculator2/
EventListener.java 78 int action = keyEvent.getAction(); local
87 if (action == KeyEvent.ACTION_MULTIPLE && keyCode == KeyEvent.KEYCODE_UNKNOWN) {
91 //Calculator.log("KEY " + keyCode + "; " + action);
94 if (action == KeyEvent.ACTION_UP) {
114 if (action == KeyEvent.ACTION_UP) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
SdkManagerAction.java 27 import org.eclipse.jface.action.IAction;
35 * Delegate for the toolbar/menu action "Android SDK Manager".
48 public void run(IAction action) {
127 public void selectionChanged(IAction action, ISelection selection) {
131 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
  /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) {
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/
QuitAction.java 21 import org.eclipse.jface.action.Action;
24 public class QuitAction extends Action {
  /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)) {
438 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)) {
  /external/webkit/Source/WebCore/platform/brew/
ContextMenuItemBrew.cpp 49 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
75 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
102 void ContextMenuItem::setAction(ContextMenuAction action)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebViewFactory.mm 41 - (NSMenuItem *)addItemWithTitle:(NSString *)title action:(SEL)action tag:(int)tag;
46 - (NSMenuItem *)addItemWithTitle:(NSString *)title action:(SEL)action tag:(int)tag
48 NSMenuItem *item = [[[NSMenuItem alloc] initWithTitle:title action:action keyEquivalent:@""] autorelease];
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server_base.py 47 def wait_for_action(self, action):
48 """Repeat the action for 20 seconds or until it succeeds. Returns
52 if action():
54 _log.debug("Waiting for action: %s" % action)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbDisconnectedReceiver.java 53 String action = intent.getAction(); local
54 if (UsbManager.ACTION_USB_DEVICE_DETACHED.equals(action)) {
59 } else if (UsbManager.ACTION_USB_ACCESSORY_DETACHED.equals(action)) {
  /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/Gallery2/src/com/android/gallery3d/app/
PackagesMonitor.java 42 String action = intent.getAction(); local
44 if (Intent.ACTION_PACKAGE_ADDED.equals(action)) {
46 } else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) {
  /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/Stk/src/com/android/stk/
StkCmdReceiver.java 34 String action = intent.getAction(); local
36 if (action.equals(AppInterface.CAT_CMD_ACTION)) {
38 } else if (action.equals(AppInterface.CAT_SESSION_END_ACTION)) {
  /external/chromium/chrome/common/
service_process_util_posix.cc 77 struct sigaction action; local
78 action.sa_sigaction = SigTermHandler;
79 sigemptyset(&action.sa_mask);
80 action.sa_flags = SA_SIGINFO;
81 *success = sigaction(SIGTERM, &action, &old_action_) == 0;
  /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/webkit/Source/WebKit/chromium/scripts/
jsmin.py 50 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
141 def action(self, d): member in class:JavaScriptMinifier
146 action treats a string as a single character. Wow!
147 action recognizes a regular expression if it is preceded by ( or , or =.
189 self.action(3)
193 self.action(1)
195 self.action(2)
198 self.action(1)
200 self.action(3)
203 self.action(1
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionUtils.java 35 String action = suggestion.getSuggestionIntentAction(); local
43 Intent intent = new Intent(action);
71 String action = makeKeyComponent(suggestion.getSuggestionIntentAction()); local
76 int size = action.length() + 2 + data.length() + query.length();
78 .append(action)
  /frameworks/base/core/java/android/text/method/
LinkMovementMethod.java 46 event.getRepeatCount() == 0 && action(CLICK, widget, buffer)) {
57 if (action(UP, widget, buffer)) {
66 if (action(DOWN, widget, buffer)) {
75 if (action(UP, widget, buffer)) {
84 if (action(DOWN, widget, buffer)) {
91 private boolean action(int what, TextView widget, Spannable buffer) { method in class:LinkMovementMethod
191 int action = event.getAction(); local
193 if (action == MotionEvent.ACTION_UP ||
194 action == MotionEvent.ACTION_DOWN) {
211 if (action == MotionEvent.ACTION_UP)
    [all...]
  /external/bluetooth/bluez/gdbus/
polkit.c 35 const char *action, gboolean interaction,
76 const char *action, dbus_uint32_t flags)
89 dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &action);
146 const char *action, gboolean interaction,
174 if (action == NULL)
175 action = "org.freedesktop.policykit.exec";
178 add_arguments(conn, &iter, action, flags);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 167 /** set the "action" for the url, (e.g. GET,POST, DELETE, etc.)
169 * @param action {string} HTTP Action word.
171 this.setAction = function(action) {
172 if (action === undefined) {
173 action="GET";
175 action = action.toUpperCase();
176 if (action.match('[^A-Z]')) {
177 throw ('Invalid action specified for OAuthSimple.setAction')
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 167 /** set the "action" for the url, (e.g. GET,POST, DELETE, etc.)
169 * @param action {string} HTTP Action word.
171 this.setAction = function(action) {
172 if (action === undefined) {
173 action="GET";
175 action = action.toUpperCase();
176 if (action.match('[^A-Z]')) {
177 throw ('Invalid action specified for OAuthSimple.setAction')
    [all...]

Completed in 2783 milliseconds

1 2 3 4 5 67 8 91011>>