HomeSort by relevance Sort by last modified time
    Searched refs:action (Results 201 - 225 of 3319) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/core/include/cutils/
debugger.h 38 debugger_action_t action; member in struct:__anon62589
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java 44 * "cancel" action when submitting a stage response indicating that the command
55 * <li><i>malformed-action</i>. Extension of a <i>bad-request</i> error.</li>
56 * <li><i>bad-action</i>. Extension of a <i>bad-request</i> error.</li>
73 // TODO: result to the execution of every action. That result should have all the
163 * response to the execution of an action. All the notes added here are
179 * be answered to execute the next action. If that is the case it should be
218 * Executes the next action of the command with the information provided in
262 * Possible actions are: {@link Action#prev prev}, {@link Action#next next} and
263 * {@link Action#complete complete}. This method will be only invoked for commands that
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
DiscoverItems.java 149 private String action; field in class:DiscoverItems.Item
214 * Returns the action that specifies the action being taken for this item. Possible action
217 * "remove" is used as the action, the item should be removed from persistent storage.
219 * @return the action being taken for this item
222 return action;
226 * Sets the action that specifies the action being taken for this item. Possible action
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DateView.java 48 final String action = intent.getAction();
49 if (Intent.ACTION_TIME_TICK.equals(action)
50 || Intent.ACTION_TIME_CHANGED.equals(action)
51 || Intent.ACTION_TIMEZONE_CHANGED.equals(action)
52 || Intent.ACTION_LOCALE_CHANGED.equals(action)) {
53 if (Intent.ACTION_LOCALE_CHANGED.equals(action)
54 || Intent.ACTION_TIMEZONE_CHANGED.equals(action)) {
  /development/tools/axl/
chewie.py 92 thread, action = x[1], x[2]
93 if action == "Q":
96 elif action == "O":
101 elif action == "S":
107 elif action == "T":
111 elif action == "R":
117 elif action == 'U':
124 elif action == "D":
132 elif action == "B":
134 elif action == "HR"
    [all...]
  /external/chromium_org/chrome/test/chromedriver/net/
test_http_server.cc 61 void TestHttpServer::SetRequestAction(WebSocketRequestAction action) {
63 request_action_ = action;
66 void TestHttpServer::SetMessageAction(WebSocketMessageAction action) {
68 message_action_ = action;
79 WebSocketRequestAction action; local
82 action = request_action_;
87 switch (action) {
105 WebSocketMessageAction action; local
108 action = message_action_;
110 switch (action) {
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/base/
AbstractUiElement.java 21 import com.google.android.droiddriver.actions.Action;
55 public boolean perform(Action action) {
56 Logs.call(this, "perform", action);
58 return performAndWait(action);
61 protected boolean doPerform(Action action) {
62 return action.perform(getInjector(), this);
70 private boolean performAndWait(final Action action) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringAction.java 27 import org.eclipse.jface.action.Action;
28 import org.eclipse.jface.action.IAction;
59 * Examine the selection to determine if the action should be enabled or not.
64 public void selectionChanged(IAction action, ISelection selection) {
71 // At that point, just enable the action and later decide if it's valid when it actually
95 action.setEnabled((mTextSelection != null || mTreeSelection != null)
103 public abstract void run(IAction action);
141 private static class ActionWrapper extends Action {
154 VisualRefactoringAction action; local
    [all...]
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectBroadcastReceiver.java 58 String action = intent.getAction(); local
59 if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) {
72 } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) {
82 } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) {
103 } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) {
  /external/blktrace/btt/
trace.c 37 switch (iop->t.action & 0xffff) {
76 if (iop->t.action & BLK_TC_ACT(BLK_TC_NOTIFY)) {
77 if (iop->t.action == BLK_TN_PROCESS) {
87 } else if (iop->t.action == BLK_TN_MESSAGE)
90 } else if (iop->t.action & BLK_TC_ACT(BLK_TC_PC)) {
  /external/chromium/net/base/
listen_socket_unittest.h 51 explicit ListenSocketTestAction(ActionType action) : action_(action) {}
52 ListenSocketTestAction(ActionType action, std::string data)
53 : action_(action),
77 void ReportAction(const ListenSocketTestAction& action);
  /external/chromium_org/net/socket/
tcp_listen_socket_unittest.h 46 explicit TCPListenSocketTestAction(ActionType action) : action_(action) {}
47 TCPListenSocketTestAction(ActionType action, std::string data)
48 : action_(action),
72 void ReportAction(const TCPListenSocketTestAction& action);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 36 final String action = intent.getAction(); local
38 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
60 Log.d(TAG, "action: " + action + " path: " + path);
61 if (Intent.ACTION_MEDIA_MOUNTED.equals(action)) {
64 } else if (Intent.ACTION_MEDIA_SCANNER_SCAN_FILE.equals(action) &&
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
warnings.py 45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
49 'action' -- one of "error", "ignore", "always", "default", "module",
58 assert action in ("error", "ignore", "always", "default", "module",
59 "once"), "invalid action: %r" % (action,)
67 item = (action, re.compile(message, re.I), category,
74 def simplefilter(action, category=Warning, lineno=0, append=0):
78 'action' -- one of "error", "ignore", "always", "default", "module",
84 assert action in ("error", "ignore", "always", "default", "module",
85 "once"), "invalid action: %r" % (action,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
49 'action' -- one of "error", "ignore", "always", "default", "module",
58 assert action in ("error", "ignore", "always", "default", "module",
59 "once"), "invalid action: %r" % (action,)
67 item = (action, re.compile(message, re.I), category,
74 def simplefilter(action, category=Warning, lineno=0, append=0):
78 'action' -- one of "error", "ignore", "always", "default", "module",
84 assert action in ("error", "ignore", "always", "default", "module",
85 "once"), "invalid action: %r" % (action,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 80 action = words[0]
84 if action in ('include', 'exclude',
88 "'%s' expects <pattern1> <pattern2> ..." % action
92 elif action in ('recursive-include', 'recursive-exclude'):
95 "'%s' expects <dir> <pattern1> <pattern2> ..." % action
100 elif action in ('graft', 'prune'):
103 "'%s' expects a single <dir_pattern>" % action
108 raise DistutilsTemplateError, "unknown action '%s'" % action
110 return (action, patterns, dir, dir_pattern
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
filelist.py 80 action = words[0]
84 if action in ('include', 'exclude',
88 "'%s' expects <pattern1> <pattern2> ..." % action
92 elif action in ('recursive-include', 'recursive-exclude'):
95 "'%s' expects <dir> <pattern1> <pattern2> ..." % action
100 elif action in ('graft', 'prune'):
103 "'%s' expects a single <dir_pattern>" % action
108 raise DistutilsTemplateError, "unknown action '%s'" % action
110 return (action, patterns, dir, dir_pattern
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
restsnew.cpp 36 #define CONFIRM_EQ(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected)); }
37 #define CONFIRM_GE(actual,expected) if ((actual)>=(expected)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected)); }
38 #define CONFIRM_NE(actual,expected) if ((expected)!=(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected)); }
40 #define CONFIRM_UErrorCode(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (UnicodeString)u_errorName(actual) + (UnicodeString)" instead of " + (UnicodeString)u_errorName(expected)); }
330 UnicodeString action; local
334 action = "te_IN";
335 action +=".get(";
336 action += data[i];
337 action +=", err)";
341 action = "te_IN"
541 UnicodeString action; local
634 UnicodeString action; local
1009 char action[256]; local
    [all...]
  /external/icu4c/test/intltest/
restsnew.cpp 36 #define CONFIRM_EQ(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of " + (expected)); }
37 #define CONFIRM_GE(actual,expected) if ((actual)>=(expected)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x >= " + (expected)); }
38 #define CONFIRM_NE(actual,expected) if ((expected)!=(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (actual) + (UnicodeString)" instead of x != " + (expected)); }
40 #define CONFIRM_UErrorCode(actual,expected) if ((expected)==(actual)) { record_pass(); } else { record_fail(); errln(action + (UnicodeString)" returned " + (UnicodeString)u_errorName(actual) + (UnicodeString)" instead of " + (UnicodeString)u_errorName(expected)); }
330 UnicodeString action; local
334 action = "te_IN";
335 action +=".get(";
336 action += data[i];
337 action +=", err)";
341 action = "te_IN"
541 UnicodeString action; local
634 UnicodeString action; local
1009 char action[256]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_action.c 24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
90 const struct lp_build_tgsi_action * action,
102 const struct lp_build_tgsi_action * action,
114 const struct lp_build_tgsi_action * action,
155 const struct lp_build_tgsi_action * action,
188 const struct lp_build_tgsi_action * action,
214 const struct lp_build_tgsi_action * action,
250 const struct lp_build_tgsi_action * action,
316 const struct lp_build_tgsi_action * action,
343 const struct lp_build_tgsi_action * action,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_action.c 24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
90 const struct lp_build_tgsi_action * action,
102 const struct lp_build_tgsi_action * action,
114 const struct lp_build_tgsi_action * action,
155 const struct lp_build_tgsi_action * action,
188 const struct lp_build_tgsi_action * action,
214 const struct lp_build_tgsi_action * action,
250 const struct lp_build_tgsi_action * action,
316 const struct lp_build_tgsi_action * action,
343 const struct lp_build_tgsi_action * action,
    [all...]
  /external/chromium/net/tools/flip_server/
loadtime_measurement.h 40 // remove "/testing/" from uri to get the action
41 std::string action = uri.substr(9); local
42 if (pageload_html_file_.find(action) != std::string::npos) {
46 if (action.find("get_total_iteration") == 0) {
52 if (action.find("geturl") == 0) {
53 size_t b = action.find_first_of('=');
55 int num = atoi(action.substr(b + 1).c_str());
62 if (action.find("test_complete") == 0) {
71 if (action.find("record_page_load") == 0) {
73 split_string(action, '?', &query)
    [all...]
  /external/chromium_org/net/tools/flip_server/
loadtime_measurement.h 39 // remove "/testing/" from uri to get the action
40 std::string action = uri.substr(9); local
41 if (pageload_html_file_.find(action) != std::string::npos) {
45 if (action.find("get_total_iteration") == 0) {
51 if (action.find("geturl") == 0) {
52 size_t b = action.find_first_of('=');
54 int num = atoi(action.substr(b + 1).c_str());
61 if (action.find("test_complete") == 0) {
70 if (action.find("record_page_load") == 0) {
72 split_string(action, '?', &query)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
event.cpp 18 // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
30 action action_ok, action action_fail) :
78 std::vector<clover::event *> deps, action action) :
79 _cl_event(q.ctx, deps, action, [](event &ev){}),
137 bool __trigger, action action) :
138 _cl_event(ctx, deps, action, action) {
    [all...]
  /external/chromium_org/v8/tools/testrunner/server/
status_handler.py 82 action = data[0]
84 if action == constants.LIST_TRUSTED_PUBKEYS:
86 compression.Send([action, response], self.request)
88 elif action == constants.GET_SIGNED_PUBKEY:
90 compression.Send([action, response], self.request)
92 elif action == constants.NOTIFY_NEW_TRUSTED:
96 elif action == constants.TRUST_YOU_NOW:
100 elif action == constants.DO_YOU_TRUST:
102 compression.Send([action, response], self.request)

Completed in 971 milliseconds

1 2 3 4 5 6 7 891011>>