HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 226 - 250 of 6122) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintEditAction.java 22 import org.eclipse.jface.action.IAction;
26 * Action intended to wrap an existing XML editor action, and then runs lint after
34 * wrap the given action
36 * @param action the action to be wrapped
37 * @param editor the editor associated with the action
39 public LintEditAction(@NonNull IAction action, @NonNull AndroidXmlEditor editor) {
40 super(action);
  /external/clang/test/Analysis/
cfref_rdar6080742.c 40 #define RequireAction(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]", #condition, __FILE__, __LINE__); action }
41 #define RequireActionSilent(condition, action)if (!(condition)) { action }
43 #define RequireNoErr(err, action){ if( DebugDisplayOSStatusMsg((err), #err, __FILE__, __LINE__) ) { action }}
  /external/libcxx/utils/
sym_diff.py 25 action='store_true', default=False)
29 action='store_true', default=False)
32 action='store_true', default=False)
36 action='store_true', default=False)
40 type=str, action='store', default=None)
42 '--demangle', dest='demangle', action='store_true', default=False)
  /external/lisa/experiments/
run_display_image.py 37 parser.add_argument('--out_prefix', dest='out_prefix', action='store', default='default',
40 parser.add_argument('--collect', dest='collect', action='store', default='energy',
45 parser.add_argument('--image', dest='image', action='store', default='image.png',
50 parser.add_argument('--brightness', dest='brightness', action='store', default=100,
54 parser.add_argument('--duration', dest='duration_s', action='store',
58 parser.add_argument('--serial', dest='serial', action='store',
  /frameworks/base/core/java/com/android/internal/widget/
RecyclerViewAccessibilityDelegate.java 43 public boolean performAccessibilityAction(View host, int action, Bundle args) {
44 if (super.performAccessibilityAction(host, action, args)) {
48 return mRecyclerView.getLayoutManager().performAccessibilityAction(action, args);
95 public boolean performAccessibilityAction(View host, int action, Bundle args) {
96 if (super.performAccessibilityAction(host, action, args)) {
101 .performAccessibilityActionForItem(host, action, args);
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsUt.aidl 77 int updateCallBarring(int cbType, int action, in String[] barrList);
82 int updateCallForward(int action, int condition, String number,
123 int updateCallBarringForServiceClass(int cbType, int action, in String[] barrList,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTesterFailBringUpAll.java 56 String action = intent.getAction();
57 if (DBG) log("sIntentReceiver.onReceive: action=" + action);
58 if (action.equals(mActionFailBringUp)) {
60 } else if (action.equals(mPhone.getActionDetached())) {
66 } else if (action.equals(mPhone.getActionAttached())) {
72 if (DBG) log("onReceive: unknown action=" + action);
83 log("register for intent action=" + mActionFailBringUp);
86 log("register for intent action=" + mPhone.getActionDetached())
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelReceiver.java 42 final String action = intent.getAction(); local
47 Log.v(TAG, "Action: " + action);
64 if (action.equals(AudioEffect.ACTION_OPEN_AUDIO_EFFECT_CONTROL_SESSION)) {
76 if (action.equals(AudioEffect.ACTION_CLOSE_AUDIO_EFFECT_CONTROL_SESSION)) {
82 if (action.equals("AudioEffect.ACTION_SET_PARAM")) {
93 if (action.equals("AudioEffect.ACTION_GET_PARAM")) {
  /packages/apps/TV/src/com/android/tv/menu/
ActionCardView.java 60 public void onBind(MenuAction action, boolean selected) {
62 Log.d(TAG, "onBind: action=" + action.getActionName(getContext()));
64 mIconView.setImageDrawable(action.getDrawable(getContext()));
65 mLabelView.setText(action.getActionName(getContext()));
66 mStateView.setText(action.getActionDescription());
67 if (action.isEnabled()) {
85 Log.d(TAG, "onSelected: action=" + mLabelView.getText());
92 Log.d(TAG, "onDeselected: action=" + mLabelView.getText());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/
sym_diff.py 25 action='store_true', default=False)
29 action='store_true', default=False)
32 action='store_true', default=False)
36 action='store_true', default=False)
40 type=str, action='store', default=None)
42 '--demangle', dest='demangle', action='store_true', default=False)
  /system/extras/memory_replay/tests/
ThreadTest.cpp 23 #include "Action.h"
103 TEST(ThreadTest, action) {
106 Action* action = thread.CreateAction(0x1234, "thread_done", ""); local
107 ASSERT_EQ(action, thread.GetAction());
109 // Verify the action object is not garbage.
110 action->Execute(nullptr);
112 ASSERT_TRUE(action->EndThread());
113 ASSERT_FALSE(action->DoesFree());
  /build/kati/testcase/
multi_rule.mk 3 # simplified case for gyp-generated action targets
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
ISensorTestStateContainer.java 55 * @param action The action to start the Activity.
58 int executeActivity(String action) throws InterruptedException;
81 * @param action setting in the form of action name
84 boolean hasActivity(String action);
  /cts/tests/app/app/src/android/app/stubs/
MockAlarmReceiver.java 41 final String action = intent.getAction(); local
42 if (action.equals(mTargetAction)) {
  /external/autotest/client/bin/
autologin.py 25 parser.add_argument('-a', '--arc', action='store_true',
27 parser.add_argument('-d', '--dont_override_profile', action='store_true',
autotest 29 parser.add_option("-c", "--continue", dest="cont", action="store_true",
44 parser.add_option("-l", "--external_logging", dest="log", action="store_true",
47 parser.add_option('--verbose', dest='verbose', action='store_true',
50 parser.add_option('--quiet', dest='verbose', action='store_false',
54 default=None, action='store',
59 type='string', default="", action='store',
63 type='string', default=None, action='store',
67 parser.add_option('--tap', dest='tap_report', action='store_true',
  /external/chromium-trace/catapult/devil/devil/utils/
update_mapping.py 29 action='store', help='mapping file name')
31 action='append', choices=['plugable_7port',
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-text.rl 38 action clear_item {
43 action add_item {
51 action tok {
55 action parse_glyph {
62 action parse_cluster { if (!parse_uint (tok, p, &info.cluster )) return false; }
63 action parse_x_offset { if (!parse_int (tok, p, &pos.x_offset )) return false; }
64 action parse_y_offset { if (!parse_int (tok, p, &pos.y_offset )) return false; }
65 action parse_x_advance { if (!parse_int (tok, p, &pos.x_advance)) return false; }
66 action parse_y_advance { if (!parse_int (tok, p, &pos.y_advance)) return false; }
  /external/iproute2/tc/
m_vlan.c 45 static bool has_push_attribs(int action)
47 return action == TCA_VLAN_ACT_PUSH || action == TCA_VLAN_ACT_MODIFY;
56 int action = 0; local
72 if (action) {
73 fprintf(stderr, "unexpected \"%s\" - action already specified\n",
78 action = TCA_VLAN_ACT_POP;
80 if (action) {
81 fprintf(stderr, "unexpected \"%s\" - action already specified\n",
86 action = TCA_VLAN_ACT_PUSH
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/utils/
update_mapping.py 29 action='store', help='mapping file name')
31 action='append', choices=['plugable_7port',
  /external/valgrind/gdbserver_tests/
nlpasssigalrm.stderr.exp 3 (action at startup) vgdb me ...
  /external/webrtc/webrtc/test/
rtp_rtcp_observer.h 33 enum Action {
42 virtual Action OnSendRtp(const uint8_t* packet, size_t length) {
46 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) {
50 virtual Action OnReceiveRtp(const uint8_t* packet, size_t length) {
54 virtual Action OnReceiveRtcp(const uint8_t* packet, size_t length) {
95 RtpRtcpObserver::Action action; variable
98 action = observer_->OnSendRtp(packet, length);
100 action = observer_->OnReceiveRtp(packet, length);
103 switch (action) {
115 RtpRtcpObserver::Action action; variable
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppHandoverReceiver.java 34 String action = intent.getAction(); local
36 if (action.equals(Constants.ACTION_HANDOVER_SEND) || action.equals(
49 if (action.equals(Constants.ACTION_HANDOVER_SEND)) {
54 } else if (action.equals(Constants.ACTION_HANDOVER_SEND_MULTIPLE)) {
77 } else if (action.equals(Constants.ACTION_WHITELIST_DEVICE)) {
87 } else if (action.equals(Constants.ACTION_STOP_HANDOVER)) {
99 Log.d(TAG, "Unknown action: " + action);
  /packages/apps/Car/libs/car-media-common/src/com/android/car/media/common/
CustomPlaybackAction.java 25 * Abstract representation of a custom playback action. A custom playback action represents a
32 /** Icon to display for this custom action */
35 /** Action identifier used to request this action to the media service */
38 /** Any additional information to send along with the action identifier */
43 * Creates a custom action
45 public CustomPlaybackAction(@NonNull Drawable icon, @NonNull String action,
48 mAction = action;
  /packages/apps/DeskClock/src/com/android/deskclock/controller/
EventController.java 38 void sendEvent(@StringRes int category, @StringRes int action, @StringRes int label) {
40 eventTracker.sendEvent(category, action, label);

Completed in 1151 milliseconds

1 2 3 4 5 6 7 8 91011>>