/external/chromium_org/ui/events/gestures/ |
motion_event_aura.h | 30 virtual Action GetAction() const OVERRIDE; 82 Action cached_action, 94 Action cached_action_; 96 // ACTION_POINTER_UP. -1 if no such action has occurred.
|
/external/pdfium/fpdfsdk/src/ |
fpdfdoc.cpp | 53 // If this bookmark is not directly associated with a dest, we try to get action
54 CPDF_Action Action = Bookmark.GetAction();
55 if (Action == NULL) return NULL;
56 return Action.GetDest(pDoc);
67 DLLEXPORT unsigned long STDCALL FPDFAction_GetType(FPDF_ACTION action)
69 if (action == NULL) return 0;
71 CPDF_Action Action = (CPDF_Dictionary*)action;
72 CPDF_Action::ActionType type = Action.GetType();
88 DLLEXPORT FPDF_DEST STDCALL FPDFAction_GetDest(FPDF_DOCUMENT document, FPDF_ACTION action)
[all...] |
/frameworks/support/tests/java/android/support/v4/app/ |
NotificationCompatWearableExtenderTest.java | 83 NotificationCompat.Action.Builder action2 = new NotificationCompat.Action.Builder( 86 .extend(new NotificationCompat.Action.WearableExtender() 99 .addAction(new NotificationCompat.Action(R.drawable.action_icon2, "Action1", 110 .setContentAction(5 /* arbitrary content action index */) 128 Notification.Action.Builder action2 = new Notification.Action.Builder( 131 .extend(new Notification.Action.WearableExtender() 144 .addAction(new Notification.Action(R.drawable.action_icon2, "Action1", 155 .setContentAction(5 /* arbitrary content action index */ [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
StorageItem.java | 20 import com.android.tv.settings.dialog.old.Action; 57 Action toAction(Resources resources, String description) { 58 return new Action.Builder()
|
/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/chromium_org/cc/scheduler/ |
scheduler_state_machine.h | 90 enum Action { 103 static const char* ActionToString(Action action); 107 Action NextAction() const; 108 void UpdateState(Action action);
|
/external/chromium_org/chrome/browser/download/ |
download_danger_prompt_browsertest.cc | 46 void SetUpExpectations(DownloadDangerPrompt::Action expected_action) { 62 void SimulatePromptAction(DownloadDangerPrompt::Action action) { 63 prompt_->InvokeActionForTesting(action); 87 void PromptCallback(DownloadDangerPrompt::Action action) { 89 EXPECT_EQ(expected_action_, action); 96 DownloadDangerPrompt::Action expected_action_; 105 // Clicking the Accept button should invoke the ACCEPT action. 110 // Clicking the Cancel button should invoke the CANCEL action [all...] |
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_log.h | 52 virtual void OnExtensionActivity(scoped_refptr<Action> activity) = 0; 66 // Logs an extension action: passes it to any installed policy to be logged 69 void LogAction(scoped_refptr<Action> action); 77 const Action::ActionType type, 83 <void(scoped_ptr<std::vector<scoped_refptr<Action> > >)>& callback);
|
activity_log_browsertest.cc | 42 scoped_ptr<std::vector<scoped_refptr<Action> > > i) { 48 scoped_refptr<Action> last = i->front(); 51 ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type()); 123 Action::ACTION_ANY,
|
/external/chromium_org/tools/cr/cr/actions/ |
action.py | 5 """A module for the Action plugin base class.""" 10 class Action(cr.Plugin): 14 including support for selecting the right implementation of an action and 15 handling command line arguments for the action. 36 want to not perform the action at all. 37 It is important that commands can detect this so they can modify the action 39 performing actions that were only there to produce the inputs of an action 43 True if this implementation is a skip action.
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 12 #include "clang/Driver/Action.h" 106 Tool *ToolChain::getTool(Action::ActionClass AC) const { 108 case Action::AssembleJobClass: 111 case Action::LinkJobClass: 114 case Action::InputClass: 115 case Action::BindArchClass: 116 case Action::LipoJobClass: 117 case Action::DsymutilJobClass: 118 case Action::VerifyDebugInfoJobClass: 121 case Action::CompileJobClass [all...] |
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/ |
AccessibilityAction.java | 22 import com.google.android.droiddriver.actions.Action; 27 * Implements {@link Action} via the Accessibility API. 40 * Performs the action via the Accessibility API. 43 * @param element the UiElement to perform the action on 44 * @return Whether the action is successful. Some actions throw exceptions in
|
/frameworks/compile/mclinker/include/mcld/LD/ |
Resolver.h | 32 enum Action { 55 /// @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...] |
/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") {
|
/external/clang/unittests/Tooling/ |
ToolingTest.cpp | 123 std::unique_ptr<FrontendAction> Action(Factory->create()); 124 EXPECT_TRUE(Action.get() != nullptr); 137 std::unique_ptr<FrontendAction> Action(Factory->create()); 138 EXPECT_TRUE(Action.get() != nullptr); 209 std::unique_ptr<FrontendActionFactory> Action( 211 Tool.run(Action.get()); 282 std::unique_ptr<FrontendActionFactory> Action( 288 Tool.run(Action.get()); 296 Tool.run(Action.get()); 333 std::unique_ptr<FrontendActionFactory> Action( [all...] |
/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/chromium_org/chrome/browser/extensions/api/activity_log_private/ |
activity_log_private_api.h | 45 virtual void OnExtensionActivity(scoped_refptr<Action> activity) OVERRIDE; 78 scoped_ptr<std::vector<scoped_refptr<Action> > > activities);
|
/external/chromium_org/content/browser/renderer_host/input/ |
motion_event_web.h | 21 virtual Action GetAction() const OVERRIDE; 51 Action cached_action_;
|
/external/chromium_org/ui/events/gesture_detection/ |
motion_event.h | 18 enum Action { 48 virtual Action GetAction() const = 0;
|
/external/clang/unittests/AST/ |
ExternalASTSourceTest.cpp | 60 TestFrontendAction Action(Source); 61 return Compiler.ExecuteAction(Action);
|
/external/droiddriver/src/com/google/android/droiddriver/ |
UiElement.java | 21 import com.google.android.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);
|
/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...] |
/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 {
|