/ndk/build/awk/ |
extract-launchable.awk | 29 # <action android:name="android.intent.action.MAIN" /> 61 # the 'action' and 'category' variables. They are updated when 65 action = "" 69 # for the current activity if both 'action' and 'category' have the 73 if ( action == "android.intent.action.MAIN" && 78 # When entering an <action> element inside an <intent-filter>, record 80 else if ( event == "BEGIN-ACTION" && 81 XML_RPATH == "ACTION/INTENT-FILTER/ACTIVITY/APPLICATION/MANIFEST/" ) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
NoConfirmationSendService.java | 35 "com.android.mms.intent.action.SENDTO_NO_CONFIRMATION"; 44 String action = intent.getAction(); local 45 if (!SEND_NO_CONFIRM_INTENT_ACTION.equals(action)) { 46 ComposeMessageActivity.log("NoConfirmationSendService onStartCommand wrong action: " + 47 action);
|
/external/chromium/chrome/browser/hang_monitor/ |
hung_plugin_action.h | 13 // from that of the browser process and, if so, it returns an action 15 // Note: We can write other action classes that implement the same 16 // interface and switch the action done on hung plugins based on user 25 ActionOnHungWindow* action);
|
hung_window_detector.h | 44 ActionOnHungWindow* action) = 0;
|
/external/chromium/chrome/browser/sync/glue/ |
theme_change_processor.cc | 83 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_UPDATE && 84 change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) { 85 std::string err = "strange theme change.action " + change.action; 90 // If the action is a delete, simply use the default values for 92 if (change.action != sync_api::SyncManager::ChangeRecord::ACTION_DELETE) {
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
extension_action_context_menu.h | 34 // The extension action this menu belongs to. Weak. 58 extensionAction:(ExtensionAction*)action;
|
/external/chromium/chrome/browser/ui/views/ |
first_run_bubble.h | 36 virtual void OnActivate(UINT action, BOOL minimized, HWND window);
|
/external/chromium/webkit/glue/ |
password_form.h | 62 // The action target of the form. This is the primary data used by the 63 // PasswordManager for form autofill; that is, the action of the saved 64 // credentials must match the action of the form on the page to be autofilled. 68 // login the action URL will automatically be assigned by the 72 GURL action; member in struct:webkit_glue::PasswordForm
|
webmenuitem.h | 31 unsigned action; member in struct:WebMenuItem
|
/external/clang/tools/scan-view/ |
scan-view | 88 action="count", 91 action="store_true", 94 action="store_false", 97 action="store_false",
|
/external/valgrind/main/include/ |
pub_tool_stacktrace.h | 67 // pointer provided to each invokation of 'action' (a poor man's 71 void(*action)(UInt n, Addr ip, void* opaque),
|
/external/webkit/Source/WebCore/bindings/js/ |
JSWorkerContextCustom.cpp | 126 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); local 130 return jsNumber(impl()->setTimeout(action.release(), delay)); 136 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); local 140 return jsNumber(impl()->setInterval(action.release(), delay));
|
/external/webkit/Source/WebCore/platform/efl/ |
ContextMenuItemEfl.cpp | 65 ContextMenuAction ContextMenuItem::action() const
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundlePagePolicyClient.cpp | 37 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNavigationAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, RefPtr<APIObject>& userData) 45 WKBundlePagePolicyAction policy = m_client.decidePolicyForNavigationAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), &userDataToPass, m_client.clientInfo); 50 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForNewWindowAction(WebPage* page, WebFrame* frame, InjectedBundleNavigationAction* action, const ResourceRequest& resourceRequest, const String& frameName, RefPtr<APIObject>& userData) 58 WKBundlePagePolicyAction policy = m_client.decidePolicyForNewWindowAction(toAPI(page), toAPI(frame), toAPI(action), toAPI(request.get()), toAPI(frameName.impl()), &userDataToPass, m_client.clientInfo);
|
/frameworks/base/core/java/com/android/internal/content/ |
PackageMonitor.java | 196 String action = intent.getAction(); local 197 if (Intent.ACTION_PACKAGE_ADDED.equals(action)) { 223 } else if (Intent.ACTION_PACKAGE_REMOVED.equals(action)) { 246 } else if (Intent.ACTION_PACKAGE_CHANGED.equals(action)) { 259 } else if (Intent.ACTION_QUERY_PACKAGE_RESTART.equals(action)) { 266 } else if (Intent.ACTION_PACKAGE_RESTARTED.equals(action)) { 271 } else if (Intent.ACTION_UID_REMOVED.equals(action)) { 273 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action)) { 284 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
|
/frameworks/base/drm/libdrmframework/include/ |
DrmManagerService.h | 62 DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action); 79 int checkRightsStatus(int uniqueId, const String8& path,int action); 81 status_t consumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve); 87 int action, const ActionDescription& description);
|
/frameworks/base/drm/libdrmframework/plugins/common/include/ |
IDrmEngine.h | 97 * @param[in] action Actions defined such as, 98 * Action::DEFAULT, Action::PLAY, etc 105 int uniqueId, const String8* path, int action) = 0; 193 * @param[in] action Action to perform (Action::DEFAULT, Action::PLAY, etc) 197 virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0; 206 * @param[in] action Action to perform. (Action::DEFAULT, Action::PLAY, etc [all...] |
/frameworks/base/drm/libdrmframework/plugins/passthru/include/ |
DrmPassthruPlugIn.h | 31 DrmConstraints* onGetConstraints(int uniqueId, const String8* path, int action); 54 int onCheckRightsStatus(int uniqueId, const String8& path, int action); 56 status_t onConsumeRights(int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve); 62 int uniqueId, const String8& path, int action, const ActionDescription& description);
|
/frameworks/base/include/drm/ |
DrmManagerClient.h | 98 * @param[in] action Action to perform. (Action::DEFAULT, Action::PLAY, etc) 104 status_t consumeRights(sp<DecryptHandle> &decryptHandle, int action, bool reserve); 110 * @param[in] playbackStatus Playback action (Playback::START, Playback::STOP, Playback::PAUSE) 176 * Validates whether an action on the DRM content is allowed or not. 179 * @param[in] action Action to validate. (Action::DEFAULT, Action::PLAY, etc [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
DateView.java | 43 final String action = intent.getAction(); 44 if (Intent.ACTION_TIME_TICK.equals(action) 45 || Intent.ACTION_TIME_CHANGED.equals(action) 46 || Intent.ACTION_TIMEZONE_CHANGED.equals(action)) {
|
/libcore/luni/src/main/java/javax/security/auth/ |
PrivateCredentialPermission.java | 32 public PrivateCredentialPermission(String name, String action) { super(""); }
|
Subject.java | 131 * Runs the code defined by {@code action} using the permissions granted to 136 * @param action 138 * @return the {@code Object} returned when running the {@code action}. 141 public static <T> T doAs(Subject subject, PrivilegedAction<T> action) { 142 return doAs_PrivilegedAction(subject, action, AccessController.getContext()); 146 * Run the code defined by {@code action} using the permissions granted to 152 * @param action 155 * the specific context in which the {@code action} is invoked. 158 * @return the {@code Object} returned when running the {@code action}. 161 public static <T> T doAsPrivileged(Subject subject, PrivilegedAction<T> action, 472 PrivilegedAction<DomainCombiner> action = new PrivilegedAction<DomainCombiner>() { local [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ContactEditorActivity.java | 60 String action = getIntent().getAction(); local 62 // The only situation where action could be ACTION_JOIN_COMPLETED is if the 65 if (ACTION_JOIN_COMPLETED.equals(action)) { 70 if (ACTION_SAVE_COMPLETED.equals(action)) { 79 // Inflate a custom action bar that contains the "done" button for saving changes 91 // Show the custom action bar but hide the home icon and title 101 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null; 102 mFragment.load(action, uri, getIntent().getExtras()); 113 String action = intent.getAction(); local 114 if (Intent.ACTION_EDIT.equals(action)) { [all...] |
/packages/apps/Contacts/src/com/android/contacts/voicemail/ |
VoicemailStatusHelperImpl.java | 60 public static enum Action { 66 private Action(int messageId) { 77 * string and the corrective action. The states are also assigned a relative priority which is 84 NO_CONNECTION(0, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available, 87 NO_DATA(1, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available, 90 MESSAGE_WAITING(2, Action.CALL_VOICEMAIL, R.string.voicemail_status_messages_waiting, 93 NO_NOTIFICATIONS(3, Action.CALL_VOICEMAIL, 96 INVITE_FOR_CONFIGURATION(4, Action.CONFIGURE_VOICEMAIL, 100 * This is normal mode of operation for certain sources. No action needed. 102 NO_DETAILED_NOTIFICATION(5, Action.NONE, -1) 214 final Action action = overallState.getAction(); local [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
MmsSystemEventReceiver.java | 62 String action = intent.getAction(); local 63 if (action.equals(Mms.Intents.CONTENT_CHANGED_ACTION)) { 66 } else if (action.equals(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) { 76 } else if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
|