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

12 3 4 5 6

  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/
RefreshWindowsAction.java 22 import org.eclipse.jface.action.Action;
28 public class RefreshWindowsAction extends Action implements ImageAction {
SelectedNodeEnabledAction.java 22 import org.eclipse.jface.action.Action;
25 public class SelectedNodeEnabledAction extends Action implements ITreeChangeListener {
  /external/clang/include/clang/CodeGen/
BackendUtil.h 36 BackendAction Action, llvm::raw_ostream *OS);
  /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; }
Driver.h 32 class Action;
314 /// ConstructAction - Construct the appropriate action to do for
317 Action *ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
318 Action *Input) const;
322 /// action \arg A.
324 const Action *A,
332 /// the action \arg JA. The result is appended to the compilation's
336 /// \param JA - The action of interest.
337 /// \param BaseInput - The original input file that this action was
339 /// \param AtTopLevel - Whether this is a "top-level" action
    [all...]
  /external/llvm/include/llvm/CompilerDriver/
Tool.h 17 #include "llvm/CompilerDriver/Action.h"
41 /// GenerateAction - Generate an Action given particular command-line
43 virtual int GenerateAction (Action& Out,
50 /// GenerateAction - Generate an Action given particular command-line
52 virtual int GenerateAction (Action& Out,
83 int GenerateAction(Action& Out,
Action.h 1 //===--- Action.h - The LLVM Compiler Driver --------------------*- C++ -*-===//
10 // Action - encapsulates a single shell command.
24 /// Action - A class that encapsulates a single shell command.
25 class Action {
31 /// this action?
  /external/chromium/testing/gmock/test/
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/
ToolChains.cpp 205 Action::ActionClass Key;
216 Key = Action::AnalyzeJobClass;
233 case Action::InputClass:
234 case Action::BindArchClass:
236 case Action::PreprocessJobClass:
238 case Action::AnalyzeJobClass:
240 case Action::PrecompileJobClass:
241 case Action::CompileJobClass:
243 case Action::AssembleJobClass: {
250 case Action::LinkJobClass
    [all...]
Job.cpp 17 Command::Command(const Action &_Source, const Tool &_Creator,
  /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 abstract class SubmenuAction extends Action implements MenuListener, IMenuCreator {
61 IAction action = new Action(message, IAction.AS_PUSH_BUTTON) { local
66 action.setEnabled(false)
    [all...]
  /sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/
ShowOverlayAction.java 26 import org.eclipse.jface.action.Action;
32 public class ShowOverlayAction extends Action implements ImageAction, IImageChangeListener {
39 super("Show In &Loupe", Action.AS_CHECK_BOX);
AboutAction.java 24 import org.eclipse.jface.action.Action;
31 public class AboutAction extends Action implements ImageAction {
  /external/llvm/lib/Analysis/
Analysis.cpp 77 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
82 static_cast<VerifierFailureAction>(Action),
91 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) {
93 static_cast<VerifierFailureAction>(Action));
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/
TypeAction.java 21 * Action to type in a string on the device.
23 public class TypeAction implements Action {
WaitAction.java 21 * Action that specifies to wait for a certain amount of time.
23 public class WaitAction implements Action {
  /external/clang/lib/CodeGen/
BackendUtil.cpp 82 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS);
99 void EmitAssembly(BackendAction Action, raw_ostream *OS);
190 bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action,
317 if (Action == Backend_EmitObj)
319 else if (Action == Backend_EmitMCNull)
322 assert(Action == Backend_EmitAssembly && "Invalid action!");
339 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) {
344 switch (Action) {
359 if (!AddEmitPasses(Action, FormattedOS)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactListFragment.java 43 private List<Action> mActions;
63 public void setActions(List<Action> actions) {
93 // Set action title based on summary value
94 final Action action = mActions.get(position);
95 String mimeType = action.getMimeType();
116 actionsContainer.setTag(action);
118 alternateActionButton.setTag(action);
120 final boolean hasAlternateAction = action.getAlternateIntent() != null;
122 alternateActionButton.setImageDrawable(action.getAlternateIcon())
    [all...]
ResolveCache.java 95 * Get the {@link Entry} best associated with the given {@link Action},
98 protected Entry getEntry(Action action) {
99 final String mimeType = action.getMimeType();
104 Intent intent = action.getIntent();
174 * given {@link Action}.
176 public boolean hasResolve(Action action) {
177 return getEntry(action).bestResolve != null;
181 * Find the best description for the given {@link Action}, usually use
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.cpp 73 /// ComputeActionsTable - Compute the actions table and gather the first action
80 // The action table follows the call-site table in the LSDA. The individual
159 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction };
160 Actions.push_back(Action);
164 // Record the first action of the landing pad site.
168 // Information used when created the call-site table. The action record
170 // action record, relative to the start of the actions table. This value is
220 /// appropriate action. The entry for an ordinary call has a try-range
221 /// containing the call and zero for the landing pad and the action. Calls
295 if (Site.PadLabel == Prev.PadLabel && Site.Action == Prev.Action)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 49 import org.eclipse.jface.action.Action;
50 import org.eclipse.jface.action.IAction;
51 import org.eclipse.jface.action.IMenuManager;
52 import org.eclipse.jface.action.IToolBarManager;
53 import org.eclipse.jface.action.Separator;
85 private Action mResetAdbAction;
86 private Action mCaptureAction;
87 private Action mUpdateThreadAction;
88 private Action mUpdateHeapAction
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
SampleView.java 25 import org.eclipse.jface.action.Action;
26 import org.eclipse.jface.action.IMenuListener;
27 import org.eclipse.jface.action.IMenuManager;
28 import org.eclipse.jface.action.IToolBarManager;
29 import org.eclipse.jface.action.MenuManager;
30 import org.eclipse.jface.action.Separator;
112 Action actionConnect; // connect / disconnect
114 Action actionAutoScroll;
115 Action actionFilter
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
SampleView.java 25 import org.eclipse.jface.action.Action;
26 import org.eclipse.jface.action.IMenuListener;
27 import org.eclipse.jface.action.IMenuManager;
28 import org.eclipse.jface.action.IToolBarManager;
29 import org.eclipse.jface.action.MenuManager;
30 import org.eclipse.jface.action.Separator;
112 Action actionConnect; // connect / disconnect
114 Action actionAutoScroll;
115 Action actionFilter
    [all...]

Completed in 2275 milliseconds

12 3 4 5 6