/external/chromium/chrome/browser/metrics/ |
user_metrics.cc | 11 void UserMetrics::RecordAction(const UserMetricsAction& action, 13 Record(action.str_, profile); 16 void UserMetrics::RecordComputedAction(const std::string& action, 18 Record(action.c_str(), profile); 21 void UserMetrics::Record(const char *action, Profile *profile) { 22 Record(action); 25 void UserMetrics::RecordAction(const UserMetricsAction& action) { 26 Record(action.str_); 29 void UserMetrics::RecordComputedAction(const std::string& action) { 30 Record(action.c_str()) [all...] |
user_metrics.h | 28 // Record that the user performed an action. 29 // "Action" here means a user-generated event: 39 // Once a new recorded action is added, run chrome/tools/extract_actions.py 40 // to generate a new mapping of [action hashes -> metric names] and send it 48 static void RecordAction(const UserMetricsAction& action, Profile* profile); 51 // not automatically found by the action-processing scripts. It can be used 55 static void RecordComputedAction(const std::string& action, 58 static void RecordAction(const UserMetricsAction& action); 59 static void RecordComputedAction(const std::string& action); 62 static void Record(const char *action, Profile *profile) [all...] |
/external/chromium/chrome/common/extensions/ |
extension_action_unittest.cc | 36 ExtensionAction action; local 39 ASSERT_EQ("", action.GetTitle(1)); 40 action.SetTitle(ExtensionAction::kDefaultTabId, "foo"); 41 ASSERT_EQ("foo", action.GetTitle(1)); 42 ASSERT_EQ("foo", action.GetTitle(100)); 43 action.SetTitle(100, "bar"); 44 ASSERT_EQ("foo", action.GetTitle(1)); 45 ASSERT_EQ("bar", action.GetTitle(100)); 46 action.SetTitle(ExtensionAction::kDefaultTabId, "baz"); 47 ASSERT_EQ("baz", action.GetTitle(1)) [all...] |
/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...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
DelegatedTask.java | 26 private final Runnable action; field in class:DelegatedTask 28 public DelegatedTask(Runnable action, HandshakeProtocol handshaker) { 29 this.action = action; 36 action.run();
|
/libcore/luni/src/main/java/java/security/ |
AccessController.java | 42 * Calls {@code action.run()}. 44 public static <T> T doPrivileged(PrivilegedAction<T> action) { 45 return action.run(); 49 * Calls {@code action.run()}. 51 public static <T> T doPrivileged(PrivilegedAction<T> action, AccessControlContext context) { 52 return action.run(); 56 * Calls {@code action.run()}. 58 public static <T> T doPrivileged(PrivilegedExceptionAction<T> action) throws PrivilegedActionException { 60 return action.run(); 69 * Calls {@code action.run()} [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/Tools/Scripts/webkitpy/tool/steps/ |
options.py | 32 blocks = make_option("--blocks", action="store", type="string", dest="blocks", default=None, help="Bug number which the created bug blocks.") 33 build = make_option("--build", action="store_true", dest="build", default=False, help="Build and run run-webkit-tests before committing.") 34 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.") 35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.") 36 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.") 37 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.") 38 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") 39 close_bug = make_option("--no-close", action="store_false", dest="close_bug", default=True, help="Leave bug open after landing.") 40 comment = make_option("--comment", action="store", type="string", dest="comment", help="Comment to post to bug.") 41 component = make_option("--component", action="store", type="string", dest="component", help="Component for the new bug." [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...] |
/external/webkit/Source/WebCore/platform/ |
ContextMenu.cpp | 37 static const ContextMenuItem* findItemWithAction(unsigned action, const Vector<ContextMenuItem>& items) 41 if (item.action() == action) 45 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems())) 52 ContextMenuItem* ContextMenu::itemWithAction(unsigned action) 56 return const_cast<ContextMenuItem*>(findItemWithAction(action, m_items));
|
ContextMenuItem.cpp | 35 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) 37 , m_action(action) 46 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, bool enabled, bool checked) 48 , m_action(action) 55 ContextMenuItem::ContextMenuItem(ContextMenuAction action, const String& title, bool enabled, bool checked, const Vector<ContextMenuItem>& subMenuItems) 57 , m_action(action) 90 void ContextMenuItem::setAction(ContextMenuAction action) 92 m_action = action; 95 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem
|
/sdk/rule_api/src/com/android/ide/common/api/ |
IMenuCallback.java | 23 * work of the action, and this level of indirection allows multiple actions (which 34 * @param action The action being applied. 35 * @param selectedNodes The nodes to apply the action to 36 * @param valueId For a Choices action, the string id of the selected choice 42 void action(RuleAction action, List<? extends INode> selectedNodes, String valueId, method in interface:IMenuCallback
|
/sdk/traceview/src/com/android/traceview/ |
TraceAction.java | 27 public TraceAction(int action, Call call) { 28 mAction = 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/llvm/include/llvm/Analysis/ |
Verifier.h | 32 /// @brief An enumeration to specify the action to be taken if errors found. 47 /// action indicated by the \p action argument will be used if errors are 50 VerifierFailureAction action = AbortProcessAction ///< Action to take 56 /// the action taken depends on the \p action parameter. 62 VerifierFailureAction action = AbortProcessAction, ///< Action to take 70 VerifierFailureAction action = AbortProcessAction ///< Action to tak [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
EditorInfoCompatUtils.java | 64 final String action; local 67 action = "actionUnspecified"; 70 action = "actionNone"; 73 action = "actionGo"; 76 action = "actionSearch"; 79 action = "actionSend"; 82 action = "actionNext"; 85 action = "actionDone"; 89 action = "actionPrevious"; 91 action = "actionUnknown(" + actionId + ")" [all...] |
/external/antlr/src/org/antlr/runtime/tree/ |
TreeVisitor.java | 42 /** Visit every node in tree t and trigger an action for each node 50 * Return result of applying post action to this node. 52 public Object visit(Object t, TreeVisitorAction action) { 55 if ( action!=null && !isNil ) { 56 t = action.pre(t); // if rewritten, walk children of new t 60 Object visitResult = visit(child, action); 66 if ( action!=null && !isNil ) t = action.post(t);
|
/external/chromium/webkit/glue/ |
form_data.cc | 17 action(data.action), 29 action == form.action &&
|
/external/llvm/test/FrontendC/ |
2009-05-04-EnumInreg.c | 1 // RUN: %llvmgcc -S -m32 -mregparm=3 %s -o - | grep {inreg %action} 18 int kobject_uevent(struct kobject *kobj, enum kobject_action action) {}
|
/external/webkit/Source/WebCore/platform/qt/ |
ContextMenuItemQt.cpp | 37 m_platformDescription.action = ContextMenuItemTagNoAction; 42 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, 46 m_platformDescription.action = action; 81 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem 83 return m_platformDescription.action; 86 void ContextMenuItem::setAction(ContextMenuAction action) 88 m_platformDescription.action = action;
|
/external/webkit/Source/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;
|
/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/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 (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) { 59 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
|
/external/chromium/net/tools/crash_cache/ |
crash_cache.cc | 43 int RunSlave(RankCrashes action) { 48 cmdline.AppendArg(base::IntToString(action)); 52 printf("Unable to run test %d\n", action); 59 printf("Unable to get return code, test %d\n", action); 63 printf("Test %d failed, code %d\n", action, exit_code); 85 bool CreateTargetFolder(const FilePath& path, RankCrashes action, 113 DCHECK(action > disk_cache::NO_CRASH && action < disk_cache::MAX_CRASH); 115 *full_path = path.AppendASCII(folders[action]); 132 int SimpleInsert(const FilePath& path, RankCrashes action, 355 RankCrashes action = static_cast<RankCrashes>(strtol(argv[1], &end, 0)); local [all...] |
/external/webkit/Source/WebCore/platform/gtk/ |
ContextMenuItemGtk.cpp | 35 static const char* gtkStockIDFromContextMenuAction(const ContextMenuAction& action) 37 switch (action) { 131 ContextMenuItem::ContextMenuItem(ContextMenuItemType type, ContextMenuAction action, const String& title, ContextMenu* subMenu) 138 GOwnPtr<char> actionName(g_strdup_printf("context-menu-action-%d", action)); 142 platformAction = GTK_ACTION(gtk_toggle_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action))); 144 platformAction = gtk_action_new(actionName.get(), title.utf8().data(), 0, gtkStockIDFromContextMenuAction(action)); 149 g_object_set_data(G_OBJECT(m_platformDescription), WEBKIT_CONTEXT_MENU_ACTION, GINT_TO_POINTER(action)); 195 ContextMenuAction ContextMenuItem::action() const function in class:WebCore::ContextMenuItem 200 void ContextMenuItem::setAction(ContextMenuAction action) 207 GtkAction* action = gtk_activatable_get_related_action(GTK_ACTIVATABLE(m_platformDescription)); local 213 GtkAction* action = gtk_activatable_get_related_action(GTK_ACTIVATABLE(m_platformDescription)); local 231 GtkAction* action = gtk_activatable_get_related_action(GTK_ACTIVATABLE(m_platformDescription)); local 252 GtkAction* action = gtk_activatable_get_related_action(GTK_ACTIVATABLE(m_platformDescription)); local [all...] |