OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getaction
(Results
201 - 225
of
1054
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
PostReceiverCreationAction.java
42
public static IPostTypeCreationAction
getAction
() {
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
DeviceViewAction.java
105
public Action
getAction
() {
/cts/tests/uiautomator/test-apps/CtsUiAutomatorApp/src/com/android/cts/uiautomator/
Test5DetailFragment.java
84
if (event.
getAction
() == MotionEvent.ACTION_DOWN) {
87
} else if (event.
getAction
() == MotionEvent.ACTION_UP) {
TestGenericDetailFragment.java
65
switch(event.
getAction
() & MotionEvent.ACTION_MASK) {
173
return ((event.
getAction
() & MotionEvent.ACTION_POINTER_INDEX_MASK)
/development/samples/ApiDemos/src/com/example/android/apis/animation/
BouncingBalls.java
80
if (event.
getAction
() != MotionEvent.ACTION_DOWN &&
81
event.
getAction
() != MotionEvent.ACTION_MOVE) {
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java
70
if (Intent.ACTION_VIEW.equals(intent.
getAction
())) {
75
} else if (Intent.ACTION_SEARCH.equals(intent.
getAction
())) {
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LongPressDetector.java
86
if (ev.
getAction
() != MotionEvent.ACTION_DOWN) return;
104
final int action = ev.
getAction
();
/external/chromium_org/sandbox/win/src/
policy_engine_processor.h
100
// EvalResult policy_action = pol_evaluator.
GetAction
();
128
EvalResult
GetAction
() const;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContextWrapperTest.java
181
assertEquals("foo", shadowOf(Robolectric.application).getNextStartedService().
getAction
());
187
transcript.add(name + " notified of " + intent.
getAction
());
/frameworks/base/core/java/android/text/method/
LinkMovementMethod.java
50
if (event.
getAction
() == KeyEvent.ACTION_DOWN &&
196
int action = event.
getAction
();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardViewBase.java
112
if (event.
getAction
() == KeyEvent.ACTION_DOWN) {
164
} else if (event.
getAction
() == KeyEvent.ACTION_UP) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelBar.java
100
if (event.
getAction
() == MotionEvent.ACTION_DOWN) {
108
if (event.
getAction
() == MotionEvent.ACTION_DOWN) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DeadZone.java
109
Slog.v(TAG, this + " onTouch: " + MotionEvent.actionToString(event.
getAction
()));
112
final int action = event.
getAction
();
LocationController.java
92
String action = intent.
getAction
();
219
final String action = intent.
getAction
();
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
SourceActivity.java
81
if (intent.
getAction
().equals(UsbManager.ACTION_USB_ACCESSORY_ATTACHED)) {
219
String action = intent.
getAction
();
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelView.java
114
final int action = ev.
getAction
();
143
final int pointerIndex = (ev.
getAction
() & MotionEvent.ACTION_POINTER_INDEX_MASK)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsStorageMonitor.java
153
if (intent.
getAction
().equals(Intent.ACTION_DEVICE_STORAGE_FULL)) {
156
} else if (intent.
getAction
().equals(Intent.ACTION_DEVICE_STORAGE_NOT_FULL)) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
MenuDialogHelper.java
97
if (event.
getAction
() == KeyEvent.ACTION_DOWN
110
} else if (event.
getAction
() == KeyEvent.ACTION_UP && !event.isCanceled()) {
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppIncomingFileConfirmActivity.java
85
if (!BluetoothShare.USER_CONFIRMATION_TIMEOUT_ACTION.equals(intent.
getAction
())) {
94
if (V) Log.d(TAG, "onCreate(): action = " + getIntent().
getAction
());
/packages/apps/Calendar/src/com/android/calendar/alerts/
DismissAlarmsService.java
62
Log.d(TAG, "onReceive: a=" + intent.
getAction
() + " " + intent.toString());
106
if (SHOW_ACTION.equals(intent.
getAction
())) {
/packages/apps/Contacts/src/com/android/contacts/activities/
GroupEditorActivity.java
52
String action = getIntent().
getAction
();
123
String action = intent.
getAction
();
/packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java
109
return TextUtils.equals(a.
getAction
(), b.
getAction
());
/packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmService.java
138
if (START_ALARM_ACTION.equals(intent.
getAction
())) {
153
} else if(STOP_ALARM_ACTION.equals(intent.
getAction
())) {
/packages/apps/LegacyCamera/src/com/android/camera/ui/
SecondLevelIndicatorControlBar.java
100
int action = event.
getAction
();
114
int oldAction = event.
getAction
();
/packages/apps/Settings/src/com/android/settings/
CryptKeeperSettings.java
62
String action = intent.
getAction
();
141
if (DevicePolicyManager.ACTION_START_ENCRYPTION.equals(intent.
getAction
())) {
Completed in 1024 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>