Searched refs:host (Results 1 - 25 of 67) sorted by relevance

123

/packages/apps/Messaging/src/com/android/messaging/util/
H A DEmailAddress.java67 * @param host A string representing the host following the '@' symbol
69 public EmailAddress(final String user, final String host) { argument
70 this(user, host, false);
77 * @param host A string representing the host following the '@' symbol
80 public EmailAddress(final String user, final String host, final boolean i18n) { argument
83 setHost(host);
97 (atIndex == (emailString.length() - 1))) { // last character, no host
102 host
270 protected String host = null; field in class:EmailAddress
[all...]
H A DYouTubeUtil.java49 final String host = uri.getHost();
50 if (YOUTUBE_HOST_1.equalsIgnoreCase(host)
51 || YOUTUBE_HOST_2.equalsIgnoreCase(host)
52 || YOUTUBE_HOST_3.equalsIgnoreCase(host)
53 || YOUTUBE_HOST_4.equalsIgnoreCase(host)
54 || YOUTUBE_HOST_5.equalsIgnoreCase(host)) {
H A DDebugUtils.java108 public static void showDebugOptions(final Activity host) { argument
109 final AlertDialog.Builder builder = new AlertDialog.Builder(host);
112 host, android.R.layout.simple_list_item_1);
154 new DebugSmsMmsDumpTask(host,
162 new DebugSmsMmsDumpTask(host,
170 UIIntents.get().launchDebugMmsConfigActivity(host);
200 public DebugSmsMmsDumpTask(final Activity host, final String action) { argument
201 mHost = host;
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
H A DOverviewScreenAccessibilityDelegate.java55 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
56 if (host != null) {
58 int index = mWorkspace.indexOfChild(host);
61 movePage(mWorkspace.indexOfChild(host) + 1, host);
64 movePage(mWorkspace.indexOfChild(host) - 1, host);
69 return super.performAccessibilityAction(host, action, args);
84 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
85 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
H A DLauncherAccessibilityDelegate.java94 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
95 super.onInitializeAccessibilityNodeInfo(host, info);
96 if (!(host.getTag() instanceof ItemInfo)) return;
97 ItemInfo item = (ItemInfo) host.getTag();
102 if (UninstallDropTarget.supportsDrop(host.getContext(), item)) {
105 if (InfoDropTarget.supportsDrop(host.getContext(), item)) {
117 if (!getSupportedResizeActions(host, (LauncherAppWidgetInfo) item).isEmpty()) {
127 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
128 if ((host.getTag() instanceof ItemInfo)
129 && performAction(host, (ItemInf
135 performAction(final View host, final ItemInfo item, int action) argument
223 getSupportedResizeActions(View host, LauncherAppWidgetInfo info) argument
256 performResizeAction(int action, View host, LauncherAppWidgetInfo info) argument
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DPerformance.java60 String host;
63 host = uri.getHost();
65 host = "browser";
67 host = host.replace('.', '_');
68 host += ".trace";
70 Debug.startMethodTracing(host, 20 * 1024 * 1024);
H A DHttpAuthenticationDialog.java49 public HttpAuthenticationDialog(Context context, String host, String realm) { argument
51 mHost = host;
157 void onOk(String host, String realm, String username, String password); argument
H A DPageDialogsHandler.java89 void showHttpAuthentication(final Tab tab, final HttpAuthHandler handler, String host, String realm) { argument
90 mHttpAuthenticationDialog = new HttpAuthenticationDialog(mContext, host, realm);
92 public void onOk(String host, String realm, String username, String password) {
93 setHttpAuthUsernamePassword(host, realm, username, password);
111 * @param host The host for the password
117 public void setHttpAuthUsernamePassword(String host, String realm, argument
122 w.setHttpAuthUsernamePassword(host, realm, username, password);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DCertificateRequestor.java32 public static final String EXTRA_HOST = "CertificateRequestor.host";
45 String host = i.getStringExtra(EXTRA_HOST);
52 host, port,
H A DSSLSocketFactoryWrapper.java115 public Socket createSocket(final Socket socket, final String host, final int port, argument
117 final SSLSocket sslSocket = (SSLSocket)mFactory.createSocket(socket, host, port, autoClose);
121 verifyHostname(sslSocket, host);
127 public Socket createSocket(String host, int port) throws IOException, UnknownHostException { argument
128 final SSLSocket sslSocket = (SSLSocket)mFactory.createSocket(host, port);
132 verifyHostname(sslSocket, host);
138 public Socket createSocket(String host, int i, InetAddress inetAddress, int i2) throws argument
140 final SSLSocket sslSocket = (SSLSocket)mFactory.createSocket(host, i, inetAddress, i2);
144 verifyHostname(sslSocket, host);
H A DSSLSocketFactory.java285 final String host,
292 if (host == null) {
293 throw new IllegalArgumentException("Target host may not be null.");
318 remoteAddress = new InetSocketAddress(nameResolver.resolve(host), port);
320 remoteAddress = new InetSocketAddress(host, port);
327 hostnameVerifier.verify(host, sslsock);
379 final String host,
385 host,
389 hostnameVerifier.verify(host, sslSocket);
283 connectSocket( final Socket sock, final String host, final int port, final InetAddress localAddress, int localPort, final HttpParams params ) argument
377 createSocket( final Socket socket, final String host, final int port, final boolean autoClose ) argument
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DCameraPreview.java47 public CameraPreview(final CameraPreviewHost host) { argument
48 Assert.notNull(host);
49 Assert.notNull(host.getView());
50 mHost = host;
/packages/apps/Messaging/src/android/support/v7/mms/
H A DUtils.java151 * Redact the URL for non-VERBOSE logging. Replace url with only the host part and the length
166 String host = "";
170 host = url.getHost();
174 // Print "http://host[length]"
176 sb.append(protocol).append("://").append(host)
H A DMmsRequest.java169 // Request a global route for the host to connect
283 * Request the route to the APN (either proxy host or the MMSC host)
288 * @throws MmsHttpException for unknown host or route failure
292 String host = apn.getMmsProxy();
293 if (TextUtils.isEmpty(host)) {
295 host = uri.getHost();
298 // Request route to all resolved host addresses
300 for (final InetAddress addr : InetAddress.getAllByName(host)) {
313 Log.w(MmsService.TAG, "Unknown host "
[all...]
/packages/inputmethods/LatinIME/common/
H A DAndroid.mk23 # Also build a host side library
25 LOCAL_MODULE := latinime-common-host
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DSimSelectorItemView.java66 public void setHostInterface(final HostInterface host) { argument
67 mHost = host;
H A DConversationMessageAdapter.java50 final ConversationMessageViewHost host,
55 mHost = host;
49 ConversationMessageAdapter(final Context context, final Cursor cursor, final ConversationMessageViewHost host, final AsyncImageViewDelayLoader imageViewDelayLoader, final View.OnClickListener viewClickListener, final View.OnLongClickListener longClickListener) argument
/packages/inputmethods/LatinIME/native/jni/
H A DHostUnitTests.mk18 # HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
30 # TODO: Remove -std=c++11 once it is set by default on host build.
46 # TODO: Remove -std=c++11 once it is set by default on host build.
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebViewClient.java106 HttpAuthHandler handler, String host, String realm) {
107 mWrappedClient.onReceivedHttpAuthRequest(view, handler, host, realm);
105 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DCertInstaller.java468 void run(CertInstaller host); argument
479 public void run(CertInstaller host) { argument
484 host.extractPkcs12InBackground(mPassword);
489 public void run(CertInstaller host) { argument
490 host.mNextAction = null;
491 host.installOthers();
502 public void run(CertInstaller host) { argument
503 host.onExtractionDone(mSuccess);
/packages/inputmethods/LatinIME/tools/dicttool/
H A DAndroid.mk19 # HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
27 LATINIME_HOST_NATIVE_LIBNAME := liblatinime-aosp-dicttool-host
81 LOCAL_STATIC_JAVA_LIBRARIES := jsr305lib latinime-common-host
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DContactsUtils.java158 String host = im.getCustomProtocol();
164 // Try bringing in a well-known host for specific protocols
165 host = ContactsUtils.lookupProviderNameFromId(protocol);
167 if (TextUtils.isEmpty(host)) {
170 final String authority = host.toLowerCase();
/packages/inputmethods/LatinIME/native/dicttoolkit/
H A DUnitTests.mk31 # TODO: Remove -std=c++11 once it is set by default on host build.
48 # TODO: Remove -std=c++11 once it is set by default on host build.
/packages/apps/Email/src/com/android/email/view/
H A DCertificateSelector.java50 /** The host activity. */
67 public void setHostCallback(HostCallback host) { argument
68 mHost = host;
/packages/apps/Launcher3/src/com/android/launcher3/compat/
H A DAppWidgetManagerCompatVL.java90 AppWidgetHost host, int requestCode) {
92 host.startAppWidgetConfigureActivityForResult(activity, widgetId, 0, requestCode, null);
89 startConfigActivity(AppWidgetProviderInfo info, int widgetId, Activity activity, AppWidgetHost host, int requestCode) argument

Completed in 7799 milliseconds

123