HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 26 - 50 of 1466) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoveryReceiver.java 39 String action = intent.getAction(); local
40 Log.v(TAG, "Received: " + action);
42 if (action.equals(BluetoothAdapter.ACTION_DISCOVERY_STARTED) ||
43 action.equals(BluetoothAdapter.ACTION_DISCOVERY_FINISHED)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlTempFileDeletionService.java 39 final String action = intent.getAction(); local
40 if (Intent.ACTION_DELETE.equals(action)) {
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 35 String action = intent.getAction(); local
39 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
44 else if (Intent.ACTION_PACKAGE_ADDED.equals(action) ||
45 Intent.ACTION_PACKAGE_CHANGED.equals(action) ||
46 Intent.ACTION_PACKAGE_REMOVED.equals(action) ||
47 Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action) ||
48 Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
53 else if (TelephonyIntents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
59 else if (TelephonyIntents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/
BackgroundAction.java 17 package com.android.hierarchyviewer.ui.action;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
UserPresetsAdapter.java 29 import com.android.gallery3d.filtershow.category.Action;
36 public class UserPresetsAdapter extends ArrayAdapter<Action>
58 public void add(Action action) {
59 super.add(action);
60 action.setAdapter(this);
63 private void deletePreset(Action action) {
64 FilterRepresentation rep = action.getRepresentation();
68 remove(action);
108 Action action = getItem(position); local
144 Action action = (Action) v.getTag(); local
164 Action action = (Action) editText.getTag(); local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ControlButtonPresenterSelector.java 29 * Binds to items of type {@link Action}.
88 Action action = (Action) item; local
90 vh.mIcon.setImageDrawable(action.getIcon());
92 if (action.getIcon() == null) {
93 vh.mLabel.setText(action.getLabel1());
98 CharSequence contentDescription = TextUtils.isEmpty(action.getLabel2()) ?
99 action.getLabel1() : action.getLabel2()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportProjectWizard.java 90 OpenJavaPerspectiveAction action = new OpenJavaPerspectiveAction(); local
91 action.run();
  /art/runtime/
runtime_android.cc 61 struct sigaction action; local
62 memset(&action, 0, sizeof(action));
63 sigemptyset(&action.sa_mask);
64 action.sa_sigaction = HandleUnexpectedSignal;
66 action.sa_flags |= SA_SIGINFO;
68 action.sa_flags |= SA_ONSTACK;
70 rc += sigaction(SIGSEGV, &action, &old_action);
  /art/test/004-SignalTest/
signaltest.cc 73 struct sigaction action; local
74 action.sa_sigaction = signalhandler;
75 sigemptyset(&action.sa_mask);
76 action.sa_flags = SA_SIGINFO | SA_ONSTACK;
78 action.sa_restorer = nullptr;
81 sigaction(SIGSEGV, &action, &oldaction);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
WorkNotificationTestActivity.java 40 final String action = getIntent().getAction(); local
43 if (ACTION_WORK_NOTIFICATION.equals(action)) {
51 } else if (ACTION_CLEAR_WORK_NOTIFICATION.equals(action)) {
  /cts/tests/app/src/android/app/cts/
MockAlarmReceiver.java 41 final String action = intent.getAction(); local
42 if (action.equals(mTargetAction)) {
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleBroadcastReceiver.java 40 String action = intent.getAction(); local
41 if (action.equals(Intent.ACTION_TIMEZONE_CHANGED)
42 || action.equals(Intent.ACTION_TIME_CHANGED)) {
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
TechFilter.java 39 String action = intent.getAction(); local
40 if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) {
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 48 * Gets the incoming Intent and its action. If the incoming Intent was
53 final String action = intent.getAction(); local
55 if (LiveFolders.ACTION_CREATE_LIVE_FOLDER.equals(action)) {
84 * Adds a base action for items in the live folder list, as an Intent. When the
87 * Its action is ACTION_EDIT, so it triggers the Note Editor activity. Its
105 // If the original action was not ACTION_CREATE_LIVE_FOLDER, creates an
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/receiver/
MessagingReceiver.java 36 String action = intent == null ? null : intent.getAction(); local
40 if (Intents.SMS_DELIVER_ACTION.equals(action)) {
42 } else if (Intents.WAP_PUSH_DELIVER_ACTION.equals(action)) {
46 if (Intents.SMS_RECEIVED_ACTION.equals(action)) {
48 } else if (Intents.WAP_PUSH_RECEIVED_ACTION.equals(action)) {
  /external/bison/lib/
spawn_int.h 19 /* Data structure to contain the action information. */
47 } action; member in struct:__spawn_action
  /external/chromium_org/chrome/browser/extensions/activity_log/
ad_injection_unittest.cc 18 scoped_refptr<Action> CreateAction(const std::string& api_name,
21 scoped_refptr<Action> action = new Action("id", local
23 Action::ACTION_DOM_ACCESS,
25 action->set_args(ListBuilder()
31 return action;
67 // the action may have injected the ad.
73 scoped_refptr<Action> modify_iframe_src =
79 scoped_refptr<Action> modify_anchor_href
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/extension_action/
page_action_apitest.cc 45 // Tell the extension to update the page action state.
55 ExtensionAction* action = GetPageAction(*extension); local
56 ASSERT_TRUE(action);
57 EXPECT_EQ("Modified", action->GetTitle(tab_id));
60 // Simulate the page action being clicked.
68 // Tell the extension to update the page action state again.
77 ExtensionActionIconFactory icon_factory(profile(), extension, action, NULL); local
97 << "Page action test extension should have a page action.";
101 // Simulate the page action being clicked. The resulting event shoul
    [all...]
  /external/chromium_org/chrome/browser/extensions/
location_bar_controller.cc 49 // one action per extension. If clicking on an active script action ever
51 ExtensionAction* action = action_manager_->GetPageAction(**iter); local
52 if (!action && active_script_controller->WantsToRun(iter->get())) {
56 action = existing->second.get();
64 action = active_script_action.get();
68 if (action)
69 current_actions.push_back(action);
  /external/chromium_org/chrome/common/extensions/api/extension_action/
page_action_handler.cc 65 // If page_action_value is not NULL, then there was a valid page action.
69 return false; // Failed to parse page action definition.
79 const extensions::ActionInfo* action = local
81 if (action && !action->default_icon.empty() &&
83 action->default_icon,
  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils.cc 200 // Calculate the canonical action URL
201 WebString action = form.action(); local
202 if (action.isNull())
203 action = WebString(""); // missing 'action' attribute implies current URL
204 GURL full_action(form.document().completeURL(action));
214 // query and ref portions of URL, for the form action and form origin.
220 password_form->action = full_action.ReplaceComponents(rep);
255 if (!password_form->action.is_valid()
    [all...]
  /external/chromium_org/components/autofill/core/common/
password_generation_util.cc 26 UserAction action = IGNORE_FEATURE; local
29 action = ACCEPT_AFTER_EDITING;
31 action = ACCEPT_ORIGINAL_PASSWORD;
33 action = LEARN_MORE;
36 action, ACTION_ENUM_COUNT);
  /external/chromium_org/components/password_manager/core/browser/
password_form_data.h 23 const char* action; member in struct:password_manager::PasswordFormData
  /external/chromium_org/net/tools/flip_server/
loadtime_measurement.h 42 // remove "/testing/" from uri to get the action
43 std::string action = uri.substr(9); local
44 if (pageload_html_file_.find(action) != std::string::npos) {
48 if (action.find("get_total_iteration") == 0) {
54 if (action.find("geturl") == 0) {
55 size_t b = action.find_first_of('=');
57 int num = atoi(action.substr(b + 1).c_str());
64 if (action.find("test_complete") == 0) {
74 if (action.find("record_page_load") == 0) {
76 base::SplitString(action, '?', &query)
    [all...]
  /external/chromium_org/sandbox/linux/services/
init_process_reaper.cc 47 struct sigaction action; local
48 memset(&action, 0, sizeof(action));
49 action.sa_handler = &DoNothingSignalHandler;
50 CHECK(sigaction(SIGCHLD, &action, NULL) == 0);

Completed in 2736 milliseconds

12 3 4 5 6 7 8 91011>>