HomeSort by relevance Sort by last modified time
    Searched defs:Action (Results 1 - 25 of 492) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/memory_replay/
Action.h 24 class Action {
26 Action() {}
27 virtual ~Action() {}
38 static Action* CreateAction(uintptr_t key_pointer, const char* type,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 35 public delegate void Action();
  /external/compiler-rt/lib/asan/tests/
asan_exceptions_test.cc 5 class Action {
7 Action() {}
18 const Action a;
  /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...]
  /art/runtime/arch/mips/
fault_handler_mips.cc 71 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
95 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
113 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
  /art/runtime/arch/mips64/
fault_handler_mips64.cc 72 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
97 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
115 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
  /external/droiddriver/src/io/appium/droiddriver/actions/
Action.java 22 * Interface for performing action on a UiElement. An action is a high-level
26 public interface Action {
28 * Performs the action.
30 * @param element the Ui element to perform the action on
31 * @return Whether the action is successful. Some actions throw exceptions in
38 * Gets the timeout to wait for an indicator that the action has been carried
50 * It is recommended that this method return the description of the action,
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 71 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
100 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
152 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
tokens.h 14 #define Action 34
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecMain.c 67 EFI_IPSEC_ACTION Action;
149 &Action
157 switch (Action) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeFilter.cs 36 public delegate void Action();
74 executing an action in the preorder position. To get a bottom-up
75 visitor, we execute an action in the postorder position. ANTLR
98 public virtual void ApplyOnce( object t, Action whichRule )
  /external/boringssl/src/crypto/lhash/
lhash_test.cc 11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
94 enum Action {
100 Action action = static_cast<Action>(rand() % 3); local
101 switch (action) {
  /frameworks/base/core/java/com/android/internal/globalactions/
Action.java 24 public interface Action {
28 /** Create the view that represents this action. */
31 /** Called when the action is selected by the user. */
34 /** @return whether this action should appear in the dialog when the keygaurd is showing. */
37 /** @return whether this action should appear in the dialog before the device is provisioned. */
40 /** @return {@code true} if the action is enabled for user interaction. */
  /frameworks/base/tools/aapt2/xml/
XmlActionExecutor.cpp 33 void XmlNodeAction::Action(XmlNodeAction::ActionFunc f) {
38 void XmlNodeAction::Action(XmlNodeAction::ActionFuncWithDiag f) {
54 for (const ActionFuncWithDiag& action : actions_) {
55 error |= !action(el, diag);
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 31 enum Action { Success, Warning, Abort, LastAction };
49 /// @return the action should be taken.
  /frameworks/support/room/common/src/main/java/androidx/room/
ForeignKey.java 78 * Action to take when the parent {@link Entity} is deleted from the database.
82 * @return The action to take when the referenced entity is deleted from the database.
84 @Action int onDelete() default NO_ACTION;
87 * Action to take when the parent {@link Entity} is updated in the database.
91 * @return The action to take when the referenced entity is updated in the database.
93 @Action int onUpdate() default NO_ACTION;
111 * When a parent key is modified or deleted from the database, no special action is taken.
120 * The RESTRICT action means that the application is prohibited from deleting
123 * action and normal foreign key constraint enforcement is that the RESTRICT action processin
    [all...]
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 9 struct Action {
14 using State = Action[2];
  /external/libchrome/base/posix/
file_descriptor_shuffle_unittest.cc 17 struct Action {
24 Action(Type in_type, int in_fd1, int in_fd2 = -1)
30 bool operator==(const Action& other) const {
49 actions_.push_back(Action(Action::DUPLICATE, *result, fd));
54 actions_.push_back(Action(Action::MOVE, src, dest));
58 void Close(int fd) override { actions_.push_back(Action(Action::CLOSE, fd)); }
60 const std::vector<Action>& actions() const { return actions_;
    [all...]
  /external/vogar/src/vogar/
Action.java 25 public final class Action {
36 public Action(String name, String actionClass, File resourcesDirectory,
47 * Returns the local directory containing this action's required resource
48 * files, or {@code null} if this action is standalone.
55 * Returns this action's source path, or {@code null} if this file wasn't
63 * Returns this action's java file, or {@code null} if this file wasn't
79 * Returns a unique identifier for this action.
87 * action.
102 * Returns an action name appropriate for the given {@code .java} file
  /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...]
  /system/core/init/
action.h 56 using BuiltinAction = class Action*;
58 class Action {
60 Action(bool oneshot, Subcontext* subcontext, const std::string& filename, int line,
  /system/update_engine/common/
action.h 31 // The structure of these classes (Action, ActionPipe, ActionProcessor, etc.)
50 // code in the Action* classes and the code that is calls is non-blocking.
53 // ActionProcessor::StartProcessing() is called, it executes the first action.
54 // Each action tells the processor when it has completed, which causes the
55 // Processor to execute the next action. ActionProcessor may have a delegate
67 // InputObjectType. Each action class also has two typedefs of the same name
72 // Each concrete Action class derives from Action<T>. This means that during
73 // template instantiation of Action<T>, T is declared but not defined, which
76 // template instantiated first, so Action<T> *can* find the types it needs b
    [all...]
  /art/runtime/arch/arm/
fault_handler_arm.cc 90 bool NullPointerHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info, void* context) {
126 bool SuspensionHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
197 bool StackOverflowHandler::Action(int sig ATTRIBUTE_UNUSED, siginfo_t* info ATTRIBUTE_UNUSED,
  /external/autotest/server/cros/cfm/configurable_test/
actions.py 11 class Action(object):
22 Executes the action.
25 action.
27 logging.info('Executing action "%s"', self)
29 logging.info('Done executing action "%s"', self)
39 action.
43 class MuteMicrophone(Action):
50 class UnmuteMicrophone(Action):
57 class JoinMeeting(Action):
76 class CreateMeeting(Action)
    [all...]
  /external/blktrace/doc/
blktrace.tex 486 & & action specifiers in section~\ref{sec:act-table} \\ \hline
578 below it in the io stack. The remap action details what exactly is
593 \emph{a} & Action, a (small) string (1 or 2 characters) -- see table below for more details \\ \hline
627 \subsubsection{\label{sec:act-table}Action Table}
674 Seeing this in action:
684 \paragraph{Default output per action}
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7 8 91011>>