Searched defs:action (Results 1 - 25 of 136) sorted by last modified time

123456

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java42 public static void addAction(Object info, int action) { argument
43 ((AccessibilityNodeInfo) info).addAction(action);
140 public static boolean performAction(Object info, int action) { argument
141 return ((AccessibilityNodeInfo) info).performAction(action);
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java189 * request to pop, but the action will not be performed until the application
206 * request to pop, but the action will not be performed until the application
228 * request to pop, but the action will not be performed until the application
1328 "Can not perform this action after onSaveInstanceState");
1332 "Can not perform this action inside of " + mNoTransactionsBecause);
1336 public void enqueueAction(Runnable action, boolean allowStateLoss) { argument
1347 mPendingActions.add(action);
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java51 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
113 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
266 public boolean performAccessibilityAction(View host, int action, Bundle args) {
267 return compat.performAccessibilityAction(host, action, args);
284 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
287 host, action, args);
484 * Performs the specified accessibility action on the view. For
493 * @param action The action to perform.
494 * @return Whether the action wa
499 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
H A DViewCompat.java127 public void postOnAnimation(View view, Runnable action); argument
128 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis); argument
131 public boolean performAccessibilityAction(View view, int action, Bundle arguments); argument
177 public void postOnAnimation(View view, Runnable action) { argument
178 view.postDelayed(action, getFrameTime());
180 public void postOnAnimationDelayed(View view, Runnable action, long delayMillis) { argument
181 view.postDelayed(action, getFrameTime() + delayMillis);
192 public boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
279 public void postOnAnimation(View view, Runnable action) { argument
280 ViewCompatJB.postOnAnimation(view, action);
283 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
295 performAccessibilityAction(View view, int action, Bundle arguments) argument
575 postOnAnimation(View view, Runnable action) argument
592 postOnAnimationDelayed(View view, Runnable action, long delayMillis) argument
642 performAccessibilityAction(View view, int action, Bundle arguments) argument
[all...]
H A DViewPager.java1721 final int action = ev.getAction() & MotionEventCompat.ACTION_MASK;
1724 if (action == MotionEvent.ACTION_CANCEL || action == MotionEvent.ACTION_UP) {
1739 if (action != MotionEvent.ACTION_DOWN) {
1750 switch (action) {
1881 final int action = ev.getAction();
1884 switch (action & MotionEventCompat.ACTION_MASK) {
2665 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
2666 if (super.performAccessibilityAction(host, action, args)) {
2669 switch (action) {
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java49 public void addAction(Object info, int action); argument
50 public boolean performAction(Object info, int action); argument
51 public boolean performAction(Object info, int action, Bundle arguments); argument
119 public void addAction(Object info, int action) { argument
254 public boolean performAction(Object info, int action) { argument
259 public boolean performAction(Object info, int action, Bundle arguments) { argument
416 public void addAction(Object info, int action) { argument
417 AccessibilityNodeInfoCompatIcs.addAction(info, action);
536 public boolean performAction(Object info, int action) { argument
537 return AccessibilityNodeInfoCompatIcs.performAction(info, action);
683 performAction(Object info, int action, Bundle arguments) argument
1144 addAction(int action) argument
1160 performAction(int action) argument
1177 performAction(int action, Bundle arguments) argument
[all...]
H A DAccessibilityNodeProviderCompat.java50 public boolean performAction(int virtualViewId, int action,
52 return compat.performAction(virtualViewId, action, arguments);
147 * Performs an accessibility action on a virtual view, i.e. a descendant of the
152 * @param action The action to perform.
154 * @return True if the action was performed.
159 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DAccessibilityDelegateCompatJellyBean.java42 public boolean performAccessibilityAction(View host, int action, Bundle args); argument
91 public boolean performAccessibilityAction(View host, int action, Bundle args) {
92 return bridge.performAccessibilityAction(host, action, args);
102 public static boolean performAccessibilityAction(Object delegate, View host, int action, argument
104 return ((AccessibilityDelegate) delegate).performAccessibilityAction(host, action, args);
H A DViewCompatJB.java44 public static void postOnAnimation(View view, Runnable action) { argument
45 view.postOnAnimation(action);
48 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) { argument
49 view.postOnAnimationDelayed(action, delayMillis);
60 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
61 return view.performAccessibilityAction(action, arguments);
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java44 public static boolean performAction(Object info, int action, Bundle arguments) { argument
45 return ((AccessibilityNodeInfo) info).performAction(action, arguments);
H A DAccessibilityNodeProviderCompatJellyBean.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
55 return bridge.performAction(virtualViewId, action, arguments);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1123 * @param action is one of CF_ACTION_*
1127 void setCallForward(int action, int cfReason, int serviceClass, argument
H A DDataConnectionTracker.java259 String action = intent.getAction();
260 if (DBG) log("onReceive: action=" + action);
261 if (action.equals(Intent.ACTION_SCREEN_ON)) {
266 } else if (action.equals(Intent.ACTION_SCREEN_OFF)) {
271 } else if (action.startsWith(getActionIntentReconnectAlarm())) {
274 } else if (action.equals(getActionIntentDataStallAlarm())) {
276 } else if (action.equals(WifiManager.NETWORK_STATE_CHANGED_ACTION)) {
280 } else if (action.equals(WifiManager.WIFI_STATE_CHANGED_ACTION)) {
289 } else if (action
1234 putRecoveryAction(int action) argument
[all...]
H A DRIL.java1589 setCallForward(int action, int cfReason, int serviceClass, argument
1594 rr.mp.writeInt(action);
1602 + " " + action + " " + cfReason + " " + serviceClass
1614 rr.mp.writeInt(2); // 2 is for query action, not in used anyway
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java916 * if action is CANCEL_ECM_TIMER, cancel Ecm timer and notify apps the timer is canceled;
919 void handleTimerInEmergencyCallbackMode(int action) { argument
920 switch(action) {
932 Log.e(LOG_TAG, "handleTimerInEmergencyCallbackMode, unsupported action " + action);
H A DCdmaCallTracker.java1053 private void handleEcmTimer(int action) { argument
1054 phone.handleTimerInEmergencyCallbackMode(action);
1055 switch(action) {
1059 Log.e(LOG_TAG, "handleEcmTimer, unsupported action " + action);
H A DCdmaMmiCode.java58 String action; // ACTION_REGISTER field in class:CdmaMmiCode
75 2 = action
111 ret.action = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
182 return action != null && action.equals(ACTION_REGISTER);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java921 protected boolean isCfEnable(int action) { argument
922 return (action == CF_ACTION_ENABLE) || (action == CF_ACTION_REGISTRATION);
H A DGsmMmiCode.java117 String action; // One of ACTION_* field in class:GsmMmiCode
142 2 = action (activation/interrogation/registration/erasure)
189 ret.action = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
604 return action != null && action.equals(ACTION_ACTIVATE);
608 return action != null && action.equals(ACTION_DEACTIVATE);
612 return action != null && action.equals(ACTION_INTERROGATE);
616 return action !
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java249 public void setCallForward(int action, int cfReason, int serviceClass, argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1122 * @param action is one of CF_ACTION_*
1126 public void setCallForward(int action, int cfReason, int serviceClass, argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java406 public void setCallForward(int action, int cfReason, int serviceClass, String number, argument
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java272 public boolean onEditorAction(TextView view, int action, KeyEvent keyEvent) { argument
273 if (action == EditorInfo.IME_ACTION_DONE) {
292 // clear the existing action
294 // set the DONE action
1350 int action = event.getAction();
1355 if (mCopyAddress == null && action == MotionEvent.ACTION_UP) {
1361 if (action == MotionEvent.ACTION_UP) {
1379 if (action == MotionEvent.ACTION_UP && !chipWasSelected) {
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java104 /** The mode that no editing action is done. */
200 * EditStyledText extends EditText for managing flow of each editing action.
514 * Notify hint messages what action is expected to calling class.
529 * @param mode Mode of the editing action.
811 * Get the mode of the action.
813 * @return The mode of the action.
918 public void addAction(int mode, EditModeActionBase action) { argument
919 mManager.addAction(mode, action);
969 public void addAction(int mode, EditModeActionBase action) { argument
970 mActions.addAction(mode, action);
2853 addAction(int modeId, EditModeActionBase action) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DNamePool.cpp97 unsigned int action = Resolver::LastAction; local
104 m_pResolver->resolveAgain(*this, action, *old_symbol, *new_symbol, pResult);

Completed in 7843 milliseconds

123456