/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
H A D | FunctionDelegates.cs | 35 public delegate void Action(); method in namespace:Antlr.Runtime.Misc
|
/external/compiler-rt/lib/asan/tests/ |
H A D | asan_exceptions_test.cc | 5 class Action { class 7 Action() {} function in class:Action 18 const Action a;
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
H A D | Action.java | 26 public interface Action { interface
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/ |
H A D | MultiSynch.java | 29 public interface Action { interface in class:MultiSynch 43 * @param action Action to be invoked once full synchronization has been obtained. 45 public static void run(Object[] params, Set synchSet, Action action) { 52 * @param action Action to be invoked once full synchronization has been obtained. 54 public static void run(Object[] params, List synchList, Action action) { 61 * @param action Action to be invoked once full synchronization has been obtained. 63 public static void run(Object[] params, Object[] synchArr, Action action) { 74 private static void run(Object[] params, Object[] synchArr, Action action, int depth) {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
H A D | TreeFilter.cs | 36 public delegate void Action(); method in namespace:Antlr.Runtime.Tree 98 public virtual void ApplyOnce( object t, Action whichRule )
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
H A D | volumestatus.py | 83 class Action(object): class in inherits:object 100 return 'Action:%s' % self.code 122 action = Action()
|
/external/llvm/lib/Analysis/ |
H A D | Analysis.cpp | 84 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, argument 86 raw_ostream *DebugOS = Action != LLVMReturnStatusAction ? &errs() : nullptr; 96 if (Action == LLVMAbortProcessAction && Result) 105 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument 107 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs() 110 if (Action == LLVMAbortProcessAction && Result)
|
/external/mesa3d/scons/ |
H A D | crossmingw.py | 39 import SCons.Action namespace 123 shlib_action = SCons.Action.Action(shlib_generator, '$SHLINKCOMSTR', generator=1) 125 res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR')
|
H A D | gallium.py | 40 import SCons.Action namespace 77 action = SCons.Action.Action(symlink, " Symlinking $TARGET ...") 122 pipe = SCons.Action._subproc(env, [env['CC'], '--version'],
|
H A D | custom.py | 39 import SCons.Action namespace 80 action_list = [ SCons.Action.Action("$ARCOM", "$ARCOMSTR") ] 82 ranlib_action = SCons.Action.Action("$RANLIBCOM", "$RANLIBCOMSTR") 135 action = SCons.Action.Action(command, "$CODEGENCOMSTR")
|
/external/nanopb-c/tests/site_scons/site_tools/ |
H A D | nanopb.py | 31 import SCons.Action namespace
|
/external/vogar/src/vogar/ |
H A D | Action.java | 25 public final class Action { class 36 public Action(String name, String actionClass, File resourcesDirectory, method in class:Action
|
/external/blktrace/doc/ |
H A D | blktrace.tex | 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} 748 \subsubsection{Trace Action Specifiers}
|
/external/clang/test/SemaCXX/ |
H A D | constexpr-turing.cpp | 9 struct Action { struct 14 using State = Action[2];
|
/external/libchrome/base/posix/ |
H A D | file_descriptor_shuffle_unittest.cc | 17 struct Action { struct in namespace:base 24 Action(Type in_type, int in_fd1, int in_fd2 = -1) function in struct:base::Action 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> [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | EHStreamer.h | 70 unsigned Action; member in struct:llvm::EHStreamer::CallSiteEntry
|
/external/llvm/utils/TableGen/ |
H A D | CallingConvEmitter.cpp | 32 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O); 81 void CallingConvEmitter::EmitAction(Record *Action, argument 85 if (Action->isSubClassOf("CCPredicateAction")) { 88 if (Action->isSubClassOf("CCIfType")) { 89 ListInit *VTs = Action->getValueAsListInit("VTs"); 96 } else if (Action->isSubClassOf("CCIf")) { 97 O << Action->getValueAsString("Predicate"); 99 Action->dump(); 104 EmitAction(Action->getValueAsDef("SubAction"), Indent+2, O); 107 if (Action [all...] |
/external/protobuf/benchmarks/ |
H A D | 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 { 180 private static long timeAction(Action actio 200 interface Action { interface in class:ProtoBench [all...] |
/external/clang/include/clang/Tooling/ |
H A D | Tooling.h | 227 /// \param Action The action to be executed. 231 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action, 263 ToolAction *Action; member in class:clang::tooling::ToolInvocation 318 /// \param Action Tool action. 319 int run(ToolAction *Action);
|
/external/clang/lib/Driver/ |
H A D | Action.cpp | 1 //===--- Action.cpp - Abstract compilation steps --------------------------===// 10 #include "clang/Driver/Action.h" 16 Action::~Action() { 23 const char *Action::getClassName(ActionClass AC) { 49 : Action(InputClass, _Type), Input(_Input) { 54 BindArchAction::BindArchAction(std::unique_ptr<Action> Input, 56 : Action(BindArchClass, std::move(Input)), ArchName(_ArchName) {} 60 CudaDeviceAction::CudaDeviceAction(std::unique_ptr<Action> Input, 62 : Action(CudaDeviceClas [all...] |
/external/libyuv/files/ |
H A D | setup_links.py | 127 class Action(object): class in inherits:object 145 class Remove(Action): 166 class Rmtree(Action): 187 class Makedirs(Action): 201 class Symlink(Action): 369 A list of Action objects.
|
/external/lldb/examples/python/ |
H A D | performance.py | 65 class Action(object): class in inherits:object 71 assert False, "performance.Action.ThreadStopped(self, thread) must be overridden in a subclass" 73 class PlanCompleteAction (Action): 75 Action.__init__(self, callback, callback_owner) 87 class BreakpointAction (Action): 89 Action.__init__(self, callback, callback_owner)
|
/external/lldb/tools/debugserver/source/MacOSX/ |
H A D | MachException.h | 122 struct Action struct in class:MachException 129 uint8_t flags; // Action flags describing what to do with the exception
|
/external/v8/src/heap/ |
H A D | memory-reducer.h | 84 enum Action { kDone, kWait, kRun }; enum in class:v8::internal::MemoryReducer 87 State(Action action, int started_gcs, double next_gc_start_ms, 93 Action action;
|
/external/webrtc/ |
H A D | setup_links.py | 148 class Action(object): class in inherits:object 166 class Remove(Action): 187 class Rmtree(Action): 208 class Makedirs(Action): 222 class Symlink(Action): 390 A list of Action objects.
|