HomeSort by relevance Sort by last modified time
    Searched refs:addAction (Results 1 - 25 of 289) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherApplication.java 55 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
56 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
60 filter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
61 filter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
62 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
63 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
66 filter.addAction(SearchManager.INTENT_GLOBAL_SEARCH_ACTIVITY_CHANGED);
69 filter.addAction(SearchManager.INTENT_ACTION_SEARCHABLES_CHANGED);
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarQt.cpp 59 QAction* actScrollHere = menu.addAction(QCoreApplication::translate("QWebPage", "Scroll here"));
62 QAction* actScrollTop = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Left edge") : QCoreApplication::translate("QWebPage", "Top"));
63 QAction* actScrollBottom = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Right edge") : QCoreApplication::translate("QWebPage", "Bottom"));
66 QAction* actPageUp = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Page left") : QCoreApplication::translate("QWebPage", "Page up"));
67 QAction* actPageDown = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Page right") : QCoreApplication::translate("QWebPage", "Page down"));
70 QAction* actScrollUp = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Scroll left") : QCoreApplication::translate("QWebPage", "Scroll up"));
71 QAction* actScrollDown = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Scroll right") : QCoreApplication::translate("QWebPage", "Scroll down"));
  /cts/tests/tests/net/src/android/net/wifi/cts/
ScanResultTest.java 79 mIntentFilter.addAction(WifiManager.NETWORK_STATE_CHANGED_ACTION);
80 mIntentFilter.addAction(WifiManager.SCAN_RESULTS_AVAILABLE_ACTION);
81 mIntentFilter.addAction(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION);
82 mIntentFilter.addAction(WifiManager.SUPPLICANT_STATE_CHANGED_ACTION);
83 mIntentFilter.addAction(WifiManager.WIFI_STATE_CHANGED_ACTION);
84 mIntentFilter.addAction(WifiManager.RSSI_CHANGED_ACTION);
85 mIntentFilter.addAction(WifiManager.NETWORK_IDS_CHANGED_ACTION);
86 mIntentFilter.addAction(WifiManager.ACTION_PICK_WIFI_NETWORK);
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.cpp 178 fileMenu->addAction("New Window", this, SLOT(newWindow()), QKeySequence::New);
179 fileMenu->addAction(tr("Open File..."), this, SLOT(openFile()), QKeySequence::Open);
180 fileMenu->addAction(tr("Open Location..."), this, SLOT(openLocation()), QKeySequence(Qt::CTRL | Qt::Key_L));
181 fileMenu->addAction("Close Window", this, SLOT(close()), QKeySequence::Close);
183 fileMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()));
185 fileMenu->addAction(tr("Print..."), this, SLOT(print()), QKeySequence::Print);
188 fileMenu->addAction("Quit", QApplication::instance(), SLOT(closeAllWindows()), QKeySequence(Qt::CTRL | Qt::Key_Q));
191 editMenu->addAction(page()->action(QWebPage::Undo));
192 editMenu->addAction(page()->action(QWebPage::Redo));
194 editMenu->addAction(page()->action(QWebPage::Cut))
    [all...]
  /external/webkit/Tools/MiniBrowser/qt/
BrowserWindow.cpp 73 fileMenu->addAction("New Window", this, SLOT(newWindow()), QKeySequence::New);
74 fileMenu->addAction("Open File", this, SLOT(openFile()), QKeySequence::Open);
76 fileMenu->addAction("Quit", this, SLOT(close()));
79 viewMenu->addAction(page()->action(QWKPage::Stop));
80 viewMenu->addAction(page()->action(QWKPage::Reload));
82 QAction* zoomIn = viewMenu->addAction("Zoom &In", this, SLOT(zoomIn()));
83 QAction* zoomOut = viewMenu->addAction("Zoom &Out", this, SLOT(zoomOut()));
84 QAction* resetZoom = viewMenu->addAction("Reset Zoom", this, SLOT(resetZoom()));
85 QAction* zoomText = viewMenu->addAction("Zoom Text Only", this, SLOT(toggleZoomTextOnly(bool)));
89 viewMenu->addAction("Take Screen Shot...", this, SLOT(screenshot()))
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ExternalMediaFormatActivity.java 76 filter.addAction(Intent.ACTION_MEDIA_REMOVED);
77 filter.addAction(Intent.ACTION_MEDIA_CHECKING);
78 filter.addAction(Intent.ACTION_MEDIA_MOUNTED);
79 filter.addAction(Intent.ACTION_MEDIA_SHARED);
  /frameworks/base/core/java/com/android/internal/content/
PackageMonitor.java 45 sPackageFilt.addAction(Intent.ACTION_PACKAGE_ADDED);
46 sPackageFilt.addAction(Intent.ACTION_PACKAGE_REMOVED);
47 sPackageFilt.addAction(Intent.ACTION_PACKAGE_CHANGED);
48 sPackageFilt.addAction(Intent.ACTION_QUERY_PACKAGE_RESTART);
49 sPackageFilt.addAction(Intent.ACTION_PACKAGE_RESTARTED);
50 sPackageFilt.addAction(Intent.ACTION_UID_REMOVED);
52 sNonDataFilt.addAction(Intent.ACTION_UID_REMOVED);
53 sNonDataFilt.addAction(Intent.ACTION_USER_STOPPED);
54 sExternalFilt.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
55 sExternalFilt.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DateView.java 116 filter.addAction(Intent.ACTION_TIME_TICK);
117 filter.addAction(Intent.ACTION_TIME_CHANGED);
118 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
Clock.java 83 filter.addAction(Intent.ACTION_TIME_TICK);
84 filter.addAction(Intent.ACTION_TIME_CHANGED);
85 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
86 filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
BluetoothController.java 54 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
55 filter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
56 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
P2pBroadcastReceiverTest.java 50 mIntentFilter.addAction(WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION);
51 mIntentFilter.addAction(WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION);
52 mIntentFilter.addAction(WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION);
53 mIntentFilter.addAction(WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION);
  /frameworks/base/tests/BatteryWaster/src/com/android/batterywaster/
BatteryWaster.java 62 mFilter.addAction(Intent.ACTION_BATTERY_CHANGED);
63 mFilter.addAction(Intent.ACTION_BATTERY_LOW);
64 mFilter.addAction(Intent.ACTION_BATTERY_OKAY);
65 mFilter.addAction(Intent.ACTION_POWER_CONNECTED);
  /packages/apps/Settings/tests/src/com/android/settings/tests/
BluetoothRequestPermissionTest.java 90 filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_STARTED);
91 filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
92 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
93 filter.addAction(BluetoothDevice.ACTION_FOUND);
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkApp.java 57 intentFilter.addAction(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
58 intentFilter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
59 intentFilter.addAction(TelephonyIntents.ACTION_RADIO_TECHNOLOGY_CHANGED);
60 intentFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalWidgetViewsFactory.java 176 filter.addAction(Intent.ACTION_DATE_CHANGED);
177 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
178 filter.addAction(Intent.ACTION_SCREEN_ON);
179 filter.addAction(Intent.ACTION_TIME_TICK);
180 filter.addAction(Intent.ACTION_TIME_CHANGED);
181 filter.addAction(Intent.ACTION_LOCALE_CHANGED);
182 filter.addAction("com.android.deskclock.NEXT_ALARM_TIME_SET");
183 filter.addAction("com.android.deskclock.worldclock.update");
  /packages/apps/DeskClock/src/com/android/deskclock/
ScreensaverActivity.java 113 filter.addAction(Intent.ACTION_POWER_CONNECTED);
114 filter.addAction(Intent.ACTION_POWER_DISCONNECTED);
115 filter.addAction(Intent.ACTION_USER_PRESENT);
116 filter.addAction(Utils.ACTION_ON_QUARTER_HOUR);
117 filter.addAction(Intent.ACTION_TIME_CHANGED);
118 filter.addAction(Intent.ACTION_TIMEZONE_CHANGED);
  /packages/apps/Nfc/src/com/android/nfc/
RegisteredComponentCache.java 70 intentFilter.addAction(Intent.ACTION_PACKAGE_ADDED);
71 intentFilter.addAction(Intent.ACTION_PACKAGE_CHANGED);
72 intentFilter.addAction(Intent.ACTION_PACKAGE_REMOVED);
77 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
78 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
82 userFilter.addAction(Intent.ACTION_USER_SWITCHED);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 144 filter.addAction(Intent.ACTION_ALARM_CHANGED);
145 filter.addAction(Intent.ACTION_SYNC_STATE_CHANGED);
146 filter.addAction(AudioManager.RINGER_MODE_CHANGED_ACTION);
147 filter.addAction(BluetoothAdapter.ACTION_STATE_CHANGED);
148 filter.addAction(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED);
149 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
150 filter.addAction(TtyIntent.TTY_ENABLED_CHANGE_ACTION);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 115 addAction(allAction);
125 addAction(projectAction);
137 addAction(fileAction);
145 addAction(clearAction);
150 private void addAction(IAction action) {
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveSmsPermissionTest.java 67 filter.addAction(TELEPHONY_SMS_RECEIVED);
68 filter.addAction(MESSAGE_SENT_ACTION);
69 filter.addAction(MESSAGE_STATUS_RECEIVED_ACTION);
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java 67 filter.addAction(ACTION_STARTED);
68 filter.addAction(ACTION_UPDATE);
69 filter.addAction(ACTION_STOPPED);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneStateIntentReceiver.java 129 mFilter.addAction(TelephonyManager.ACTION_PHONE_STATE_CHANGED);
139 mFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
149 mFilter.addAction(TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ResolveCache.java 79 filter.addAction(Intent.ACTION_PACKAGE_REPLACED);
80 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
81 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
peers.cpp 183 menu->addAction(Peers::ItemType(type))->setEnabled(false);
202 menu->addAction(tr("Enter WPS PIN"), this,
207 menu->addAction(tr("P2P Connect"), this,
213 menu->addAction(tr("P2P Connect (PBC)"), this,
216 menu->addAction(tr("P2P Request PIN"), this,
218 menu->addAction(tr("P2P Show PIN"), this,
224 menu->addAction(tr("P2P Display PIN"), this,
230 menu->addAction(tr("P2P Enter PIN"), this,
236 menu->addAction(tr("Show passphrase"), this,
238 menu->addAction(tr("Remove P2P Group"), this
    [all...]
  /cts/suite/pts/hostTests/uihost/control/src/com/android/pts/taskswitching/control/
TaskswitchingDeviceTest.java 54 filterA.addAction(PKG_A);
56 filterB.addAction(PKG_B);

Completed in 1752 milliseconds

1 2 3 4 5 6 7 8 91011>>