HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 76 - 100 of 4361) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/DeskClock/src/com/android/deskclock/events/
LogEventTracker.java 39 public void sendEvent(@StringRes int category, @StringRes int action, @StringRes int label) {
40 sendEvent(safeGetString(category), safeGetString(action), safeGetString(label));
44 public void sendEvent(String category, String action, String label) {
46 LogUtils.d(TAG, "[%s] [%s]", category, action);
48 LogUtils.d(TAG, "[%s] [%s] [%s]", category, action, label);
  /external/skia/experimental/docs/
animationCommon.js 22 var action = keyframe[i];
23 loopOver(action, timeline);
51 var action = actions[aIndex];
52 var hasDraw = 'draw' in action;
53 var hasRef = 'ref' in action;
56 var ref = hasRef ? action.ref : "anonymous_" + index + "_" + aIndex;
61 assert('string' == typeof(action.draw));
62 var draw = (new Function("return " + action.draw))();
65 if ('paint' in action) {
66 assert('string' == typeof(action.paint))
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
loop_unittest.py 22 """Tests that with no selector Loop action loops first media element."""
23 action = loop.LoopAction(loop_count=2, selector='#video_1',
25 action.WillRunAction(self._tab)
26 action.RunAction(self._tab)
33 """Tests that Loop action loops all video elements with selector='all'."""
34 action = loop.LoopAction(loop_count=2, selector='all',
36 action.WillRunAction(self._tab)
37 # Both videos not playing before running action.
40 action.RunAction(self._tab)
48 action = loop.LoopAction(loop_count=2, selector='#video_1'
    [all...]
seek_unittest.py 22 """Tests that with no selector Seek action seeks first media element."""
23 action = seek.SeekAction(seconds=1, timeout_in_seconds=5)
24 action.WillRunAction(self._tab)
25 action.RunAction(self._tab)
32 """Tests that Seek action seeks video element matching selector."""
33 action = seek.SeekAction(seconds=1, selector='#video_1',
35 action.WillRunAction(self._tab)
36 # Both videos not playing before running action.
39 action.RunAction(self._tab)
46 """Tests that Seek action seeks all video elements with selector='all'.""
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
ClassifierData.java 39 int action = event.getActionMasked(); local
40 if (action == MotionEvent.ACTION_DOWN) {
52 if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL
53 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) {
61 int action = event.getActionMasked(); local
64 if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL
65 || (action == MotionEvent.ACTION_POINTER_UP && i == event.getActionIndex())) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedDatePickerAction.java 24 * Subclass of GuidedAction that can choose a date. The Action is editable by default; to make it
94 * @param action GuidedDatePickerAction to apply values.
96 protected final void applyDatePickerValues(GuidedDatePickerAction action) {
97 super.applyValues(action);
98 action.mDatePickerFormat = mDatePickerFormat;
99 action.mDate = mDate;
103 action.mMinDate = mMinDate;
104 action.mMaxDate = mMaxDate;
122 GuidedDatePickerAction action = new GuidedDatePickerAction(); local
123 applyDatePickerValues(action);
    [all...]
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkService.java 38 String action = intent.getAction(); local
39 Log.d(TAG, "Service starting for intent " + action);
40 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
44 stopSelf(); // stop service after handling the action
ImsFrameworkReceiver.java 29 String action = intent.getAction(); local
30 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
37 } else if (Intent.ACTION_SHUTDOWN.equals(action)) {
41 Log.e(TAG, "Received unknown intent: " + action);
  /system/bt/bta/sdp/
bta_sdp.c 40 /* state machine action enumeration list */
43 /* type for action functions */
46 /* action function list */
67 UINT16 action = (p_msg->event & 0x00ff); local
69 /* execute action functions */
70 if(action < BTA_SDP_NUM_ACTIONS)
72 (*bta_sdp_action[action])((tBTA_SDP_MSG*)p_msg);
  /external/v8/test/unittests/heap/
gc-idle-time-handler-unittest.cc 133 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
134 EXPECT_EQ(DO_NOTHING, action.type);
145 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
146 EXPECT_EQ(DO_FULL_GC, action.type);
156 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
157 EXPECT_EQ(DO_FULL_GC, action.type);
168 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
169 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type);
180 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
181 EXPECT_EQ(DO_INCREMENTAL_STEP, action.type)
188 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
198 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
207 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
216 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
227 GCIdleTimeAction action = handler()->Compute(0, heap_state); local
237 GCIdleTimeAction action = handler()->Compute(10, heap_state); local
251 GCIdleTimeAction action = handler()->Compute(idle_time_ms, heap_state); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ListViewTypeMenu.java 33 import org.eclipse.jface.action.Action;
34 import org.eclipse.jface.action.ActionContributionItem;
35 import org.eclipse.jface.action.IAction;
36 import org.eclipse.jface.action.Separator;
72 IAction action = new PickLayoutAction("Choose Layout...", KEY_LV_ITEM); local
73 new ActionContributionItem(action).fill(menu, -1);
84 action = new SetListTypeAction("Spinner Item",
86 new ActionContributionItem(action).fill(menu, -1);
87 action = new SetListTypeAction("Spinner Dropdown Item"
    [all...]
  /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...]
BackgroundWorker.java 17 package com.android.messaging.datamodel.action;
22 * Interface between action service and its workers
27 * Send list of requests from action service to a worker
29 public void queueBackgroundWork(final List<Action> backgroundActions) {
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 29 TaskGeneric* action = NULL; local
30 mTestCase = getTaskCase(setup, action);
33 ASSERT_TRUE(action != NULL);
41 ASSERT_TRUE(action->addChild(mSequential));
  /external/bison/lib/
spawn_faction_addopen.c 33 /* Add an action to FILE-ACTIONS which tells the implementation to call
62 rec->action.open_action.fd = fd;
63 rec->action.open_action.path = path;
64 rec->action.open_action.oflag = oflag;
65 rec->action.open_action.mode = mode;
  /external/curl/lib/
sigpipe.h 48 struct sigaction action; local
52 action = ig->old_pipe_act;
54 action.sa_handler = SIG_IGN;
55 sigaction(SIGPIPE, &action, NULL);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
IFlyoutMenuContributor.java 13 import org.eclipse.jface.action.IMenuManager;
  /external/iproute2/tc/
m_vlan.c 42 int action = 0; local
56 if (action) {
57 fprintf(stderr, "unexpected \"%s\" - action already specified\n",
62 action = TCA_VLAN_ACT_POP;
64 if (action) {
65 fprintf(stderr, "unexpected \"%s\" - action already specified\n",
70 action = TCA_VLAN_ACT_PUSH;
72 if (action != TCA_VLAN_ACT_PUSH) {
83 if (action != TCA_VLAN_ACT_PUSH) {
102 parm.action = TC_ACT_PIPE
    [all...]
  /external/vogar/src/vogar/android/
DeviceRuntime.java 27 import vogar.Action;
66 @Override public Set<Task> installActionTasks(Action action, File jar) {
68 addCreateDexJarAndPushTasks(result, action.getName(), jar, action);
72 @Override public Task executeActionTask(Action action, boolean useLargeTimeout) {
73 return new RunActionTask(run, action, useLargeTimeout);
76 @Override public VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
HandlerActionQueue_Delegate.java 32 /*package*/ static void postDelayed(HandlerActionQueue thisQueue, Runnable action, long
  /frameworks/support/transition/ics/android/support/transition/
SceneIcs.java 53 public void setEnterAction(Runnable action) {
54 mScene.setEnterAction(action);
58 public void setExitAction(Runnable action) {
59 mScene.setExitAction(action);
  /libcore/ojluni/src/main/java/sun/security/action/
GetBooleanAction.java 26 package sun.security.action;
30 * as a privileged action.
36 * property named <code>"prop"</code> as a privileged action: <p>
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
LxxActionTestsBase.java 17 package com.android.inputmethod.keyboard.action;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderIntentService.java 37 final String action = intent.getAction(); local
38 if (CalendarAlarmManager.ACTION_CHECK_NEXT_ALARM.equals(action)
39 || CalendarContract.ACTION_EVENT_REMINDER.equals(action)) {
48 Log.d(TAG, "Invalid Intent action: " + action);
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestInCallServiceBroadcastReceiver.java 50 String action = intent.getAction(); local
51 Log.v(TAG, "onReceive: " + action);
53 if (ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE.equals(action)) {
56 } else if (ACTION_SEND_UPGRADE_RESPONSE.equals(action)) {

Completed in 2249 milliseconds

1 2 34 5 6 7 8 91011>>