/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/ |
chrome_ex_oauthsimple.js | 167 /** set the "action" for the url, (e.g. GET,POST, DELETE, etc.) 169 * @param action {string} HTTP Action word. 171 this.setAction = function(action) { 172 if (action === undefined) { 173 action="GET"; 175 action = action.toUpperCase(); 176 if (action.match('[^A-Z]')) { 177 throw ('Invalid action specified for OAuthSimple.setAction') [all...] |
/external/qemu/distrib/sdl-1.2.12/src/timer/unix/ |
SDL_systimer.c | 153 struct sigaction action; local 156 SDL_memset(&action, 0, sizeof(action)); 157 action.sa_handler = HandleAlarm; 158 action.sa_flags = SA_RESTART; 159 sigemptyset(&action.sa_mask); 160 sigaction(SIGALRM, &action, NULL);
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
main.py | 52 make_option("-v", "--verbose", action="store_true", dest="verbose", default=False, help="enable all logging"), 53 make_option("-d", "--directory", action="append", dest="patch_directories", default=[], help="Directory to look at for changed files"), 54 make_option("--dry-run", action="store_true", dest="dry_run", default=False, help="do not touch remote servers"), 55 make_option("--status-host", action="store", dest="status_host", type="string", help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."), 56 make_option("--bot-id", action="store", dest="bot_id", type="string", help="Identifier for this bot (if multiple bots are running for a queue)"), 57 make_option("--irc-password", action="store", dest="irc_password", type="string", help="Password to use when communicating via IRC."), 58 make_option("--port", action="store", dest="port", default=None, help="Specify a port (e.g., mac, qt, gtk, ...)."),
|
/packages/apps/Phone/src/com/android/phone/ |
SipBroadcastReceiver.java | 48 String action = intent.getAction(); local 51 Log.v(TAG, "SIP VOIP not supported: " + action); 56 if (action.equals(SipManager.ACTION_SIP_INCOMING_CALL)) { 58 } else if (action.equals(SipManager.ACTION_SIP_ADD_PHONE)) { 66 } else if (action.equals(SipManager.ACTION_SIP_REMOVE_PHONE)) { 71 } else if (action.equals(SipManager.ACTION_SIP_SERVICE_UP)) { 75 Log.v(TAG, "action not processed: " + action);
|
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/ |
ImsFrameworkApp.java | 70 String action = intent.getAction(); local 71 Log.d(TAG, "mReceiver received action " + action); 72 if (action.equals(Intent.ACTION_AIRPLANE_MODE_CHANGED)) { 75 } else if (action.equals(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) { 85 } else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) { 95 } else if (action.equals(TelephonyIntents.ACTION_RADIO_TECHNOLOGY_CHANGED)) { 98 } else if (action.equals(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED)) {
|
/external/webkit/Source/WebKit/qt/tests/qwebpage/ |
tst_qwebpage.cpp | 213 m_view->setHtml(QString("<html><body><form name='tstform' action='data:text/html,foo'method='get'>" 1450 QAction *action = page->action(QWebPage::Back); local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppReceiver.java | 61 String action = intent.getAction(); local 64 if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED)) { 91 } else if (action.equals(BluetoothDevicePicker.ACTION_DEVICE_SELECTED)) { 112 } else if (action.equals(Constants.ACTION_INCOMING_FILE_CONFIRM)) { 127 } else if (action.equals(BluetoothShare.INCOMING_FILE_CONFIRMATION_REQUEST_ACTION)) { 133 } else if (action.equals(Constants.ACTION_OPEN) || action.equals(Constants.ACTION_LIST)) { 135 if (action.equals(Constants.ACTION_OPEN)) { 169 } else if (action.equals(Constants.ACTION_OPEN_OUTBOUND_TRANSFER)) { 176 } else if (action.equals(Constants.ACTION_OPEN_INBOUND_TRANSFER)) [all...] |
/external/zlib/contrib/untgz/ |
untgz.c | 386 int tar (gzFile in,int action,int arg,int argc,char **argv) 399 if (action == TGZ_LIST) 413 action = TGZ_INVALID; /* force error exit */ 435 action = TGZ_INVALID; 460 if (action == TGZ_LIST) 462 if (action == TGZ_EXTRACT) 473 action = TGZ_INVALID; 476 if (action == TGZ_LIST) 478 else if (action == TGZ_EXTRACT) 508 action = TGZ_INVALID 608 int action = TGZ_EXTRACT; local [all...] |
/development/samples/NFCDemo/src/com/example/android/nfc/record/ |
SmartPoster.java | 65 * "The Action record. This record describes how the service should be 66 * treated. For example, the action may indicate that the device should save 67 * the URI as a bookmark or open a browser. The Action record is optional. 69 * If the action record exists, it should be treated as a strong suggestion; 85 private SmartPoster(UriRecord uri, TextRecord title, RecommendedAction action, String type) { 88 mAction = Preconditions.checkNotNull(action); 119 RecommendedAction action = parseRecommendedAction(recordsRaw); local 121 return new SmartPoster(uri, title, action, type); 173 for (RecommendedAction action : RecommendedAction.values()) { 174 builder.put(action.getByte(), action) typedefs [all...] |
/external/iproute2/tc/ |
m_mirred.c | 32 fprintf(stderr, "Usage: mirred <DIRECTION> <ACTION> [index INDEX] <dev DEVICENAME> \n"); 48 char *mirred_n2a(int action) 50 switch (action) { 80 if (matches(*argv, "action") == 0) { 111 p.action = TC_ACT_PIPE; 120 p.action = TC_ACT_STOLEN; 161 p.action = TC_POLICE_RECLASSIFY; 164 p.action = TC_POLICE_PIPE; 168 p.action = TC_POLICE_SHOT; 171 p.action = TC_POLICE_UNSPEC [all...] |
m_police.c | 12 * 2002: J Hadi Salim - Add tc action extensions syntax 41 fprintf(stderr, "Old Syntax ACTIONTERM := action <EXCEEDACT>[/NOTEXCEEDACT] \n"); 53 char *police_action_n2a(int action, char *buf, int len) 55 switch (action) { 70 snprintf(buf, len, "%d", action); 103 int get_police_result(int *action, int *result, char *arg) 110 if (police_action_a2n(arg, action)) { 143 p.action = TC_POLICE_RECLASSIFY; 223 p.action = TC_POLICE_RECLASSIFY; 226 p.action = TC_POLICE_SHOT [all...] |
m_nat.c | 122 sel.action = TC_ACT_RECLASSIFY; 126 sel.action = TC_ACT_PIPE; 131 sel.action = TC_ACT_SHOT; 135 sel.action = TC_ACT_UNSPEC; 139 sel.action = TC_ACT_OK; 196 action_n2a(sel->action, buf3, sizeof (buf3)));
|
/frameworks/base/services/input/ |
InputListener.cpp | 47 int32_t action, int32_t flags, int32_t keyCode, int32_t scanCode, 50 action(action), flags(flags), keyCode(keyCode), scanCode(scanCode), 57 action(other.action), flags(other.flags), 71 int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, 76 action(action), flags(flags), metaState(metaState), buttonState(buttonState), 88 action(other.action), flags(other.flags) [all...] |
/packages/apps/Tag/src/com/android/apps/tag/record/ |
SmartPoster.java | 81 * "The Action record. This record describes how the service should be 82 * treated. For example, the action may indicate that the device should 83 * save the URI as a bookmark or open a browser. The Action record is 85 * the service. If the action record exists, it should be treated as 104 @Nullable ImageRecord image, RecommendedAction action, 109 mAction = Preconditions.checkNotNull(action); 141 RecommendedAction action = parseRecommendedAction(recordsRaw); local 144 return new SmartPoster(uri, title, image, action, type); 208 for (RecommendedAction action : RecommendedAction.values()) { 209 builder.put(action.getByte(), action) typedefs [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
PhoneStatusBarPolicy.java | 114 String action = intent.getAction(); 115 if (action.equals(Intent.ACTION_ALARM_CHANGED)) { 118 else if (action.equals(Intent.ACTION_SYNC_STATE_CHANGED)) { 121 else if (action.equals(BluetoothAdapter.ACTION_STATE_CHANGED) || 122 action.equals(BluetoothAdapter.ACTION_CONNECTION_STATE_CHANGED)) { 125 else if (action.equals(AudioManager.RINGER_MODE_CHANGED_ACTION) || 126 action.equals(AudioManager.VIBRATE_SETTING_CHANGED_ACTION)) { 129 else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) { 132 else if (action.equals(TtyIntent.TTY_ENABLED_CHANGE_ACTION)) { 260 String action = intent.getAction() local 283 final String action = intent.getAction(); local [all...] |
/external/chromium/chrome/browser/password_manager/ |
password_form_data.cc | 22 if (form_data.action) 23 form->action = GURL(form_data.action); 44 lhs.action == rhs.action && 60 << "action: " << form.action << std::endl
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
EditingCallbacks.cpp | 74 static const char* insertActionString(WebKitInsertAction action) 76 switch (action) { 114 gboolean shouldInsertNode(WebKitWebView* webView, WebKitDOMNode* node, WebKitDOMRange* range, WebKitInsertAction action) 118 dumpNodePath(node).data(), dumpRange(range).data(), insertActionString(action)); 123 gboolean shouldInsertText(WebKitWebView* webView, const gchar* text, WebKitDOMRange* range, WebKitInsertAction action) 127 text, dumpRange(range).data(), insertActionString(action));
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
GroupEditorActivity.java | 53 String action = getIntent().getAction(); local 55 if (ACTION_SAVE_COMPLETED.equals(action)) { 64 // Inflate a custom action bar that contains the "done" button for saving changes 77 // Show the custom action bar but hide the home icon and title 92 Uri uri = Intent.ACTION_EDIT.equals(action) ? getIntent().getData() : null; 93 mFragment.load(action, uri, getIntent().getExtras()); 124 String action = intent.getAction(); local 125 if (ACTION_SAVE_COMPLETED.equals(action)) { 152 // action to see the group URI (when group URIs are supported)
|
/packages/apps/Mms/src/com/android/mms/model/ |
AudioModel.java | 135 MediaAction action = MediaAction.NO_ACTIVE_ACTION; local 137 action = MediaAction.START; 142 action = MediaAction.STOP; 144 action = MediaAction.PAUSE; 146 action = MediaAction.SEEK; 150 appendAction(action);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/actions/ |
OpenWizardAction.java | 22 import org.eclipse.jface.action.IAction; 44 * An abstract action that displays one of our wizards. 98 * @param action The action that got us here. Can be null when used internally. 99 * @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction) 101 public void run(IAction action) { 133 mWizard = instanciateWizard(action); 159 * @param action The action parameter from {@link #run(IAction)}. 163 protected abstract IWorkbenchWizard instanciateWizard(IAction action); [all...] |
/external/chromium/chrome/browser/ |
autocomplete_history_manager_unittest.cc | 57 form.action = GURL("http://myform.com/submit.html"); 81 form.action = GURL("http://myform.com/submit.html"); 103 form.action = GURL("http://myform.com/submit.html");
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_profile_change_processor.h | 60 sync_api::SyncManager::ChangeRecord::Action action_; 64 sync_api::SyncManager::ChangeRecord::Action action, 67 : action_(action), 103 sync_api::SyncManager::ChangeRecord::Action action,
|
/external/chromium/chrome/common/ |
win_safe_util.cc | 74 ATTACHMENT_ACTION action; local 78 hr = attachment_services->Prompt(hwnd, ATTACHMENT_PROMPT_EXEC, &action); 79 if (FAILED(hr) || (ATTACHMENT_ACTION_CANCEL == action)) {
|
/external/v8/src/ |
gdb-jit.h | 134 #define GDBJIT(action) GDBJITInterface::action 138 #define GDBJIT(action) ((void) 0)
|
/frameworks/base/core/java/com/android/internal/app/ |
PlatLogoActivity.java | 76 final int action = event.getAction(); 77 if (action == MotionEvent.ACTION_DOWN) { 82 } else if (action == MotionEvent.ACTION_UP) {
|