/frameworks/base/services/core/java/com/android/server/hdmi/ |
HdmiCecFeatureAction.java | 36 * initiates the action, through the callback given at the creation of the object. All the actual 37 * action classes inherit FeatureAction. 40 * {@link HdmiCecLocalDevice}. Each action is passed a new command arriving from the bus, and either 41 * consumes it if the command is what the action expects, or yields it to other action. Declared as 53 // Internal state indicating the progress of action. 76 * Called after the action is created. Initialization or first step to take 77 * for the action can be done in this method. Shall update {@code mState} to 78 * indicate that the action has started. 93 * Called when the action should handle the timer event it created before [all...] |
/frameworks/compile/mclinker/unittests/ |
InputTreeTest.cpp | 62 std::vector<InputAction*>::iterator action; local 63 for (action = actions.begin(); action != actions.end(); ++action) { 64 (*action)->activate(*m_pBuilder); 65 delete *action;
|
/frameworks/support/compat/java/android/support/v4/view/accessibility/ |
AccessibilityEventCompat.java | 36 public void setAction(AccessibilityEvent event, int action); 77 public void setAction(AccessibilityEvent event, int action) { 116 public void setAction(AccessibilityEvent event, int action) { 117 AccessibilityEventCompatJellyBean.setAction(event, action); 398 * Sets the performed action that triggered this event. 410 * @param action The action. 414 public void setAction(AccessibilityEvent event, int action) { 415 IMPL.setAction(event, action); 419 * Gets the performed action that triggered this event [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
GroupEditorActivity.java | 52 String action = getIntent().getAction(); local 54 if (ACTION_SAVE_COMPLETED.equals(action)) { 63 // Inflate a custom action bar that contains the "done" button for saving changes 76 // Show the custom action bar but hide the home icon and title 91 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null; 92 mFragment.load(action, uri, getIntent().getExtras()); 123 String action = intent.getAction(); local 124 if (ACTION_SAVE_COMPLETED.equals(action)) {
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/uiflows/ |
EncryptionController.java | 106 ProvisionLogger.logd("Setting provisioning reminder for action: " 154 String action = resumeIntent.getStringExtra(MessageParser.EXTRA_PROVISIONING_ACTION); local 155 ProvisionLogger.logd("Provisioning resumed after encryption with action: " + action); 159 + " action " + action + " but it should"); 164 if (mUtils.isProfileOwnerAction(action)) { 170 } else if (mUtils.isDeviceOwnerAction(action)) { 173 ProvisionLogger.loge("Unknown intent action loaded from the intent store: " 174 + action); [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
GetOrCreateConversationAction.java | 17 package com.android.messaging.datamodel.action; 27 import com.android.messaging.datamodel.action.ActionMonitor.ActionCompletedListener; 38 * Action used to get or create a conversation for a list of conversation participants. 40 public class GetOrCreateConversationAction extends Action implements Parcelable { 59 final GetOrCreateConversationAction action = new GetOrCreateConversationAction(participants, local 61 action.start(monitor); 134 final Action action, final Object data, final Object result) { 144 final Action action, final Object data, final Object result) [all...] |
FixupMessageStatusOnStartupAction.java | 17 package com.android.messaging.datamodel.action; 30 * Action used to fixup actively downloading or sending status at startup - just in case we 33 public class FixupMessageStatusOnStartupAction extends Action implements Parcelable { 37 final FixupMessageStatusOnStartupAction action = new FixupMessageStatusOnStartupAction(); local 38 action.start();
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
ResetActivity.java | 88 public void onGuidedActionClicked(GuidedAction action) { 89 if (action.getId() == GuidedAction.ACTION_ID_OK) { 91 } else if (action.getId() == GuidedAction.ACTION_ID_CANCEL) { 94 Log.wtf(TAG, "Unknown action clicked"); 133 public void onGuidedActionClicked(GuidedAction action) { 134 if (action.getId() == GuidedAction.ACTION_ID_OK) { 139 Intent resetIntent = new Intent("android.intent.action.MASTER_CLEAR"); 145 } else if (action.getId() == GuidedAction.ACTION_ID_CANCEL) { 148 Log.wtf(TAG, "Unknown action clicked");
|
ConfirmClearCacheFragment.java | 55 public void onGuidedActionClicked(GuidedAction action) { 56 if (action.getId() == GuidedAction.ACTION_ID_OK) { 57 super.onGuidedActionClicked(action);
|
/packages/services/Telephony/src/com/android/phone/ |
HfaLogic.java | 38 * It starts by broadcasting the intent com.android.action.START_HFA. 52 private static final String ACTION_START = "com.android.action.START_HFA"; 53 private static final String ACTION_ERROR = "com.android.action.ERROR_HFA"; 54 private static final String ACTION_CANCEL = "com.android.action.CANCEL_HFA"; 55 private static final String ACTION_COMPLETE = "com.android.action.COMPLETE_HFA"; 101 private void sendHfaCommand(String action) { 102 Log.i(TAG, "sendHfaCommand: command=" + action); 103 mContext.sendBroadcast(new Intent(action)); 172 final String action = intent.getAction(); 173 if (action.equals(ACTION_ERROR)) [all...] |
/platform_testing/tests/functional/settingstests/src/com/android/settings/functional/ |
AboutPhoneSettingsTests.java | 135 * Removes items found in the view and optionally takes some action. 139 * @param action Action to call on each item that is found; pass {@code null} to take no action 142 UiDevice device, ArrayList<String> itemsLeftToFind, UIObject2Callback action) throws Exception { 151 if (action != null) { 152 boolean success = action.call(device, item); 153 assertTrue("Calling action after " + itemText + " did not work", success); 164 * Searches for UI elements in the current view and optionally takes some action. 171 * @param action Action to call on each item that is found; pass {@code null} to take no actio [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
OpenWizardAction.java | 22 import org.eclipse.jface.action.IAction; 44 * An abstract action that displays one of our wizards. 100 * @param action The action that got us here. Can be null when used internally. 101 * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction) 104 public void run(IAction action) { 136 mWizard = instanciateWizard(action); 162 * @param action The action parameter from {@link #run(IAction)}. 166 protected abstract IWorkbenchWizard instanciateWizard(IAction action); [all...] |
/cts/tests/tests/assist/src/android/assist/cts/ |
AssistStructureTest.java | 106 String action = intent.getAction(); local 107 if (action.equals(Utils.APP_3P_HASRESUMED)) { 111 } else if (action.equals(Utils.ASSIST_RECEIVER_REGISTERED)) {
|
FlagSecureTest.java | 98 String action = intent.getAction(); local 99 if (action.equals(Utils.FLAG_SECURE_HASRESUMED)) { 103 } else if (action.equals(Utils.ASSIST_RECEIVER_REGISTERED)) {
|
LargeViewHierarchyTest.java | 101 String action = intent.getAction(); local 102 if (action.equals(Utils.APP_3P_HASRESUMED) && mHasResumedLatch != null) { 104 } else if (action.equals(Utils.ASSIST_RECEIVER_REGISTERED) && mReadyLatch != null) {
|
/external/autotest/cli/ |
compose_query | 13 parser.add_option('-x', '--x_axis', action='store', dest='x_axis', 15 parser.add_option('-y', '--y_axis', action='store', dest='y_axis', 17 parser.add_option('-c', '--condition', action='store', dest='condition')
|
test.py | 8 The valid action is: 63 action='store_true', 67 action='store_true', 71 action='store_true',
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
adb_run_shell_cmd.py | 21 parser.add_argument('-d', '--device', action='append', dest='devices', 24 parser.add_argument('-v', '--verbose', default=0, action='count', 27 parser.add_argument('--as-root', action='store_true', help='Run as root.')
|
/external/chromium-trace/catapult/tracing/tracing_build/ |
vulcanize_trace_viewer.py | 24 parser.add_argument('--no-min', default=False, action='store_true', 26 parser.add_argument('--report-sizes', default=False, action='store_true', 28 parser.add_argument('--report-deps', default=False, action='store_true',
|
/external/droiddriver/src/io/appium/droiddriver/base/ |
BaseUiElement.java | 32 import io.appium.droiddriver.actions.Action; 170 public boolean perform(Action action) { 171 Logs.call(this, "perform", action); 172 if (validator != null && validator.isApplicable(this, action)) { 173 String failure = validator.validate(this, action); 180 if (action.getTimeoutMillis() <= 0) { 181 return doPerform(action); 183 return performAndWait(action); 186 protected boolean doPerform(Action action) [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/ |
BluetoothDiscoveryHelper.java | 53 final String action = intent.getAction(); local 55 if (BluetoothDevice.ACTION_FOUND.equals(action)) { 63 } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/ |
MediaButtonCallback.java | 60 String action = mediaButtonIntent.getAction(); local 61 Log.d("Received intent with action " + action); 62 if (action.equals(Intent.ACTION_MEDIA_BUTTON)) { 66 Log.d("Received KeyEvent with action " + keyAction);
|
/frameworks/base/core/java/android/app/ |
EphemeralResolverService.java | 88 final int action = message.what; 89 switch (action) { 105 throw new IllegalArgumentException("Unknown message: " + action);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
NextAlarmController.java | 61 final String action = intent.getAction(); local 62 if (action.equals(Intent.ACTION_USER_SWITCHED) 63 || action.equals(AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED)) {
|
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/ |
ManagePermissionsActivity.java | 39 String action = getIntent().getAction(); local 41 switch (action) { 87 Log.w(LOG_TAG, "Unrecognized action " + action);
|