HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 51 - 75 of 558) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/sync/internal_api/public/
change_record.h 45 enum Action {
57 Action action; member in struct:syncer::ChangeRecord
  /external/chromium_org/ui/app_list/views/
search_result_actions_view.h 18 // strip. Each action is presented as a button and horizontally laid out.
33 void CreateImageButton(const SearchResult::Action& action);
34 void CreateBlueButton(const SearchResult::Action& action);
  /external/eigen/bench/btl/generic_bench/static/
intel_bench_fixed_size.hh 26 template <class Action>
30 Action action(size);
32 double time_baseline=time_init(nb_init,action);
39 time_baseline=time_init(nb_init,action);
44 double time_action=time_calculate(nb_calc,action);
49 time_action=time_calculate(nb_calc,action);
58 action.check_result();
62 return action.nb_op_base()/(time_action*1000000.0);
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 35 * {@link AdHocCommand.Action#execute execute}, {@link AdHocCommand.Action#next next},
36 * {@link AdHocCommand.Action#prev prev}, {@link AdHocCommand.Action#cancel cancel} or
37 * {@link AdHocCommand.Action#complete complete} actions results in executing that
38 * action in the remote location. In response to that action the internal state
40 * single stage command, then invoking the execute action will execute this
41 * action in the remote location. After that the local instance will have a
90 executeAction(Action.cancel, packetReplyTimeout)
    [all...]
AdHocCommand.java 44 * "cancel" action when submitting a stage response indicating that the command
55 * <li><i>malformed-action</i>. Extension of a <i>bad-request</i> error.</li>
56 * <li><i>bad-action</i>. Extension of a <i>bad-request</i> error.</li>
73 // TODO: result to the execution of every action. That result should have all the
163 * response to the execution of an action. All the notes added here are
179 * be answered to execute the next action. If that is the case it should be
218 * Executes the next action of the command with the information provided in
262 * Possible actions are: {@link Action#prev prev}, {@link Action#next next} and
263 * {@link Action#complete complete}. This method will be only invoked for commands that
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
Action.java 26 * Abstract definition of an action that could be performed, along with
29 public interface Action extends Collapser.Collapsible<Action> {
35 /** Returns an icon that can be clicked for the alternate action. */
38 /** Returns the content description of the icon for the alternate action. */
41 /** Build an {@link Intent} that will perform this action. */
44 /** Build an {@link Intent} that will perform the alternate action. */
47 /** Checks if the contact data for this action is primary. */
50 /** Checks if the contact data for this action is super primary. */
69 * Returns the number of times this action has been used
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/sound/
SoundActivity.java 27 import com.android.tv.settings.dialog.DialogFragment.Action;
37 public class SoundActivity extends Activity implements Action.Listener {
59 private ArrayList<Action> getActions() {
61 ArrayList<Action> actions = new ArrayList<Action>();
62 actions.add(new Action.Builder()
68 actions.add(new Action.Builder()
78 public void onActionClicked(Action action) {
79 if (ACTION_SOUND_ON.equals(action.getKey()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
CommonAction.java 20 import org.eclipse.jface.action.Action;
24 * Basic action extending the jFace Action class in order to implement
27 public class CommonAction extends Action implements ICommonAction {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
FitToCanvasAction.java 22 import org.eclipse.jface.action.Action;
24 public class FitToCanvasAction extends Action {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
ActionType.java 22 import com.android.tv.settings.dialog.old.Action;
29 * The different possible action types (screens).
88 Action toInitAction(Resources resources) {
92 Action toInitAction(Resources resources, String description) {
96 Action toAction(Resources resources, ActionBehavior actionBehavior, String description) {
97 return new Action.Builder()
104 ArrayList<Action> toActions(Resources resources) {
105 ArrayList<Action> actions = new ArrayList<Action>();
116 ArrayList<Action> toSelectableActions(Resources resources, ActionBehavior selectedBehavior)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/
AboutActivity.java 23 import com.android.tv.settings.dialog.old.Action;
54 * Action key for legal actions container.
59 * Action key for legal open source license action.
65 * Action keys for legal terms.
75 * Intent action of SettingsLicenseActivity.
80 * Intent action of device name activity.
129 public void onActionFocused(Action action) {
130 mSelectedIndex = getActions().indexOf(action);
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
Action.java 32 * An action within an {@link ActionAdapter}.
34 public class Action implements Parcelable {
36 private static final String TAG = "Action";
62 * Builds a Action object.
79 public Action build() {
80 Action action = new Action(); local
81 action.mKey = mKey;
82 action.mTitle = mTitle
241 Action action = builder.build(); local
    [all...]
BaseActionFragment.java 77 * Creates a new action fragment with the given list of actions and a given name.
79 public static Bundle buildArgs(ArrayList<Action> actions, String name) {
84 * Creates a new action fragment with the given list of actions and starting index.
86 public static Bundle buildArgs(ArrayList<Action> actions, int index) {
91 * Creates a new action fragment with the given list of actions, given name and starting index.
93 public static Bundle buildArgs(ArrayList<Action> actions, String name, int index) {
105 ArrayList<Action> actions = savedInstanceState.getParcelableArrayList(EXTRA_ACTIONS);
108 for (Action action : actions) {
109 mAdapter.addAction(action);
    [all...]
  /external/chromium_org/chromeos/dbus/
power_policy_controller.h 27 enum Action {
48 Action ac_idle_action;
49 Action battery_idle_action;
50 Action lid_closed_action;
  /external/eigen/bench/btl/generic_bench/timers/
portable_perf_analyzer.hh 27 template <class Action>
43 Action action(size);
45 // action.initialize();
46 // time_action = time_calculate(action);
51 action.initialize();
52 m_time_action = time_calculate(action);
58 Action _action(size);
69 action.initialize();
70 action.calculate()
    [all...]
portable_perf_analyzer_old.hh 26 template <class Action>
45 Action action(size);
47 // double time_baseline = time_init(action);
51 // time_baseline = time_init(action);
56 // time_baseline = std::min(time_baseline, time_init(action));
60 double time_action = time_calculate(action);
64 time_action = time_calculate(action);
69 time_action = std::min(time_action, time_calculate(action));
77 action.check_result()
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
ActionType.java 22 import com.android.tv.settings.dialog.old.Action;
65 Action toAction(Resources resources) {
69 Action toAction(Resources resources, String description) {
70 return new Action.Builder()
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/widi/
WifiDisplayActivity.java 20 import com.android.tv.settings.dialog.old.Action;
64 public void onActionClicked(Action action) {
65 Tag tag = Tag.valueOf(action.getKey());
99 ArrayList<Action> actions = new ArrayList<Action>();
100 actions.add(new Action.Builder().key(Tag.WIFI_DISPLAY_ON.name())
102 actions.add(new Action.Builder().key(Tag.WIFI_DISPLAY_OFF.name())
116 ArrayList<Action> actions = new ArrayList<Action>();
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/privacy/
ActionType.java 22 import com.android.tv.settings.dialog.old.Action;
44 Action toAction(Resources resources) {
48 Action toAction(Resources resources, String description) {
49 return new Action.Builder()
  /external/chromium_org/chrome/browser/extensions/activity_log/
counting_policy.h 28 virtual void ProcessAction(scoped_refptr<Action> action) OVERRIDE;
32 const Action::ActionType type,
38 <void(scoped_ptr<Action::ActionVector>)>& callback) OVERRIDE;
74 // A type used to track pending writes to the database. The key is an action
78 scoped_refptr<Action>,
83 // Adds an Action to those to be written out; this is an internal method used
85 void QueueAction(scoped_refptr<Action> action);
89 scoped_ptr<Action::ActionVector> DoReadFilteredData
    [all...]
  /external/chromium_org/ui/events/test/
mock_motion_event.h 20 explicit MockMotionEvent(Action action);
21 MockMotionEvent(Action action, base::TimeTicks time, float x, float y);
22 MockMotionEvent(Action action,
28 MockMotionEvent(Action action,
36 MockMotionEvent(Action action,
83 MotionEvent::Action action; member in struct:ui::test::MockMotionEvent
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 119 /// Calls 'Action' with the BoundNodes on every match.
123 /// Does not take ownership of 'Action'.
126 MatchCallback *Action);
128 MatchCallback *Action);
130 MatchCallback *Action);
132 MatchCallback *Action);
134 MatchCallback *Action);
136 MatchCallback *Action);
148 MatchCallback *Action);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
RemoveAccountDialog.java 20 import com.android.tv.settings.dialog.old.Action;
63 public void onActionClicked(Action action) {
64 if (KEY_OK.equals(action.getKey())) {
89 private ArrayList<Action> getActions() {
90 ArrayList<Action> actions = new ArrayList<Action>();
91 actions.add(new Action.Builder()
95 actions.add(new Action.Builder()
  /system/core/fastboot/
engine.c 61 typedef struct Action Action;
65 struct Action
68 Action *next;
76 int (*func)(Action *a, int status, char *resp);
81 static Action *action_list = 0;
82 static Action *action_last = 0;
124 static int cb_default(Action *a, int status, char *resp)
136 static Action *queue_action(unsigned op, const char *fmt, ...)
138 Action *a
    [all...]
  /art/runtime/
fault_handler.h 76 virtual bool Action(int sig, siginfo_t* siginfo, void* context) = 0;
89 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
99 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
109 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE;
119 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS;

Completed in 3328 milliseconds

1 23 4 5 6 7 8 91011>>