HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 451 - 475 of 3010) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/share/opt-viewer/
opt-viewer.py 258 action='store_true', variable
  /prebuilts/clang/host/linux-x86/clang-4579689/share/opt-viewer/
opt-viewer.py 258 action='store_true', variable
  /prebuilts/clang/host/linux-x86/clang-4630689/share/opt-viewer/
opt-viewer.py 258 action='store_true', variable
  /prebuilts/clang/host/linux-x86/clang-4639204/share/opt-viewer/
opt-viewer.py 258 action='store_true', variable
  /prebuilts/clang/host/linux-x86/clang-4691093/share/opt-viewer/
opt-viewer.py 258 action='store_true', variable
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Request.java 60 static class Action {
63 private Action(String name) { this.name = name; }
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEAD")
84 private Action action; field in class:Request
88 Action action() { return action; } method in class:Request
    [all...]
RequestHandler.java 115 Request.Action action = request.action(); local
116 if ((action != Request.Action.GET) &&
117 (action != Request.Action.HEAD)) {
122 new FileContent(request.uri()), action);
RequestServicer.java 139 Request.Action action = rq.action(); local
140 if ((action != Request.Action.GET) &&
141 (action != Request.Action.HEAD))
146 new FileContent(rq.uri()), action);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Request.java 60 static class Action {
63 private Action(String name) { this.name = name; }
66 static Action GET = new Action("GET");
67 static Action PUT = new Action("PUT");
68 static Action POST = new Action("POST");
69 static Action HEAD = new Action("HEAD")
84 private Action action; field in class:Request
88 Action action() { return action; } method in class:Request
    [all...]
RequestHandler.java 115 Request.Action action = request.action(); local
116 if ((action != Request.Action.GET) &&
117 (action != Request.Action.HEAD)) {
122 new FileContent(request.uri()), action);
RequestServicer.java 139 Request.Action action = rq.action(); local
140 if ((action != Request.Action.GET) &&
141 (action != Request.Action.HEAD))
146 new FileContent(rq.uri()), action);
  /prebuilts/ndk/r16/sources/android/ndk_helper/
gestureDetector.cpp 53 int32_t action = AMotionEvent_getAction( motion_event ); local
54 unsigned int flags = action & AMOTION_EVENT_ACTION_MASK;
98 int32_t action = AMotionEvent_getAction( motion_event ); local
99 unsigned int flags = action & AMOTION_EVENT_ACTION_MASK;
153 int32_t action = AMotionEvent_getAction( event ); local
154 uint32_t flags = action & AMOTION_EVENT_ACTION_MASK;
165 int32_t iIndex = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
180 int32_t index = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
268 int32_t action = AMotionEvent_getAction( event ); local
269 int32_t index = (action & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 10 import org.eclipse.jface.action.Action;
11 import org.eclipse.jface.action.ActionContributionItem;
12 import org.eclipse.jface.action.IAction;
13 import org.eclipse.jface.action.Separator;
19 * Action which creates a submenu for the "Show Included In" action
41 IAction action = new ShowWithinAction(title, reference); local
42 new ActionContributionItem(action).fill(menu, -1);
46 IAction action = new ShowWithinAction("Nothing", null) local
    [all...]
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...]
  /system/bt/bta/pan/
bta_pan_main.cc 44 /* state machine action enumeration list */
58 /* type for action functions */
61 /* action function list */
171 uint8_t action; local
185 /* execute action functions */
187 action = state_table[event][i];
188 CHECK(action < BTA_PAN_MAX_ACTIONS);
189 if (action == BTA_PAN_IGNORE) continue;
190 (*bta_pan_action[action])(p_scb, p_data);
  /system/bt/stack/avdt/
avdt_ccb.cc 62 /* action function list */
91 /* Action 1 Action 2 Next state */
152 /* Action 1 Action 2 Next state */
213 /* Action 1 Action 2 Next state */
274 /* Action 1 Action 2 Next state */
369 uint8_t action; local
    [all...]
  /system/extras/memory_replay/
Action.cpp 28 #include "Action.h"
39 class EndThreadAction : public Action {
48 class AllocAction : public Action {
171 size_t Action::MaxActionSize() {
179 Action* Action::CreateAction(uintptr_t key_pointer, const char* type,
181 Action* action = nullptr; local
183 action = new (action_memory) MallocAction(key_pointer, line);
185 action = new (action_memory) FreeAction(key_pointer)
    [all...]
main.cpp 29 #include "Action.h"
94 // when creating the Action object.
109 // the next action.
112 Action* action = thread->CreateAction(key_pointer, type, line + line_pos); local
113 if (action == nullptr) {
114 err(1, "Cannot create action from line: %s\n", line);
117 bool does_free = action->DoesFree();
120 // before triggering the action. Otherwise, another thread could
125 // Tell the thread to execute the action
    [all...]
  /cts/tests/app/src/android/app/cts/
NotificationTest.java 20 import android.app.Notification.Action.Builder;
50 private Notification.Action mAction;
272 mAction = new Notification.Action.Builder(0, ACTION_TITLE, actionIntent).build();
440 Notification.Action a = newActionBuilder()
448 Notification.Action a = newActionBuilder()
459 Notification.Action a = newActionBuilder()
476 Notification.Action action = makeNotificationAction(null);
477 assertEquals(Notification.Action.SEMANTIC_ACTION_NONE, action.getSemanticAction())
487 Notification.Action action = writeAndReadParcelable( local
498 Notification.Action action = makeNotificationAction( local
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingTask.java 90 PollingAction action = new PollingAction(queue.getContext(), this); local
91 action.execute();
  /frameworks/support/compat/src/main/java/androidx/core/app/
NotificationCompatBuilder.java 98 for (NotificationCompat.Action action : b.mActions) {
99 addAction(action);
254 private void addAction(NotificationCompat.Action action) {
256 Notification.Action.Builder actionBuilder = new Notification.Action.Builder(
257 action.getIcon(), action.getTitle(), action.getActionIntent())
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
PlaybackControlGlue.java 26 import androidx.leanback.widget.Action;
96 public void onActionClicked(Action action) {
97 if (shouldDispatchAction(action)) {
98 dispatchAction(action);
101 super.onActionClicked(action);
107 Action action = getControlsRow().getActionForKeyCode(keyEvent.getKeyCode()); local
108 if (shouldDispatchAction(action)) {
109 dispatchAction(action);
    [all...]
  /libcore/tools/upstream/src/main/java/libcore/
CompareUpstreams.java 255 CompareUpstreams action = new CompareUpstreams(standardRepositories); local
256 action.run();
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
QuickScrubController.java 30 import com.android.launcher3.userevent.nano.LauncherLogProto.Action.Touch;
110 LauncherLogProto.Action.Direction.NONE, page,
201 Runnable action = mOnFinishedTransitionToQuickScrubRunnable; local
204 if (action != null) {
205 action.run();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ReadDraftDataAction.java 17 package com.android.messaging.datamodel.action;
25 import com.android.messaging.datamodel.action.ActionMonitor.ActionCompletedListener;
33 public class ReadDraftDataAction extends Action implements Parcelable {
40 abstract void onReadDraftDataSucceeded(final ReadDraftDataAction action,
44 abstract void onReadDraftDataFailed(final ReadDraftDataAction action, final Object data);
55 final ReadDraftDataAction action = new ReadDraftDataAction(conversationId, local
57 action.start(monitor);
128 final Action action, final Object data, final Object result) {
131 mListener.onReadDraftDataFailed((ReadDraftDataAction) action, data)
    [all...]

Completed in 2704 milliseconds

<<11121314151617181920>>