/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
TableView.java | 24 import org.eclipse.jface.action.Action; 41 private Action mCopyAction; 42 private Action mSelectAllAction; 70 // setup the copy action 74 mCopyAction = new Action(Messages.TableView_Copy) { 83 // setup the select all action 85 mSelectAllAction = new Action(Messages.TableView_Select_All) {
|
/external/gmock/test/ |
gmock-actions_test.cc | 56 using testing::Action; 341 Action<MyGlobalFunction> 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<MyGlobalFunction> action(new MyActionImpl); 357 // Tests that Action<F> delegates actual work to ActionInterface<F>. 359 const Action<MyGlobalFunction> action(new MyActionImpl) [all...] |
gmock-more-actions_test.cc | 55 using testing::Action; 235 Action<int()> a = Invoke(Nullary); // NOLINT 241 Action<bool(int)> a = Invoke(Unary); // NOLINT 248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT 255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT 261 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT 267 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT 273 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT 283 Action<string(const char*, const char*, const char*, const char*, 294 Action<string(const char*, const char*, const char*, const char* [all...] |
/system/core/init/ |
action.h | 45 class Action { 47 Action(bool oneshot = false); 54 void CombineAction(const Action& action); 63 bool TriggersEqual(const Action& other) const; 89 virtual bool CheckTriggers(const Action& action) const = 0; 96 void AddAction(std::unique_ptr<Action> action); 111 std::vector<std::unique_ptr<Action>> actions_ [all...] |
/external/eigen/bench/btl/generic_bench/ |
bench.hh | 40 template <template<class> class Perf_Analyzer, class Action> 43 if (BtlConfig::skipAction(Action::name())) 46 string filename="bench_"+Action::name()+".dat"; 64 Perf_Analyzer<Action> perf_action; 153 template <class Action> 157 bench<Portable_Perf_Analyzer,Action>(size_min,size_max,nb_point); 159 // bench<Mixed_Perf_Analyzer,Action>(size_min,size_max,nb_point); 163 // bench<X86_Perf_Analyzer,Action>(size_min,size_max,nb_point); 164 // bench<STL_Perf_Analyzer,Action>(size_min,size_max,nb_point);
|
/external/llvm/lib/Analysis/ |
Analysis.cpp | 84 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, 86 raw_ostream *DebugOS = Action != LLVMReturnStatusAction ? &errs() : nullptr; 96 if (Action == LLVMAbortProcessAction && Result) 105 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { 107 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs() 110 if (Action == LLVMAbortProcessAction && Result)
|
/external/google-breakpad/src/testing/test/ |
gmock-more-actions_test.cc | 55 using testing::Action; 235 Action<int()> a = Invoke(Nullary); // NOLINT 241 Action<bool(int)> a = Invoke(Unary); // NOLINT 248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT 255 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT 261 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT 267 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT 273 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT 283 Action<string(const char*, const char*, const char*, const char*, 294 Action<string(const char*, const char*, const char*, const char* [all...] |
/external/llvm/lib/LineEditor/ |
LineEditor.cpp | 55 CompletionAction Action; 58 Action.Kind = CompletionAction::AK_ShowCompletions; 59 return Action; 70 Action.Kind = CompletionAction::AK_ShowCompletions; 73 Action.Completions.push_back(I->DisplayText); 75 Action.Kind = CompletionAction::AK_Insert; 76 Action.Text = CommonPrefix; 79 return Action; 85 CompletionAction Action; 86 Action.Kind = CompletionAction::AK_ShowCompletions [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
ActionServiceImpl.java | 17 package com.android.messaging.datamodel.action; 47 * Start action by sending intent to the service 48 * @param action - action to start 50 protected static void startAction(final Action action) { 53 actionBundle.putParcelable(BUNDLE_ACTION, action); 55 action.markStart(); 60 * Schedule an action to run after specified delay using alarm manager to send pendingintent 61 * @param action - action to star 261 Action action; local [all...] |
Action.java | 17 package com.android.messaging.datamodel.action; 26 import com.android.messaging.datamodel.action.ActionMonitor.ActionCompletedListener; 27 import com.android.messaging.datamodel.action.ActionMonitor.ActionExecutedListener; 39 public abstract class Action implements Parcelable { 42 // Members holding the parameters common to all actions - no action state 49 private final List<Action> mBackgroundActions = new LinkedList<Action>(); 52 * Process the action locally - runs on action service thread. 71 * Queues up background actions for background processing after the current action ha [all...] |
/developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/ |
ActionsPresets.java | 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 100 builder.addAction(action); 117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 124 wearableOptions.addAction(action); 136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder [all...] |
/developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/ |
ActionsPresets.java | 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 100 builder.addAction(action); 117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 124 wearableOptions.addAction(action); 136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder [all...] |
/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/ |
ActionsPresets.java | 93 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 100 builder.addAction(action); 117 NotificationCompat.Action action = new NotificationCompat.Action.Builder( local 124 wearableOptions.addAction(action); 136 NotificationCompat.Action phoneAction = new NotificationCompat.Action.Builder [all...] |
/external/gmock/include/gmock/ |
gmock-actions.h | 51 // To implement an action Foo, define: 53 // 2. a factory function that creates an Action object from a 58 // management as Action objects can now be copied like plain values. 77 "Default action undefined for the function return type."); 122 // There's no need for a default action for signed wchar_t, as that 125 // There's also no need for a default action for unsigned wchar_t, as 250 // Implement this interface to define an action for function type F. 260 // Performs the action. This method is not const, as in general an 261 // action can have side effects and be stateful. For example, a 262 // get-the-next-element-from-the-collection action will need t [all...] |
/external/google-breakpad/src/testing/include/gmock/ |
gmock-actions.h | 51 // To implement an action Foo, define: 53 // 2. a factory function that creates an Action object from a 58 // management as Action objects can now be copied like plain values. 77 "Default action undefined for the function return type."); 122 // There's no need for a default action for signed wchar_t, as that 125 // There's also no need for a default action for unsigned wchar_t, as 250 // Implement this interface to define an action for function type F. 260 // Performs the action. This method is not const, as in general an 261 // action can have side effects and be stateful. For example, a 262 // get-the-next-element-from-the-collection action will need t [all...] |
/external/vogar/src/vogar/android/ |
DeviceRuntime.java | 27 import vogar.Action; 66 @Override public Set<Task> installActionTasks(Action action, File jar) { 68 addCreateDexJarAndPushTasks(result, action.getName(), jar, action); 72 @Override public Task executeActionTask(Action action, boolean useLargeTimeout) { 73 return new RunActionTask(run, action, useLargeTimeout); 76 @Override public VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
SelectThemeAction.java | 22 import org.eclipse.jface.action.Action; 23 import org.eclipse.jface.action.IAction; 26 * Action which brings up the "Create new XML File" wizard, pre-selected with the 29 class SelectThemeAction extends Action {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
LayoutView.java | 25 import org.eclipse.jface.action.Action; 26 import org.eclipse.jface.action.IMenuManager; 27 import org.eclipse.jface.action.IToolBarManager; 47 private Action mShowExtrasAction = new Action("Show &Extras", Action.AS_CHECK_BOX) { 54 private Action mLoadAllViewsAction = new Action("Load All &Views") { 63 private Action mOnBlackWhiteAction = new Action("Change Background &Color") [all...] |
/system/extras/memory_replay/ |
Thread.cpp | 19 #include "Action.h" 60 Action* Thread::CreateAction(uintptr_t key_pointer, const char* type, const char* line) { 61 return Action::CreateAction(key_pointer, type, line, action_memory_);
|
/system/netd/server/ |
NetlinkHandler.h | 45 void notifyAddressChanged(NetlinkEvent::Action action, const char *addr, const char *iface, 49 void notifyRouteChange(NetlinkEvent::Action action, const char *route, const char *gateway, const char *iface);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeVisitor.h | 43 - (ANTLRTreeVisitor *)visit:(id<ANTLRTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeVisitor.h | 44 - (ANTLRTreeVisitor *)visit:(id<ANTLRBaseTree>)t Action:(ANTLRTreeVisitorAction *)action;
|
/external/clang/include/clang/CodeGen/ |
BackendUtil.h | 39 StringRef TDesc, llvm::Module *M, BackendAction Action,
|