Searched defs:host (Results 1 - 25 of 42) sorted by relevance

12

/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/Launcher3/src/com/android/launcher3/compat/
H A DAppWidgetManagerCompatV16.java71 AppWidgetHost host, int requestCode) {
70 startConfigActivity(AppWidgetProviderInfo info, int widgetId, Activity activity, AppWidgetHost host, int requestCode) argument
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
H A DAppWidgetManagerCompat.java75 Activity activity, AppWidgetHost host, int requestCode);
74 startConfigActivity(AppWidgetProviderInfo info, int widgetId, Activity activity, AppWidgetHost host, int requestCode) argument
/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
H A DConversationActivityUiState.java91 public void setHost(final ConversationActivityUiStateHost host) { argument
92 mHost = host;
226 // Only do this if we are still attached to the host. mHost can be null if the host
/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 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/Browser/src/com/android/browser/
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);
H A DPreloadController.java149 HttpAuthHandler handler, String host,
148 onReceivedHttpAuthRequest(Tab tab, WebView view, HttpAuthHandler handler, String host, String realm) argument
/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/Email/emailcommon/src/com/android/emailcommon/utility/
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
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);
/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/Messaging/src/com/android/messaging/ui/attachmentchooser/
H A DAttachmentGridView.java54 public void setHost(final AttachmentGridHost host) { argument
55 mHost = host;
H A DAttachmentChooserFragment.java113 public void setHost(final AttachmentChooserFragmentHost host) { argument
114 mHost = host;
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
H A DKeyboardAccessibilityDelegate.java132 * @param host The host view for the provider.
136 public KeyboardAccessibilityNodeProvider<KV> getAccessibilityNodeProvider(final View host) { argument
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransfer.java503 private final String host; field in class:BluetoothOppTransfer.SocketConnectThread
518 public SocketConnectThread(String host, int port, int dummy) { argument
520 this.host = host;
531 this.host = null;
542 this.host = null;
573 s.connect(new InetSocketAddress(host, channel), CONNECT_WAIT_TIMEOUT);
575 Log.e(TAG, "TCP socket connect unknown host ");
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAuthenticationView.java107 public void setAuthenticationCallback(final AuthenticationCallback host) { argument
108 mAuthenticationCallback = host;
/packages/apps/Settings/src/com/android/settings/widget/
H A DExploreByTouchHelper.java104 * @param host View whose logical children are exposed by this helper.
108 public AccessibilityNodeProvider getAccessibilityNodeProvider(View host) { argument
245 * virtual view id, which includes the host view ({@link android.view.View#NO_ID}).
263 * Constructs and returns an {@link android.view.accessibility.AccessibilityEvent} for the host node.
308 * specified virtual view id, which includes the host view
327 * host view populated with its virtual descendants.
613 * <li>package name, set to the package of the host view's
615 * <li>event source, set to the host view and virtual view identifier,
657 * <li>parent view, set to the host view, see
663 * <li>bounds in screen coordinates, computed based on host vie
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DWebViewContextMenu.java96 public WebViewContextMenu(Activity host, InlineAttachmentViewIntentBuilder builder) { argument
97 mActivity = host;

Completed in 3759 milliseconds

12