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

1 2 3 4

  /art/runtime/arch/mips/
fault_handler_mips.cc 40 bool NullPointerHandler::Action(int sig, siginfo_t* info, void* context) {
44 bool SuspensionHandler::Action(int sig, siginfo_t* info, void* context) {
48 bool StackOverflowHandler::Action(int sig, siginfo_t* info, void* context) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 35 public delegate void Action();
  /external/chromium_org/tools/cr/cr/actions/
action.py 5 """A module for the Action plugin base class."""
10 class Action(cr.Plugin):
14 including support for selecting the right implementation of an action and
15 handling command line arguments for the action.
36 want to not perform the action at all.
37 It is important that commands can detect this so they can modify the action
39 performing actions that were only there to produce the inputs of an action
43 True if this implementation is a skip action.
  /external/compiler-rt/lib/asan/tests/
asan_exceptions_test.cc 5 class Action {
7 Action() {}
18 const Action a;
  /external/chromium_org/chrome/browser/download/
download_danger_prompt.h 25 enum Action {
30 typedef base::Callback<void(Action)> OnDone;
33 // will be run when the the respective action is invoked. |canceled| may also
48 virtual void InvokeActionForTesting(Action action) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorHistory.h 47 class Action : public RefCountedWillBeGarbageCollectedFinalized<Action> {
50 explicit Action(const String& name);
51 virtual ~Action();
56 virtual void merge(PassRefPtrWillBeRawPtr<Action>);
71 bool perform(PassRefPtrWillBeRawPtr<Action>, ExceptionState&);
79 WillBeHeapVector<RefPtrWillBeMember<Action> > m_history;
InspectorHistory.cpp 42 class UndoableStateMark FINAL : public InspectorHistory::Action {
44 UndoableStateMark() : InspectorHistory::Action("[UndoableState]") { }
57 InspectorHistory::Action::Action(const String& name) : m_name(name)
61 InspectorHistory::Action::~Action()
65 void InspectorHistory::Action::trace(Visitor* visitor)
69 String InspectorHistory::Action::toString()
74 bool InspectorHistory::Action::isUndoableStateMark()
79 String InspectorHistory::Action::mergeId(
116 Action* action = m_history[m_afterLastActionIndex - 1].get(); local
135 Action* action = m_history[m_afterLastActionIndex].get(); local
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Actions.pxd 2 cdef class Action:
6 cdef class Return(Action):
11 cdef class Call(Action):
16 cdef class Begin(Action):
21 cdef class Ignore(Action):
24 cdef class Text(Action):
Scanners.pxd 3 from Cython.Plex.Actions cimport Action
31 @cython.locals(action=Action)
Actions.py 9 class Action(object):
18 class Return(Action):
20 Internal Plex action which causes |value| to
37 class Call(Action):
39 Internal Plex action which causes a function to be called.
55 class Begin(Action):
57 Begin(state_name) is a Plex action which causes the Scanner to
75 class Ignore(Action):
77 IGNORE is a Plex action which causes its associated token
90 class Text(Action)
    [all...]
  /external/chromium_org/third_party/cython/src/Tools/site_scons/site_tools/
cython.py 21 from SCons.Action import Action
28 cythonAction = Action("$CYTHONCOM")
35 action = cythonAction,
pyext.py 29 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
53 pyobj = SCons.Builder.Builder(action = {},
74 import SCons.Action
76 action = SCons.Action.Action("$PYEXTLINKCOM", "$PYEXTLINKCOMSTR")
78 action]
79 pyext = SCons.Builder.Builder(action = action_list,
218 action = SCons.Action.Action("$PYEXTCCCOM", "$PYEXTCCCOMSTR"
    [all...]
  /external/droiddriver/src/com/google/android/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,
  /external/chromium_org/ui/app_list/
search_result.cc 12 SearchResult::Action::Action(const gfx::ImageSkia& base_image,
21 SearchResult::Action::Action(const base::string16& label_text,
26 SearchResult::Action::~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/chromium_org/content/browser/renderer_host/input/
synthetic_gesture_target_android.h 46 enum Action {
56 JNIEnv* env, Action action, int pointer_count, int64 time_in_ms);
  /external/chromium_org/sync/internal_api/public/
change_record.h 45 enum Action {
57 Action action; member in struct:syncer::ChangeRecord
  /art/runtime/arch/arm64/
fault_handler_arm64.cc 85 bool NullPointerHandler::Action(int sig, siginfo_t* info, void* context) {
108 bool SuspensionHandler::Action(int sig, siginfo_t* info, void* context) {
158 bool StackOverflowHandler::Action(int sig, siginfo_t* info, void* context) {
  /external/chromium_org/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));
59 actions_.push_back(Action(Action::CLOSE, fd));
62 const std::vector<Action>& actions() const { return actions_;
    [all...]
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.h 46 enum Action {
143 RTCPeerConnectionHandler* pc_handler, Action action,
  /external/chromium_org/third_party/mesa/src/scons/
crossmingw.py 30 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
39 import SCons.Action
123 shlib_action = SCons.Action.Action(shlib_generator, '$SHLINKCOMSTR', generator=1)
125 res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR')
127 res_builder = SCons.Builder.Builder(action=res_action, suffix='.o',
gallium.py 27 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
40 import SCons.Action
77 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...")
78 last = env.Command(os.path.join(target_dir, target_name), last, action)
122 pipe = SCons.Action._subproc(env, [env['CC'], '--version'],
  /external/chromium_org/tools/grit/grit/
scons.py 239 import SCons.Action
243 build_action = SCons.Action.FunctionAction(_Builder, varlist=['RCFLAGS'])
244 emit_action = SCons.Action.FunctionAction(_Emitter, varlist=['RCFLAGS'])
246 builder = SCons.Builder.Builder(action=build_action, emitter=emit_action,
  /external/clang/lib/Driver/
Action.cpp 1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
16 Action::~Action() {
23 const char *Action::getClassName(ActionClass AC) {
46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
52 : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) {
57 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
58 : Action(Kind, Input, Type)
    [all...]
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 9 struct Action {
14 using State = Action[2];

Completed in 675 milliseconds

1 2 3 4