HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 26 - 50 of 222) sorted by null

12 3 4 5 6 7 8 9

  /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) {
LogCatView.java 27 import org.eclipse.jface.action.Action;
70 new Action(Messages.LogCatView_Copy) {
78 new Action(Messages.LogCatView_Select_All) {
86 new Action("Find") {
  /external/smack/src/org/jivesoftware/smackx/provider/
AdHocCommandDataProvider.java 30 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
66 // Action
67 String action = parser.getAttributeValue("", "action"); local
68 if (action != null) {
69 Action realAction = AdHocCommand.Action.valueOf(action);
70 if (realAction == null || realAction.equals(Action.unknown)) {
71 adHocCommandData.setAction(Action.unknown);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 114 /// Calls 'Action' with the BoundNodes on every match.
118 /// Does not take ownership of 'Action'.
121 MatchCallback *Action);
123 MatchCallback *Action);
125 MatchCallback *Action);
127 MatchCallback *Action);
129 MatchCallback *Action);
131 MatchCallback *Action);
  /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/chromium/testing/gmock/test/
gmock-more-actions_test.cc 55 using testing::Action;
234 Action<int()> a = Invoke(Nullary); // NOLINT
240 Action<bool(int)> a = Invoke(Unary); // NOLINT
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
254 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT
260 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT
266 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT
272 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT
282 Action<string(const char*, const char*, const char*, const char*,
293 Action<string(const char*, const char*, const char*, const char*
    [all...]
gmock-actions_test.cc 56 using testing::Action;
341 Action<MyFunction> 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<MyFunction> action(new MyActionImpl);
357 // Tests that Action<F> delegates actual work to ActionInterface<F>.
359 const Action<MyFunction> action(new MyActionImpl)
    [all...]
  /external/clang/lib/Driver/
WindowsToolChain.cpp 39 Tool *Windows::constructTool(Action::ActionClass AC) const {
41 case Action::InputClass:
42 case Action::BindArchClass:
43 case Action::LipoJobClass:
44 case Action::DsymutilJobClass:
45 case Action::VerifyJobClass:
46 case Action::PreprocessJobClass:
47 case Action::PrecompileJobClass:
48 case Action::AnalyzeJobClass:
49 case Action::MigrateJobClass
    [all...]
Job.cpp 19 Command::Command(const Action &_Source, const Tool &_Creator,
  /external/chromium/testing/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
248 // Implement this interface to define an action for function type F.
258 // Performs the action. This method is not const, as in general an
259 // action can have side effects and be stateful. For example, a
260 // get-the-next-element-from-the-collection action will need t
    [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...]
  /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/chromium/chrome/browser/net/
passive_log_collector.h 141 enum Action {
156 // Updates |out_info| with the information from |entry|. Returns an action
158 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
204 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
218 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
233 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
249 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
264 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
279 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry,
294 virtual Action DoAddEntry(const ChromeNetLog::Entry& entry
    [all...]
  /external/clang/include/clang/Driver/
Job.h 49 /// Source - The action which caused the creation of this job.
50 const Action &Source;
63 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
66 /// getSource - Return the Action which caused the creation of this job.
67 const Action &getSource() const { return Source; }
  /system/core/fastboot/
engine.c 80 typedef struct Action Action;
84 struct Action
87 Action *next;
95 int (*func)(Action *a, int status, char *resp);
100 static Action *action_list = 0;
101 static Action *action_last = 0;
179 static int cb_default(Action *a, int status, char *resp)
191 static Action *queue_action(unsigned op, const char *fmt, ...)
193 Action *a
    [all...]
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 34 StringRef Action("unknown");
49 case EmitHTML: Action = "EmitHTML"; break;
58 case FixIt: Action = "FixIt"; break;
90 Action = "RewriteIncludesAction";
102 case RewriteMacros: Action = "RewriteMacros"; break;
103 case RewriteObjC: Action = "RewriteObjC"; break;
104 case RewriteTest: Action = "RewriteTest"; break;
109 case MigrateSource: Action = "MigrateSource"; break;
114 case RunAnalysis: Action = "RunAnalysis"; break;
121 CI.getDiagnostics().Report(diag::err_fe_action_not_available) << Action;
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
NullPointerTesterTest.java 183 /** Action to take on a null param. */
184 public enum Action {
201 Action actionWhenFirstParamIsNull;
202 Action actionWhenSecondParamIsNull;
205 Action actionWhenFirstParamIsNull,
206 Action actionWhenSecondParamIsNull) {
273 for (TwoArg.Action first : TwoArg.Action.values()) {
274 for (TwoArg.Action second : TwoArg.Action.values())
    [all...]
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_change_processor.h 60 sync_api::SyncManager::ChangeRecord::Action action_;
64 sync_api::SyncManager::ChangeRecord::Action action,
67 : action_(action),
103 sync_api::SyncManager::ChangeRecord::Action action,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SubmenuAction.java 4 import org.eclipse.jface.action.Action;
5 import org.eclipse.jface.action.ActionContributionItem;
6 import org.eclipse.jface.action.IAction;
7 import org.eclipse.jface.action.IMenuCreator;
15 * Action which creates a submenu that is dynamically populated by subclasses
17 public abstract class SubmenuAction extends Action implements MenuListener, IMenuCreator {
66 IAction action = new Action(message, IAction.AS_PUSH_BUTTON) { local
71 action.setEnabled(false)
    [all...]
  /external/llvm/lib/Analysis/
Analysis.cpp 80 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
85 static_cast<VerifierFailureAction>(Action),
94 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) {
96 static_cast<VerifierFailureAction>(Action));
  /frameworks/compile/mclinker/include/mcld/LD/
Resolver.h 34 enum Action {
57 /// @return the action should be taken.

Completed in 1269 milliseconds

12 3 4 5 6 7 8 9