OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getaction
(Results
126 - 150
of
1054
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkService.java
38
String action = intent.
getAction
();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DictionaryDecayBroadcastReciever.java
61
final String action = intent.
getAction
();
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateViewButton.java
52
switch (me.
getAction
()) {
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailCleanupService.java
46
if (intent.
getAction
().equals(Intent.ACTION_PACKAGE_REMOVED) &&
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
EdgeSwipeDetector.java
42
switch (event.
getAction
()) {
/packages/screensavers/WebView/src/com/android/dreams/web/
SetURL.java
36
final String action = intent.
getAction
();
SetURLInteractive.java
36
final String action = intent.
getAction
();
/packages/services/Telephony/src/com/android/phone/
ClearMissedCallsService.java
46
if (ACTION_CLEAR_MISSED_CALLS.equals(intent.
getAction
())) {
EmergencyCallbackModeExitDialog.java
174
if (getIntent().
getAction
().equals(
178
} else if (getIntent().
getAction
().equals(ACTION_SHOW_ECM_EXIT_DIALOG)) {
299
if (intent.
getAction
().equals(
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DevicePickerActivity.java
183
if (BluetoothAdapter.ACTION_DISCOVERY_STARTED.equals(intent.
getAction
())) {
186
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(intent.
getAction
())) {
189
} else if (BluetoothDevice.ACTION_FOUND.equals(intent.
getAction
())) {
/development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java
81
public int
getAction
() {
146
return (
getAction
() == MotionEvent.ACTION_UP);
175
msg.append(me.
getAction
());
/development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java
73
if (intent.
getAction
().equals(ACTION_STARTED)) {
75
} else if (intent.
getAction
().equals(ACTION_UPDATE)) {
77
} else if (intent.
getAction
().equals(ACTION_STOPPED)) {
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
ShortcutHelperTest.java
92
assertEquals(WEBAPP_ACTION_NAME, launchIntent.
getAction
());
104
assertEquals(WEBAPP_ACTION_NAME, newLaunchIntent.
getAction
());
123
assertEquals(Intent.ACTION_VIEW, launchIntent.
getAction
());
/external/smack/src/org/jivesoftware/smackx/packet/
OfflineMessageRequest.java
155
public String
getAction
() {
180
if (
getAction
() != null) {
181
buf.append(" action=\"").append(
getAction
()).append("\"");
/frameworks/base/core/java/android/view/
DragEvent.java
30
* View objects that receive a DragEvent call {@link #
getAction
()}, which returns
43
* following table. Each possible {@link #
getAction
()} value is listed in the first column. The
44
* other columns indicate which method or methods return valid data for that
getAction
() value:
48
* <th scope="col">
getAction
() Value</th>
112
* The {@link android.view.DragEvent#
getAction
()},
144
* Action constant returned by {@link #
getAction
()}: Signals the start of a
163
* Action constant returned by {@link #
getAction
()}: Sent to a View after
184
* Action constant returned by {@link #
getAction
()}: Signals to a View that the user
204
* Action constant returned by {@link #
getAction
()}: Signals to a View that the drag and drop
222
* Action constant returned by {@link #
getAction
()}: Signals to a View that the drag point ha
[
all
...]
/frameworks/base/core/java/com/android/internal/app/
NetInitiatedActivity.java
60
if (DEBUG) Log.d(TAG, "NetInitiatedReceiver onReceive: " + intent.
getAction
());
61
if (intent.
getAction
() == GpsNetInitiatedHandler.ACTION_NI_VERIFY) {
149
if (DEBUG) Log.d(TAG, "handleNIVerify action: " + intent.
getAction
());
/frameworks/base/services/java/com/android/server/wifi/
WifiTrafficPoller.java
82
if (intent.
getAction
().equals(
86
} else if (intent.
getAction
().equals(Intent.ACTION_SCREEN_OFF)) {
88
} else if (intent.
getAction
().equals(Intent.ACTION_SCREEN_ON)) {
/cts/tests/tests/content/src/android/content/cts/
IntentTest.java
91
assertEquals(TEST_ACTION, mIntent.
getAction
());
95
assertEquals(TEST_ACTION, mIntent.
getAction
());
99
assertEquals(TEST_ACTION, mIntent.
getAction
());
108
assertEquals(TEST_ACTION, mIntent.
getAction
());
139
assertEquals(mIntent.
getAction
(), target.
getAction
());
351
assertEquals("android.intent.action.MAIN", mIntent.
getAction
());
596
assertEquals(TEST_ACTION, mIntent.
getAction
());
634
assertEquals(TEST_ACTION, actual.
getAction
());
659
assertEquals(TEST_ACTION, actual.
getAction
());
[
all
...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowApplication.java
198
if (unbindableActions.contains(intent.
getAction
())) {
328
if (wrapper.intentFilter.matchAction(intent.
getAction
())) {
340
stickyIntents.put(intent.
getAction
(), intent);
366
action = filter.
getAction
(i);
367
if (stickyIntent.
getAction
().equals(action)) {
432
if (wrapper.intentFilter.matchAction(intent.
getAction
())) {
442
if (wrapper.intentFilter.matchAction(intent.
getAction
())) {
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java
112
Log.d(TAG, "onKey() keyCode: "+keyCode+" event.
getAction
(): "+event.
getAction
());
113
if (event.
getAction
() == KeyEvent.ACTION_DOWN) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java
82
String action = intent.
getAction
();
219
String action = intent.
getAction
();
242
final String action = intent.
getAction
();
/packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionActivity.java
82
&& BluetoothAdapter.ACTION_STATE_CHANGED.equals(intent.
getAction
())) {
258
if (intent != null && intent.
getAction
().equals(BluetoothAdapter.ACTION_REQUEST_ENABLE)) {
261
&& intent.
getAction
().equals(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE)) {
/packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerEngine.java
234
if (in.
getAction
() != null &&
235
in.
getAction
().equals(intent.
getAction
()) &&
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoNegRespTestCase.java
85
String action = intent.
getAction
();
/cts/tests/src/android/app/cts/
IntentServiceStub.java
71
String action = intent.
getAction
();
Completed in 529 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>