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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/gdbserver_tests/
hginfo.stderr.exp 0 (action at startup) vgdb me ...
nlgone_abrt.stderr.exp 0 (action at startup) vgdb me ...
nlgone_exit.stderr.exp 3 (action at startup) vgdb me ...
8 (action at exit) vgdb me ...
nlself_invalidate.stderr.exp 3 (action at startup) vgdb me ...
  /libcore/ojluni/src/main/java/java/util/
PrimitiveIterator.java 71 * Performs the given action for each remaining element, in the order
73 * or the action throws an exception. Errors or runtime exceptions
74 * thrown by the action are relayed to the caller.
76 * @param action The action to be performed for each element
77 * @throws NullPointerException if the specified action is null
80 void forEachRemaining(T_CONS action);
97 * Performs the given action for each remaining element until all elements
98 * have been processed or the action throws an exception. Actions are
100 * Exceptions thrown by the action are relayed to the caller
    [all...]
Spliterator.java 208 * public void forEachRemaining(Consumer<? super T> action) {
210 * action.accept((T) array[origin]);
213 * public boolean tryAdvance(Consumer<? super T> action) {
215 * action.accept((T) array[origin]);
256 * static <T> void parEach(TaggedArray<T> a, Consumer<T> action) {
259 * new ParEach(null, s, action, targetBatchSize).invoke();
264 * final Consumer<T> action;
268 * Consumer<T> action, long targetBatchSize) {
270 * this.spliterator = spliterator; this.action = action;
    [all...]
  /libcore/ojluni/src/main/java/java/security/
AccessController.java 40 * Calls {@code action.run()}.
42 public static <T> T doPrivileged(PrivilegedAction<T> action) {
43 return action.run();
47 * Calls {@code action.run()}.
49 public static <T> T doPrivilegedWithCombiner(PrivilegedAction<T> action) {
50 return action.run();
55 * Calls {@code action.run()}.
57 public static <T> T doPrivileged(PrivilegedAction<T> action,
59 return action.run();
63 * Calls {@code action.run()}
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
ThaiStateTransition.java 20 char action; field in class:ThaiStateTransition
22 public ThaiStateTransition(int nextState, char action)
25 this.action = action;
35 return action;
45 action = newAction;
50 return ((nextState < 10) ? "0" : "") + nextState + "/" + action + " ";
64 output.print(action);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionService.java 17 package com.android.messaging.datamodel.action;
28 final Action action, final int requestCode, final boolean launchesAnActivity) {
29 return ActionServiceImpl.makeStartActionPendingIntent(context, action, requestCode,
34 * Start an action by posting it over the the ActionService
36 public void startAction(final Action action) {
37 ActionServiceImpl.startAction(action);
41 * Schedule a delayed action by posting it over the the ActionService
43 public void scheduleAction(final Action action, final int code
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/metrics/
RecordUserAction.java 21 public static void record(final String action) {
23 nativeRecordUserAction(action);
30 nativeRecordUserAction(action);
35 private static native void nativeRecordUserAction(String action);
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
OnActionClickedListener.java 17 * Interface for receiving notification when an {@link Action} is clicked.
22 * Callback fired when the host fragment receives an action.
24 void onActionClicked(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/vogar/src/vogar/tasks/
PrepareUserDirTask.java 20 import vogar.Action;
26 private final Action action; field in class:PrepareUserDirTask
28 public PrepareUserDirTask(Target target, Action action) {
29 super("prepare " + action.getUserDir());
31 this.action = action;
35 File userDir = action.getUserDir();
37 File resourcesDirectory = action.getResourcesDirectory()
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
MultiSynch.java 29 public interface Action {
43 * @param action Action to be invoked once full synchronization has been obtained.
45 public static void run(Object[] params, Set synchSet, Action action) {
46 run(params, synchSet.toArray(), action, 0);
52 * @param action Action to be invoked once full synchronization has been obtained.
54 public static void run(Object[] params, List synchList, Action action) {
    [all...]
  /system/core/debuggerd/include/debuggerd/
handler.h 42 static void __attribute__((__unused__)) debuggerd_register_handlers(struct sigaction* action) {
43 sigaction(SIGABRT, action, nullptr);
44 sigaction(SIGBUS, action, nullptr);
45 sigaction(SIGFPE, action, nullptr);
46 sigaction(SIGILL, action, nullptr);
47 sigaction(SIGSEGV, action, nullptr);
49 sigaction(SIGSTKFLT, action, nullptr);
51 sigaction(SIGSYS, action, nullptr);
52 sigaction(SIGTRAP, action, nullptr);
53 sigaction(DEBUGGER_SIGNAL, action, nullptr)
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowKeyEvent.java 10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) {
14 this.action = action;
20 return action;
  /system/extras/memory_replay/tests/
ActionTest.cpp 21 #include "Action.h"
25 uint8_t memory[Action::MaxActionSize()];
27 Action* action = Action::CreateAction(0x1234, "malloc", line, memory); local
28 ASSERT_TRUE(action != NULL);
29 ASSERT_FALSE(action->DoesFree());
30 ASSERT_FALSE(action->EndThread());
33 action->Execute(&pointers);
42 Action* action = Action::CreateAction(0x1234, "malloc", line, memory) local
49 Action* action = Action::CreateAction(0x1234, "free", line, memory); local
62 Action* action = Action::CreateAction(0x1234, "calloc", line, memory); local
77 Action* action = Action::CreateAction(0, "free", line, memory); local
88 Action* action = Action::CreateAction(0x1234, "calloc", line1, memory); local
99 Action* action = Action::CreateAction(0x1234, "realloc", line, memory); local
125 Action* action = Action::CreateAction(0x1234, "realloc", line1, memory); local
136 Action* action = Action::CreateAction(0x1234, "memalign", line, memory); local
151 Action* action = Action::CreateAction(0x1234, "memalign", line1, memory); local
162 Action* action = Action::CreateAction(0x0, "thread_done", line, memory); local
    [all...]
  /external/eigen/bench/btl/generic_bench/timers/
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...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyTouchEvent.java 26 public MonkeyTouchEvent(int action) {
27 super(MonkeyEvent.EVENT_TYPE_TOUCH, InputDevice.SOURCE_TOUCHSCREEN, action);
MonkeyTrackballEvent.java 25 public MonkeyTrackballEvent(int action) {
26 super(MonkeyEvent.EVENT_TYPE_TRACKBALL, InputDevice.SOURCE_TRACKBALL, action);
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
KeyEvents.java 26 public static KeyEvent createTestEvent(int action, int keyCode, int meta) {
31 action,
37 public static KeyEvent createLeftCtrlKey(int action) {
38 int meta = (action == KeyEvent.ACTION_UP)
42 return createTestEvent(action, KeyEvent.KEYCODE_CTRL_LEFT, meta);
45 public static KeyEvent createRightCtrlKey(int action) {
46 int meta = (action == KeyEvent.ACTION_UP)
50 return createTestEvent(action, KeyEvent.KEYCODE_CTRL_RIGHT, meta);
  /external/adhd/cras/src/tests/
ramp_unittest.cc 24 struct cras_ramp_action action; local
29 action = cras_ramp_get_current_action(ramp);
31 EXPECT_EQ(action.type, CRAS_RAMP_ACTION_NONE);
32 EXPECT_FLOAT_EQ(1.0, action.scaler);
33 EXPECT_FLOAT_EQ(0.0, action.increment);
43 cras_ramp_action action; local
50 action = cras_ramp_get_current_action(ramp);
52 EXPECT_EQ(CRAS_RAMP_ACTION_PARTIAL, action.type);
53 EXPECT_FLOAT_EQ(0.0, action.scaler);
54 EXPECT_FLOAT_EQ(increment, action.increment)
66 struct cras_ramp_action action; local
92 struct cras_ramp_action action; local
117 struct cras_ramp_action action; local
154 struct cras_ramp_action action; local
190 cras_ramp_action action; local
213 struct cras_ramp_action action; local
239 struct cras_ramp_action action; local
264 struct cras_ramp_action action; local
304 struct cras_ramp_action action; local
349 struct cras_ramp_action action; local
377 struct cras_ramp_action action; local
    [all...]
  /external/adhd/cras/src/server/
cras_ramp.c 73 struct cras_ramp_action action; local
76 action = cras_ramp_get_current_action(ramp);
77 if (action.type == CRAS_RAMP_ACTION_INVALID)
84 if (action.type == CRAS_RAMP_ACTION_NONE)
87 ramp->start_scaler = action.scaler;
91 if (action.type == CRAS_RAMP_ACTION_NONE)
94 ramp->start_scaler = action.scaler;
107 struct cras_ramp_action action; local
110 action.type = CRAS_RAMP_ACTION_INVALID;
111 action.scaler = 1.0
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
CtsTestUtils.java 23 public static Throwable assertThrows(Runnable action) {
24 return assertThrows(Throwable.class, action);
27 public static <E extends Throwable> E assertThrows(Class<E> exceptionClass, Runnable action) {
29 action.run();
  /external/robolectric-shadows/
wrapper.sh 49 local action="${1-}"; shift || fatal "missing argument: action"
52 if [ "$action" = 'wrap' ]; then
60 elif [ "$action" = 'eval' ]; then
72 fatal "invalid action: $action"

Completed in 3575 milliseconds

1 2 3 4 5 6 7 8 91011>>