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

12 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/
NewProjectAction.java 21 import org.eclipse.jface.action.IAction;
25 * Delegate for the toolbar action "Android Project".
33 protected IWorkbenchWizard instanciateWizard(IAction action) {
NewTestProjectAction.java 21 import org.eclipse.jface.action.IAction;
25 * Delegate for the toolbar action "Android Test Project".
31 protected IWorkbenchWizard instanciateWizard(IAction action) {
NewXmlFileAction.java 21 import org.eclipse.jface.action.IAction;
25 * Delegate for the toolbar action "Android Project" or for the
33 protected IWorkbenchWizard instanciateWizard(IAction action) {
AvdManagerAction.java 24 import org.eclipse.jface.action.IAction;
32 * Delegate for the toolbar/menu action "Android AVD Manager".
45 public void run(IAction action) {
70 public void selectionChanged(IAction action, ISelection selection) {
74 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
  /packages/apps/Gallery3D/src/com/cooliris/cache/
BootReceiver.java 35 final String action = intent.getAction(); local
36 Log.i(TAG, "Got intent with action " + action);
37 if (Intent.ACTION_MEDIA_SCANNER_FINISHED.equals(action)) {
39 } else if (Intent.ACTION_MEDIA_MOUNTED.equals(action)) {
41 } else if (action.equals(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE)) {
47 } else if (action.equals(Intent.ACTION_MEDIA_EJECT)) {
  /libcore/luni/src/main/java/java/security/
AccessController.java 65 * Returns the result of executing the specified privileged action. Only the
72 * of the {@code PrivilegedAction#run()} method of the given action, it will
75 * @param action
76 * the action to be executed with privileges
77 * @return the result of executing the privileged action
79 * if the specified action is {@code null}
81 public static <T> T doPrivileged(PrivilegedAction<T> action) {
82 if (action == null) {
83 throw new NullPointerException("action == null");
85 return doPrivileged(action, null)
    [all...]
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 22 action=${1:-0}
30 # If a lease gets stripped of a name, we see that as an "old" action
32 if [ ${DNSMASQ_OLD_HOSTNAME} ] && [ ${action} = old ] ; then
33 action=del
37 # action init is not relevant, and will only be seen when leasefile-ro is set.
38 if [ ${action} = init ] ; then
56 if [ ${action} != del ] ; then
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/
driver_test.py 65 optparser.add_option('-p', '--platform', action='store', default='mac',
67 optparser.add_option('-t', '--target', action='store', default='Release',
69 optparser.add_option('', '--timeout', action='store', default='2000',
71 optparser.add_option('', '--wrapper', action='store')
72 optparser.add_option('', '--no-pixel-tests', action='store_true',
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 55 String action = intent.getAction(); local
56 if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {
65 else if (AppWidgetManager.ACTION_APPWIDGET_DELETED.equals(action)) {
72 else if (AppWidgetManager.ACTION_APPWIDGET_ENABLED.equals(action)) {
75 else if (AppWidgetManager.ACTION_APPWIDGET_DISABLED.equals(action)) {
  /external/webkit/WebCore/platform/chromium/
ContextMenuChromium.cpp 68 ContextMenuItem* ContextMenu::itemWithAction(unsigned action)
71 if (m_items[i].action() == static_cast<ContextMenuAction>(action))
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedActionTest.java 43 MyPrivilegedAction action = new MyPrivilegedAction(); local
44 String result = AccessController.doPrivileged(action);
46 assertTrue("run method was not called", action.called);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CorporaUpdateReceiver.java 35 String action = intent.getAction(); local
36 if (SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED.equals(action)
37 || SearchManager.INTENT_ACTION_SEARCH_SETTINGS_CHANGED.equals(action)) {
  /cts/tests/src/android/app/cts/
MockAlarmReceiver.java 37 final String action = intent.getAction(); local
38 if (action.equals(MOCKACTION)) {
  /external/webkit/WebCore/platform/haiku/
ContextMenuItemHaiku.cpp 52 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
56 m_platformDescription = new BMenuItem(BString(title).String(), new BMessage(action));
60 m_platformDescription = new BMenuItem(subMenu->platformDescription(), new BMessage(action));
88 ContextMenuAction theAction = action();
106 ContextMenuAction ContextMenuItem::action() const function in class:ContextMenuItem
113 void ContextMenuItem::setAction(ContextMenuAction action)
116 m_platformDescription->Message()->what = action;
142 m_platformDescription = new BMenuItem(menu->platformDescription(), new BMessage(action()));
  /external/webkit/WebKit/android/plugins/
PluginDebugAndroid.cpp 72 if(evt->data.key.action < ARRAY_COUNT(inputActions)) {
73 anp_logPlugin("%p EVENT::KEY[%d] time=%d action=%s code=%d vcode=%d unichar=%d repeat=%d mods=%x",
74 npp, returnVal, elapsedTime, inputActions[evt->data.key.action],
79 PLUGIN_LOG("%p EVENT::KEY[%d] unknown action", npp, returnVal);
84 if(evt->data.mouse.action < ARRAY_COUNT(inputActions)) {
85 anp_logPlugin("%p EVENT::MOUSE[%d] time=%d action=%s [%d %d]", npp,
86 returnVal, elapsedTime, inputActions[evt->data.mouse.action],
89 anp_logPlugin("%p EVENT::MOUSE[%d] unknown action", npp, returnVal);
94 if(evt->data.touch.action < ARRAY_COUNT(inputActions)) {
96 anp_logPlugin("%p EVENT::TOUCH[%d] time=%d action=%s [%d %d]"
    [all...]
  /packages/apps/Stk/src/com/android/stk/
BootCompletedReceiver.java 32 String action = intent.getAction(); local
35 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
  /system/core/sh/
trap.c 134 char *action; local
150 action = NULL;
168 action = *ap++;
181 if (action)
182 action = savestr(action);
187 trap[signo] = action;
234 int action; local
240 action = S_DFL;
242 action = S_CATCH
    [all...]
  /external/iproute2/tc/
m_gact.c 46 fprintf(stderr, "Usage: ... gact <ACTION> [RAND] [INDEX]\n");
49 "\tRAND := random <RANDTYPE> <ACTION> <VAL>\n"
55 fprintf(stderr, "Usage: ... gact <ACTION> [INDEX]\n");
87 fprintf(stderr,"bad action type %s\n",*argv);
98 int action = TC_POLICE_RECLASSIFY; local
107 p.action = TC_POLICE_RECLASSIFY;
116 action = get_act(&argv);
117 if (action != -10) {
118 p.action = action;
    [all...]
  /external/webkit/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 63 SEL action = NULL;
68 action = @selector(copy:);
72 action = @selector(goBack:);
76 action = @selector(goForward:);
80 action = @selector(stopLoading:);
84 action = @selector(reload:);
88 action = @selector(_searchWithSpotlightFromMenu:);
92 action = @selector(_searchWithGoogleFromMenu:);
96 action = @selector(_lookUpInDictionaryFromMenu:);
100 action = @selector(_openFrameInNewWindowFromMenu:)
    [all...]
  /external/webkit/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 179 m_view->setHtml(QString("<html><body><form name='tstform' action='data:text/html,foo'method='get'>"
812 QVERIFY(page->action(QWebPage::MoveToNextChar) != 0);
813 QVERIFY(page->action(QWebPage::MoveToPreviousChar) != 0);
814 QVERIFY(page->action(QWebPage::MoveToNextWord) != 0);
815 QVERIFY(page->action(QWebPage::MoveToPreviousWord) != 0);
816 QVERIFY(page->action(QWebPage::MoveToNextLine) != 0);
817 QVERIFY(page->action(QWebPage::MoveToPreviousLine) != 0);
818 QVERIFY(page->action(QWebPage::MoveToStartOfLine) != 0);
819 QVERIFY(page->action(QWebPage::MoveToEndOfLine) != 0);
820 QVERIFY(page->action(QWebPage::MoveToStartOfBlock) != 0)
1227 QAction *action = page->action(QWebPage::Back); local
    [all...]
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
TestAppWidgetProvider.java 37 String action = intent.getAction(); local
40 if (AppWidgetManager.ACTION_APPWIDGET_ENABLED.equals(action)) {
43 else if (AppWidgetManager.ACTION_APPWIDGET_DISABLED.equals(action)) {
46 else if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {
  /frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/
TestAppWidgetProvider.java 34 String action = intent.getAction(); local
37 if (AppWidgetManager.ACTION_APPWIDGET_ENABLED.equals(action)) {
40 else if (AppWidgetManager.ACTION_APPWIDGET_DISABLED.equals(action)) {
43 else if (AppWidgetManager.ACTION_APPWIDGET_UPDATE.equals(action)) {
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 36 String action = intent.getAction(); local
40 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
47 if (action.equals(Intent.ACTION_MEDIA_MOUNTED) &&
50 } else if (action.equals(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE) &&
  /sdk/draw9patch/src/com/android/draw9patch/ui/action/
BackgroundAction.java 17 package com.android.draw9patch.ui.action;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/
BackgroundAction.java 17 package com.android.hierarchyviewer.ui.action;

Completed in 385 milliseconds

12 3 4 5 6 7 8 91011>>