/frameworks/compile/mclinker/include/mcld/LD/ |
Resolver.h | 31 enum Action { Success, Warning, Abort, LastAction }; 49 /// @return the action should be taken.
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
CategoryAdapter.java | 31 public class CategoryAdapter extends ArrayAdapter<Action> { 55 Action action = getItem(i); local 56 action.clearBitmap(); 70 public void add(Action action) { 71 super.add(action); 72 action.setAdapter(this); 97 Action action = getItem(position) local 156 Action action = getItem(i); local 168 Action action = getItem(i); local [all...] |
CategoryView.java | 40 private Action mAction; 76 if (mAction.getType() == Action.CROP_VIEW) { 79 if (mAction.getType() == Action.ADD_ACTION) { 102 if (mAction != null && mAction.getType() == Action.ADD_ACTION) { 110 if (mAction.getType() == Action.SPACER) { 130 public void setAction(Action action, CategoryAdapter adapter) { 131 mAction = action; 134 mCanBeRemoved = action.canBeRemoved(); 136 if (mAction.getType() == Action.ADD_ACTION) [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/ |
SnackBar.java | 46 * Defines an action to be performed when the user clicks on the action button on the snack bar 48 public static class Action { 55 private Action(@Nullable Runnable actionRunnable, @Nullable String actionLabel) { 68 public static Action createUndoAction(final Runnable undoRunnable) { 73 public static Action createRetryAction(final Runnable retryRunnable) { 79 public static Action createCustomAction(final Runnable runnable, final String actionLabel) { 80 return new Action(runnable, actionLabel); 130 private Action mAction; 149 public Builder setAction(final Action action) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
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") {
|
/system/update_engine/common/ |
action_pipe_unittest.cc | 21 #include "update_engine/common/action.h" 38 // This is a simple Action class for testing. 39 class ActionPipeTestAction : public Action<ActionPipeTestAction> {
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
ActionAdapter.java | 81 * Called when the user clicks on an action. 83 public void onActionClicked(Action action); 89 * Called when the user focuses on an action. 91 public void onActionFocused(Action action); 95 * Object listening for adapter action select/unselect events. 100 * Called when user finish selecting an action. 102 public void onActionSelect(Action action); 188 Action action = mActions.get(position); local 283 Action action = (Action) v.getTag(R.id.action_title); local 369 final Action action = (Action) v.getTag(R.id.action_title); local 383 Action action = (Action) v.getTag(R.id.action_title); local 445 final Action action = (Action) v.getTag(R.id.action_title); local [all...] |
/cts/tests/tests/shortcutmanager/throttling/src/android/content/pm/cts/shortcutmanager/throttling/ |
InlineReply.java | 22 import android.app.Notification.Action; 51 .addAction(new Action.Builder(0, INLINE_REPLY_REMOTE_INPUT_CAPTION, receiverIntent)
|
/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 )
|
/external/clang/unittests/AST/ |
ExternalASTSourceTest.cpp | 60 TestFrontendAction Action(Source); 61 return Compiler.ExecuteAction(Action);
|
/external/droiddriver/src/io/appium/droiddriver/ |
UiElement.java | 23 import io.appium.droiddriver.actions.Action; 140 * Executes the given action. 142 * @param action the action to execute 143 * @return true if the action is successful 145 boolean perform(Action action);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/ |
EventAction.java | 4 import com.badlogic.gdx.scenes.scene2d.Action; 13 abstract public class EventAction<T extends Event> extends Action {
|
TemporalAction.java | 20 import com.badlogic.gdx.scenes.scene2d.Action;
25 abstract public class TemporalAction extends Action {
45 setPool(null); // Ensure this action can't be returned to the pool while executing.
78 * @param percent The percentage of completion for this action, growing from 0 to 1 over the duration. If
130 /** When true, the action's progress will go from 100% to 0%. */
|
/external/vogar/src/vogar/ |
Action.java | 25 public final class Action { 36 public Action(String name, String actionClass, File resourcesDirectory, 47 * Returns the local directory containing this action's required resource 48 * files, or {@code null} if this action is standalone. 55 * Returns this action's source path, or {@code null} if this file wasn't 63 * Returns this action's java file, or {@code null} if this file wasn't 79 * Returns a unique identifier for this action. 87 * action. 102 * Returns an action name appropriate for the given {@code .java} file
|
/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...] |
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
DetailsFragment.java | 21 import android.support.v17.leanback.widget.Action; 61 private Action mActionPlay; 62 private Action mActionRent; 63 private Action mActionBuy; 80 mActionPlay = new Action(ACTION_PLAY, "Play"); 81 mActionRent = new Action(ACTION_RENT, "Rent", "$3.99", 83 mActionBuy = new Action(ACTION_BUY, "Buy $9.99"); 90 public void onActionClicked(Action action) { 91 Toast.makeText(getActivity(), action.toString(), Toast.LENGTH_SHORT).show() [all...] |
DetailsSupportFragment.java | 23 import android.support.v17.leanback.widget.Action; 63 private Action mActionPlay; 64 private Action mActionRent; 65 private Action mActionBuy; 82 mActionPlay = new Action(ACTION_PLAY, "Play"); 83 mActionRent = new Action(ACTION_RENT, "Rent", "$3.99", 85 mActionBuy = new Action(ACTION_BUY, "Buy $9.99"); 92 public void onActionClicked(Action action) { 93 Toast.makeText(getActivity(), action.toString(), Toast.LENGTH_SHORT).show() [all...] |
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/ |
VideoMediaPlayerGlue.java | 22 import android.support.v17.leanback.widget.Action; 45 @Override public void onActionClicked(Action action) { 46 super.onActionClicked(action); 47 if (action == mClosedCaptioningAction) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
SaveImageAction.java | 21 import org.eclipse.jface.action.Action; 29 public class SaveImageAction extends Action {
|
/frameworks/support/compat/jellybean/android/support/v4/app/ |
NotificationCompatJellybean.java | 46 // Bundle keys for storing action fields in a bundle 130 public void addAction(NotificationCompatBase.Action action) { 131 mActionExtrasList.add(writeActionAndGetExtras(b, action)); 153 // Add the action extras sparse array if any action was added with extras. 205 /** Return an SparseArray for action extras or null if none was needed. */ 256 public static NotificationCompatBase.Action readAction( 257 NotificationCompatBase.Action.Factory factory, 273 Notification.Builder builder, NotificationCompatBase.Action action) [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
EHStreamer.cpp | 47 /// Compute the actions table and gather the first action index for each landing 54 // The action table follows the call-site table in the LSDA. The individual 132 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; 133 Actions.push_back(Action); 137 // Record the first action of the landing pad site. 141 // Information used when created the call-site table. The action record 143 // action record, relative to the start of the actions table. This value is 209 /// containing the call, a non-zero landing pad, and an appropriate action. The 211 /// the landing pad and the action. Calls marked 'nounwind' have no entry and 286 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) [all...] |
/external/mesa3d/scons/ |
crossmingw.py | 30 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 39 import SCons.Action 123 shlib_action = SCons.Action.Action(shlib_generator, '$SHLINKCOMSTR', generator=1) 125 res_action = SCons.Action.Action('$RCCOM', '$RCCOMSTR') 127 res_builder = SCons.Builder.Builder(action=res_action, suffix='.o',
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
BackgroundWorkerService.java | 17 package com.android.messaging.datamodel.action; 56 * Queue a list of requests from action service to this worker 58 public static void queueBackgroundWork(final List<Action> actions) { 59 for (final Action action : actions) { 60 startServiceWithAction(action, 0); 72 protected static final String EXTRA_ACTION = "action"; 77 * Queue action intent to the BackgroundWorkerService after acquiring wake lock 79 private static void startServiceWithAction(final Action action, 121 final Action action = intent.getParcelableExtra(EXTRA_ACTION); local [all...] |
ActionMonitor.java | 17 package com.android.messaging.datamodel.action; 34 * Base class for action monitors 48 * Interface used to notify on completion of local execution for an action 52 * @param result value returned by {@link Action#executeAction} 55 abstract void onActionExecuted(ActionMonitor monitor, final Action action, 60 * Interface used to notify action completion 64 * @param result object returned from processing the action. This is the value returned by 65 * {@link Action#executeAction} if there is no background work, or 67 * {@link Action#processBackgroundResponse [all...] |
/external/clang/lib/Driver/ |
ToolChain.cpp | 12 #include "clang/Driver/Action.h" 240 Tool *ToolChain::getTool(Action::ActionClass AC) const { 242 case Action::AssembleJobClass: 245 case Action::LinkJobClass: 248 case Action::InputClass: 249 case Action::BindArchClass: 250 case Action::CudaDeviceClass: 251 case Action::CudaHostClass: 252 case Action::LipoJobClass: 253 case Action::DsymutilJobClass [all...] |