Searched refs:host (Results 1 - 25 of 68) 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 DOverviewAccessibilityDelegate.java41 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
42 super.onInitializeAccessibilityNodeInfo(host, info);
44 Context context = host.getContext();
55 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
56 Launcher launcher = Launcher.getLauncher(host.getContext());
61 launcher.onClickWallpaperPicker(host);
64 launcher.onClickAddWidgetButton(host);
67 launcher.onClickSettingsButton(host);
70 return super.performAccessibilityAction(host, action, args);
H A DOverviewScreenAccessibilityDelegate.java56 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
57 if (host != null) {
59 int index = mWorkspace.indexOfChild(host);
62 movePage(mWorkspace.indexOfChild(host) + 1, host);
65 movePage(mWorkspace.indexOfChild(host) - 1, host);
70 return super.performAccessibilityAction(host, action, args);
85 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
86 super.onInitializeAccessibilityNodeInfo(host, inf
[all...]
H A DShortcutMenuAccessibilityDelegate.java43 protected void addActions(View host, AccessibilityNodeInfo info) { argument
48 public boolean performAction(View host, ItemInfo item, int action) { argument
50 if (!(host.getParent() instanceof DeepShortcutView)) {
53 final ShortcutInfo info = ((DeepShortcutView) host.getParent()).getFinalInfo();
H A DLauncherAccessibilityDelegate.java101 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
102 super.onInitializeAccessibilityNodeInfo(host, info);
103 addActions(host, info);
106 protected void addActions(View host, AccessibilityNodeInfo info) { argument
107 if (!(host.getTag() instanceof ItemInfo)) return;
108 ItemInfo item = (ItemInfo) host.getTag();
110 if (host instanceof BubbleTextView && ((BubbleTextView) host).hasDeepShortcuts()) {
117 if (UninstallDropTarget.supportsDrop(host.getContext(), item)) {
132 if (!getSupportedResizeActions(host, (LauncherAppWidgetInf
144 performAccessibilityAction(View host, int action, Bundle args) argument
152 performAction(final View host, final ItemInfo item, int action) argument
240 getSupportedResizeActions(View host, LauncherAppWidgetInfo info) argument
273 performResizeAction(int action, View host, LauncherAppWidgetInfo info) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DViewSelectedFilter.java47 ViewGroup host, View child,AccessibilityEvent event) {
51 return super.onRequestSendAccessibilityEvent(host, child, event);
46 onRequestSendAccessibilityEvent( ViewGroup host, View child,AccessibilityEvent event) argument
/packages/apps/Dialer/src/com/android/dialer/list/
H A DContentChangedFilter.java31 public boolean onRequestSendAccessibilityEvent (ViewGroup host, View child, AccessibilityEvent event){ argument
37 return super.onRequestSendAccessibilityEvent(host,child,event);
/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/Settings/src/com/android/settings/localepicker/
H A DLocaleLinearLayoutManager.java76 RecyclerView.State state, View host, AccessibilityNodeInfoCompat info) {
78 super.onInitializeAccessibilityNodeInfoForItem(recycler, state, host, info);
81 final int position = this.getPosition(host);
82 final LocaleDragCell dragCell = (LocaleDragCell) host;
113 RecyclerView.State state, View host, int action, Bundle args) {
116 final int position = this.getPosition(host);
151 return super.performAccessibilityActionForItem(recycler, state, host, action, args);
75 onInitializeAccessibilityNodeInfoForItem(RecyclerView.Recycler recycler, RecyclerView.State state, View host, AccessibilityNodeInfoCompat info) argument
112 performAccessibilityActionForItem(RecyclerView.Recycler recycler, RecyclerView.State state, View host, int action, Bundle args) 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/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.java173 String host = im.getCustomProtocol();
179 // Try bringing in a well-known host for specific protocols
180 host = ContactsUtils.lookupProviderNameFromId(protocol);
182 if (TextUtils.isEmpty(host)) {
185 final String authority = host.toLowerCase();
/packages/apps/Launcher3/
H A DAndroid.mk72 LOCAL_STATIC_JAVA_LIBRARIES := host-libprotobuf-java-nano
/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/CertInstaller/src/com/android/certinstaller/
H A DCertInstaller.java499 void run(CertInstaller host); argument
510 public void run(CertInstaller host) { argument
515 host.extractPkcs12InBackground(mPassword);
520 public void run(CertInstaller host) { argument
521 host.mNextAction = null;
522 host.installOthers();
533 public void run(CertInstaller host) { argument
534 host.onExtractionDone(mSuccess);

Completed in 1413 milliseconds

123