/sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/actions/ |
WaitAction.java | 21 * Action that specifies to wait for a certain amount of time. 23 public class WaitAction implements 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 )
|
/frameworks/base/drm/java/android/drm/ |
DrmStore.java | 28 * {@link android.drm.DrmStore.Action actions} that can be performed 41 * {@link android.drm.DrmStore.Action action}. 50 * {@link android.drm.DrmStore.Action action}. 58 * an {@link android.drm.DrmStore.Action action} can be performed on 67 * an {@link android.drm.DrmStore.Action action} can not be performed on 163 public static class Action { [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(); 118 actionsContainer.setTag(action); 120 alternateActionButton.setTag(action); 122 final boolean hasAlternateAction = action.getAlternateIntent() != null; 124 alternateActionButton.setImageDrawable(action.getAlternateIcon()) [all...] |
ResolveCache.java | 120 * Get the {@link Entry} best associated with the given {@link Action}, 123 protected Entry getEntry(Action action) { 124 final String mimeType = action.getMimeType(); 129 Intent intent = action.getIntent(); 199 * given {@link Action}. 201 public boolean hasResolve(Action action) { 202 return getEntry(action).bestResolve != null; 206 * Find the best description for the given {@link Action}, usually use [all...] |
/sdk/hierarchyviewer2/app/src/com/android/hierarchyviewer/actions/ |
AboutAction.java | 24 import org.eclipse.jface.action.Action; 31 public class AboutAction extends Action implements ImageAction {
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/actions/ |
PixelPerfectAutoRefreshAction.java | 22 import org.eclipse.jface.action.Action; 35 super("Auto &Refresh", Action.AS_CHECK_BOX);
|
SelectedNodeEnabledAction.java | 22 import org.eclipse.jface.action.Action; 25 public class SelectedNodeEnabledAction extends Action implements ITreeChangeListener {
|
InspectScreenshotAction.java | 26 import org.eclipse.jface.action.Action; 32 public class InspectScreenshotAction extends Action implements ImageAction, IWindowChangeListener {
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.cpp | 74 /// ComputeActionsTable - Compute the actions table and gather the first action 81 // The action table follows the call-site table in the LSDA. The individual 160 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; 161 Actions.push_back(Action); 165 // Record the first action of the landing pad site. 169 // Information used when created the call-site table. The action record 171 // action record, relative to the start of the actions table. This value is 221 /// appropriate action. The entry for an ordinary call has a try-range 222 /// containing the call and zero for the landing pad and the action. Calls 296 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...] |
LogCatView.java | 27 import org.eclipse.jface.action.Action; 70 new Action(Messages.LogCatView_Copy) { 78 new Action(Messages.LogCatView_Select_All) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
GLFramesView.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; 96 private Action mActionConnect; // connect / disconnect 98 private Action mActionAutoScroll; 99 private Action mActionFilter [all...] |
/external/clang/lib/Driver/ |
ToolChains.cpp | 197 Action::ActionClass Key; 209 Key = Action::AnalyzeJobClass; 220 case Action::InputClass: 221 case Action::BindArchClass: 223 case Action::PreprocessJobClass: 225 case Action::AnalyzeJobClass: 226 case Action::MigrateJobClass: 228 case Action::PrecompileJobClass: 229 case Action::CompileJobClass: 231 case Action::AssembleJobClass: [all...] |
Android.mk | 16 Action.cpp \
|
/external/clang/include/clang/Driver/ |
Driver.h | 33 class Action; 348 /// ConstructAction - Construct the appropriate action to do for 351 Action *ConstructPhaseAction(const ArgList &Args, phases::ID Phase, 352 Action *Input) const; 356 /// action \arg A. 358 const Action *A, 366 /// the action \arg JA. The result is appended to the compilation's 370 /// \param JA - The action of interest. 371 /// \param BaseInput - The original input file that this action was 373 /// \param AtTopLevel - Whether this is a "top-level" action [all...] |
/external/llvm/utils/TableGen/ |
TableGen.cpp | 63 Action(cl::desc("Action to perform:"), 109 switch (Action) { 193 LLVMTableGenAction Action; 194 return TableGenMain(argv[0], Action);
|
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeech.java | 113 * Broadcast Action: The TextToSpeech synthesizer has completed processing 261 "android.intent.action.TTS_SERVICE"; 273 * Activity Action: Triggers the platform TextToSpeech engine to 286 * Broadcast Action: broadcast to signal the completion of the installation of 295 * Activity Action: Starts the activity from the platform TextToSpeech 556 private <R> R runActionNoReconnect(Action<R> action, R errorResult, String method) { 557 return runAction(action, errorResult, method, false); 560 private <R> R runAction(Action<R> action, R errorResult, String method) [all...] |
/frameworks/compile/mclinker/include/mcld/LD/ |
Resolver.h | 34 enum Action { 61 /// @return the action should be taken.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
PixelPerfectLoupeView.java | 28 import org.eclipse.jface.action.Action; 29 import org.eclipse.jface.action.IMenuManager; 30 import org.eclipse.jface.action.IToolBarManager; 48 private Action mShowInLoupeAction = new Action("&Show Overlay", Action.AS_CHECK_BOX) {
|
/external/clang/lib/CodeGen/ |
BackendUtil.cpp | 86 bool AddEmitPasses(BackendAction Action, formatted_raw_ostream &OS); 104 void EmitAssembly(BackendAction Action, raw_ostream *OS); 230 bool EmitAssemblyHelper::AddEmitPasses(BackendAction Action, 376 if (Action == Backend_EmitObj) 378 else if (Action == Backend_EmitMCNull) 381 assert(Action == Backend_EmitAssembly && "Invalid action!"); 399 void EmitAssemblyHelper::EmitAssembly(BackendAction Action, raw_ostream *OS) { 404 switch (Action) { 419 if (!AddEmitPasses(Action, FormattedOS) [all...] |
/external/chromium/chrome/browser/sync/glue/ |
autofill_change_processor.h | 91 sync_api::SyncManager::ChangeRecord::Action action, 96 sync_api::SyncManager::ChangeRecord::Action action,
|
/external/clang/test/SemaCXX/ |
constexpr-turing.cpp | 8 struct Action { 13 using State = Action[2];
|
/external/llvm/lib/TableGen/ |
Main.cpp | 50 int TableGenMain(char *argv0, TableGenAction &Action) { 104 if (Action(Out.os(), Records))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ExportScreenshotAction.java | 22 import org.eclipse.jface.action.Action; 35 class ExportScreenshotAction extends Action {
|