HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 101 - 125 of 830) sorted by null

1 2 3 45 6 7 8 91011>>

  /system/core/init/
init.h 22 class Action;
  /system/update_engine/common/
mock_action.h 24 #include "update_engine/common/action.h"
37 class MockAction : public Action<MockAction> {
  /external/droiddriver/src/io/appium/droiddriver/validators/
DefaultAccessibilityValidator.java 24 import io.appium.droiddriver.actions.Action;
33 public boolean isApplicable(UiElement element, Action action) {
38 public String validate(UiElement element, Action action) {
ExemptedClassesValidator.java 23 import io.appium.droiddriver.actions.Action;
35 public boolean isApplicable(UiElement element, Action action) {
58 public String validate(UiElement element, Action action) {
  /external/v8/src/heap/
memory-reducer.h 84 enum Action { kDone, kWait, kRun };
87 State(Action action, int started_gcs, double next_gc_start_ms,
89 : action(action),
93 Action action; member in struct:v8::internal::MemoryReducer::State
132 return state_.action == kDone && state_.started_gcs > 0;
  /frameworks/support/compat/gingerbread/android/support/v4/app/
NotificationCompatBase.java 29 public static abstract class Action {
38 Action build(int icon, CharSequence title, PendingIntent actionIntent,
41 public Action[] newArray(int length);
  /external/clang/include/clang/Driver/
Job.h 25 class Action;
44 /// Source - The action which caused the creation of this job.
45 const Action &Source;
85 Command(const Action &Source, const Tool &Creator, const char *Executable,
99 /// getSource - Return the Action which caused the creation of this job.
100 const Action &getSource() const { return Source; }
126 FallbackCommand(const Action &Source_, const Tool &Creator_,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 19 import com.android.tv.settings.dialog.old.Action;
57 public void onActionClicked(Action action) {
59 mListener.onActionClicked(action);
223 * @return the action title to indicate the form is correct.
230 * @return the action title to indicate the form should be canceled and its
290 * @param selectedAction the action in actions that is currently selected,
294 protected ActionFragment getActionFragment(FormPage formPage, ArrayList<Action> actions,
295 Action selectedAction) {
300 // TODO: Set initial focus action
505 Action action = actions.get(i); local
    [all...]
  /external/protobuf/benchmarks/
ProtoBench.java 104 benchmark("Serialize to byte string", inputData.length, new Action() {
107 benchmark("Serialize to byte array", inputData.length, new Action() {
110 benchmark("Serialize to memory stream", inputData.length, new Action() {
116 benchmark("Serialize to /dev/null with FileOutputStream", inputData.length, new Action() {
121 benchmark("Serialize to /dev/null reusing FileOutputStream", inputData.length, new Action() {
128 benchmark("Deserialize from byte string", inputData.length, new Action() {
133 benchmark("Deserialize from byte array", inputData.length, new Action() {
139 benchmark("Deserialize from memory stream", inputData.length, new Action() {
156 private static void benchmark(String name, long dataSize, Action action) throws IOException
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 143 /// Calls 'Action' with the BoundNodes on every match.
147 /// Does not take ownership of 'Action'.
150 MatchCallback *Action);
152 MatchCallback *Action);
154 MatchCallback *Action);
156 MatchCallback *Action);
158 MatchCallback *Action);
160 MatchCallback *Action);
172 MatchCallback *Action);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ActionPresenterSelector.java 33 Action action = (Action) item; local
34 if (TextUtils.isEmpty(action.getLabel2())) {
47 Action mAction;
68 Action action = (Action) item; local
70 vh.mAction = action;
71 vh.mButton.setText(action.getLabel1())
90 Action action = (Action) item; local
    [all...]
DetailsOverviewRow.java 28 * description view, and optionally a series of {@link Action}s that can be taken for
264 * Adds an Action to the overview. It will throw ClassCastException if the current actions
267 * @param action The Action to add.
271 public final void addAction(Action action) {
272 getArrayObjectAdapter().add(action);
276 * Adds an Action to the overview at the specified position. It will throw ClassCastException if
280 * @param pos The position to insert the Action.
281 * @param action The Action to add
345 Action action = (Action) adapter.get(i); local
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 56 using testing::Action;
341 Action<MyFunction> action = MakeAction(new MyActionImpl); local
343 // When exercising the Perform() method of Action<F>, we must pass
348 EXPECT_EQ(5, action.Perform(make_tuple(true, 5)));
351 // Tests that Action<F> can be contructed from a pointer to
354 Action<MyFunction> action(new MyActionImpl);
357 // Tests that Action<F> delegates actual work to ActionInterface<F>.
359 const Action<MyFunction> action(new MyActionImpl)
    [all...]
  /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...]
  /system/extras/memory_replay/
Action.cpp 28 #include "Action.h"
39 class EndThreadAction : public Action {
48 class AllocAction : public Action {
171 size_t Action::MaxActionSize() {
179 Action* Action::CreateAction(uintptr_t key_pointer, const char* type,
181 Action* action = nullptr; local
183 action = new (action_memory) MallocAction(key_pointer, line);
185 action = new (action_memory) FreeAction(key_pointer)
    [all...]
  /developers/build/prebuilts/gradle/FindMyPhone/Wearable/src/main/java/com/example/android/wearable/findphone/
FindPhoneActivity.java 21 import android.app.Notification.Action;
40 // Create a notification with an action to toggle an alarm on the phone.
45 Action alarmAction = new Action(R.drawable.alarm_action_icon, "", toggleAlarmIntent);
  /developers/samples/android/wearable/wear/FindMyPhone/Wearable/src/main/java/com/example/android/wearable/findphone/
FindPhoneActivity.java 21 import android.app.Notification.Action;
40 // Create a notification with an action to toggle an alarm on the phone.
45 Action alarmAction = new Action(R.drawable.alarm_action_icon, "", toggleAlarmIntent);
  /development/samples/browseable/FindMyPhone/Wearable/src/com.example.android.wearable.findphone/
FindPhoneActivity.java 21 import android.app.Notification.Action;
40 // Create a notification with an action to toggle an alarm on the phone.
45 Action alarmAction = new Action(R.drawable.alarm_action_icon, "", toggleAlarmIntent);
  /external/llvm/tools/llvm-mc-fuzzer/
llvm-mc-fuzzer.cpp 30 Action(cl::desc("Action to perform:"),
131 if (Action == AC_Assemble)
133 else if (Action == AC_Disassemble)
136 llvm_unreachable("Unknown action");
  /external/vogar/test/vogar/android/
AbstractModeTest.java 27 import vogar.Action;
93 Action action = new Action("action", "blah", new File("resources"), new File("source"), local
95 return mode.newVmCommandBuilder(action, new File("/work"));
  /frameworks/support/compat/tests/java/android/support/v4/app/
NotificationCompatWearableExtenderTest.java 85 NotificationCompat.Action.Builder action2 = new NotificationCompat.Action.Builder(
88 .extend(new NotificationCompat.Action.WearableExtender()
104 .addAction(new NotificationCompat.Action(R.drawable.action_icon2, "Action1",
115 .setContentAction(5 /* arbitrary content action index */)
133 Notification.Action.Builder action2 = new Notification.Action.Builder(
136 .extend(new Notification.Action.WearableExtender()
152 .addAction(new Notification.Action(R.drawable.action_icon2, "Action1",
163 .setContentAction(5 /* arbitrary content action index */
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SubmenuAction.java 4 import org.eclipse.jface.action.Action;
5 import org.eclipse.jface.action.ActionContributionItem;
6 import org.eclipse.jface.action.IAction;
7 import org.eclipse.jface.action.IMenuCreator;
15 * Action which creates a submenu that is dynamically populated by subclasses
17 public abstract class SubmenuAction extends Action implements MenuListener, IMenuCreator {
66 IAction action = new Action(message, IAction.AS_PUSH_BUTTON) { local
71 action.setEnabled(false)
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/actions/accessibility/
AccessibilityAction.java 22 import io.appium.droiddriver.actions.Action;
27 * Implements {@link Action} via the Accessibility API.
40 * Performs the action via the Accessibility API.
43 * @param element the UiElement to perform the action on
44 * @return Whether the action is successful. Some actions throw exceptions in
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Count.java 20 import static com.opensymphony.xwork2.Action.SUCCESS;
  /external/jsoncpp/scons-tools/
targz.py 54 targzAction = SCons.Action.Action(targz, varlist=['TARGZ_COMPRESSION_LEVEL','TARGZ_BASEDIR'])
57 return SCons.Builder.Builder(action = SCons.Action.Action('$TARGZ_COM', '$TARGZ_COMSTR'),

Completed in 1055 milliseconds

1 2 3 45 6 7 8 91011>>