HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 1 - 25 of 919) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 27 * Denotes the action to ignore any errors.
33 * Denotes the action to fill in the output with a replacement character
40 * Denotes the action to report the encountered error in an appropriate
47 // The name of this action
48 private String action; field in class:CodingErrorAction
53 private CodingErrorAction(String action) {
54 this.action = action;
58 * Returns a text description of this action indication.
60 * @return a text description of this action indication
    [all...]
  /system/core/init/
init_parser.h 22 struct action;
24 struct action *action_remove_queue_head(void);
25 void action_add_queue_tail(struct action *act);
27 void (*func)(struct action *act));
  /external/webkit/WebKitTools/Scripts/webkitpy/steps/
options.py 32 build = make_option("--no-build", action="store_false", dest="build", default=True, help="Commit without building first, implies --no-test.")
33 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.")
34 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
35 check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="Don't check to see if the build.webkit.org builders are green before landing.")
36 check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
37 clean = make_option("--no-clean", action="store_false", dest="clean", default=True, help="Don't check if the working directory is clean before applying patches")
38 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.")
39 complete_rollout = make_option("--complete-rollout", action="store_true", dest="complete_rollout", help="Commit the revert and re-open the original bug.")
40 component = make_option("--component", action="store", type="string", dest="component", help="Component for the new bug.")
41 confirm = make_option("--no-confirm", action="store_false", dest="confirm", default=True, help="Skip confirmation steps."
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/
SDL_fatal.c 64 struct sigaction action; local
67 sigaction(SDL_fatal_signals[i], NULL, &action);
68 if ( action.sa_handler == SIG_DFL ) {
69 action.sa_handler = SDL_Parachute;
70 sigaction(SDL_fatal_signals[i], &action, NULL);
75 sigaction(SIGALRM, NULL, &action);
76 if ( action.sa_handler == SIG_DFL ) {
77 action.sa_handler = SIG_IGN;
78 sigaction(SIGALRM, &action, NULL);
99 struct sigaction action; local
    [all...]
  /libcore/luni/src/main/java/java/security/
SecurityPermission.java 41 * {@code name} and {@code action} list. The action list is ignored - it is
46 * @param action
49 public SecurityPermission(String name, String action) {
50 super(name, action);
  /external/bluetooth/glib/glib/
gdebug.h 40 #define G_NOTE(type, action) G_STMT_START { \
44 { action; }; } G_STMT_END
48 #define G_NOTE(type, action)
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 39 int RunSlave(RankCrashes action) {
44 cmdline.AppendLooseValue(ASCIIToWide(IntToString(action)));
48 printf("Unable to run test %d\n", action);
55 printf("Unable to get return code, test %d\n", action);
59 printf("Test %d failed, code %d\n", action, exit_code);
81 bool CreateTargetFolder(const FilePath& path, RankCrashes action,
109 DCHECK(action > disk_cache::NO_CRASH && action < disk_cache::MAX_CRASH);
111 *full_path = path.AppendASCII(folders[action]);
120 int SimpleInsert(const FilePath& path, RankCrashes action) {
297 RankCrashes action = static_cast<RankCrashes>(strtol(argv[1], &end, 0)); local
    [all...]
  /external/webkit/WebCore/platform/qt/
ContextMenuItemQt.cpp 36 m_platformDescription.action = ContextMenuItemTagNoAction;
41 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
45 m_platformDescription.action = action;
70 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
72 return m_platformDescription.action;
75 void ContextMenuItem::setAction(ContextMenuAction action)
77 m_platformDescription.action = action;
  /external/webkit/WebCore/platform/wx/
ContextMenuItemWx.cpp 37 m_platformDescription.action = ContextMenuItemTagNoAction;
44 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action,
48 m_platformDescription.action = action;
75 ContextMenuAction ContextMenuItem::action() const function in class:ContextMenuItem
77 return m_platformDescription.action;
80 void ContextMenuItem::setAction(ContextMenuAction action)
82 m_platformDescription.action = action;
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
PriviAction.java 37 private int action; field in class:PriviAction
60 private PriviAction(int action, Object arg) {
61 this.action = action;
71 action = GET_SECURITY_POLICY;
85 action = SET_ACCESSIBLE;
99 action = GET_SYSTEM_PROPERTY;
115 action = GET_SYSTEM_PROPERTY;
127 switch (action) {
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 36 String action = intent.getAction(); local
40 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
45 else if (Intent.ACTION_PACKAGE_ADDED.equals(action) ||
46 Intent.ACTION_PACKAGE_CHANGED.equals(action) ||
47 Intent.ACTION_PACKAGE_REMOVED.equals(action) ||
48 Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action) ||
49 Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
54 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
60 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /external/kernel-headers/original/asm-arm/
hw_irq.h 11 # define handle_dynamic_tick(action) \
12 if (!(action->flags & IRQF_TIMER) && system_timer->dyn_tick) { \
  /external/webkit/WebCore/platform/chromium/
ContextMenuItemChromium.cpp 47 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu)
50 m_platformDescription.action = action;
68 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
70 return m_platformDescription.action;
98 void ContextMenuItem::setAction(ContextMenuAction action)
100 m_platformDescription.action = action;
  /external/webkit/WebKit/chromium/public/
WebPasswordFormData.h 46 bool isValid() const { return action.isValid(); }
48 // The action target of the form. This is the primary data used by the
49 // PasswordManager for form autofill; that is, the action of the saved
50 // credentials must match the action of the form on the page to be autofilled.
54 // login the action URL will automatically be assigned by the
58 WebURL action; member in struct:WebKit::WebPasswordFormData
WebMenuItemInfo.h 49 unsigned action; member in struct:WebKit::WebMenuItemInfo
  /external/webkit/WebKit/mac/WebView/
WebPolicyDelegate.mm 47 SEL action;
50 - (id)initWithTarget:(id)target action:(SEL)action;
56 - (id)initWithTarget:(id)t action:(SEL)a
62 action = a;
76 - (id)_initWithTarget:(id)target action:(SEL)action
81 _private = [[WebPolicyDecisionListenerPrivate alloc] initWithTarget:target action:action];
94 ((void (*)(id, SEL, PolicyAction))objc_msgSend)(_private->target, _private->action, policy)
    [all...]
WebPolicyDelegatePrivate.h 45 - (id)_initWithTarget:(id)target action:(SEL)action;
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DelegatedTask.java 31 private final PrivilegedExceptionAction<Void> action; field in class:DelegatedTask
36 * @param action
40 public DelegatedTask(PrivilegedExceptionAction<Void> action, HandshakeProtocol handshaker, AccessControlContext context) {
41 this.action = action;
52 AccessController.doPrivileged(action, context);
  /cts/tools/host/test/com/android/cts/
CommandParserTest.java 32 final String action = "start"; local
36 cp = CommandParser.parse(action + " " + option + " " + value);
38 assertEquals(action, cp.getAction());
48 final String action = "start"; local
55 cp = CommandParser.parse(action + " " + option1 + " " + value1
58 assertEquals(action, cp.getAction());
70 final String action = "ls"; local
76 CommandParser.parse(action + " " + option1 + " "
88 final String action = "ls"; local
92 cp = CommandParser.parse(action + " " + option1)
104 final String action = "ls"; local
117 final String action = "ls"; local
135 final String action = "ls"; local
167 final String action = "exit"; local
180 final String action = "h"; local
198 final String action = "ls"; local
215 final String action = "LS"; local
232 final String action = "h"; local
250 final String action = "ls"; local
    [all...]
  /cts/tools/host/src/com/android/cts/
CommandHistory.java 114 * Check if the command contains valid action.
116 * @param action The action contained in the command.
119 private boolean isValidCommand(final String action) {
120 if (!(CTSCommand.HISTORY.equals(action) || CTSCommand.H.equals(action))) {
121 if (CTSCommand.ADD.equals(action)
122 || CTSCommand.EXIT.equals(action)
123 || CTSCommand.HELP.equals(action)
124 || CTSCommand.LIST.equals(action)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 31 String action = intent.getAction(); local
32 if (Log.LOGV) Log.v("AlarmInitReceiver" + action);
35 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarReceiver.java 37 String action = intent.getAction(); local
39 if (action.equals(SCHEDULE)) {
42 } else if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
  /external/webkit/WebKitTools/QtLauncher/
mainwindow.cpp 56 bar->addAction(page()->action(QWebPage::Back));
57 bar->addAction(page()->action(QWebPage::Forward));
58 bar->addAction(page()->action(QWebPage::Reload));
59 bar->addAction(page()->action(QWebPage::Stop));
80 page()->action(QWebPage::Back)->setShortcut(QKeySequence::Back);
81 page()->action(QWebPage::Stop)->setShortcut(Qt::Key_Escape);
82 page()->action(QWebPage::Forward)->setShortcut(QKeySequence::Forward);
83 page()->action(QWebPage::Reload)->setShortcut(QKeySequence::Refresh);
84 page()->action(QWebPage::Undo)->setShortcut(QKeySequence::Undo);
85 page()->action(QWebPage::Redo)->setShortcut(QKeySequence::Redo)
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebInspectorDelegate.cpp 61 /* [retval][out] */ WebDragDestinationAction* action)
63 *action = WebDragDestinationActionNone;
  /packages/apps/Browser/src/com/android/browser/
BookmarkSearch.java 35 String action = intent.getAction(); local
36 if (Intent.ACTION_VIEW.equals(action)) {

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 91011>>