Searched refs:host (Results 126 - 150 of 199) sorted by relevance

12345678

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDndTile.java72 public DndTile(Host host) { argument
73 super(host);
74 mController = host.getZenModeController();
H A DWifiTile.java57 public WifiTile(Host host) { argument
58 super(host);
59 mController = host.getNetworkController();
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1312 private boolean measureHierarchy(final View host, final WindowManager.LayoutParams lp, argument
1319 "Measuring " + host + " in display " + desiredWindowWidth
1341 + host.getMeasuredWidth() + "," + host.getMeasuredHeight()
1344 if ((host.getMeasuredWidthAndState()&View.MEASURED_STATE_TOO_SMALL) == 0) {
1354 + host.getMeasuredWidth() + "," + host.getMeasuredHeight() + ")");
1355 if ((host.getMeasuredWidthAndState()&View.MEASURED_STATE_TOO_SMALL) == 0) {
1367 if (mWidth != host.getMeasuredWidth() || mHeight != host
1429 dispatchApplyInsets(View host) argument
[all...]
H A DNotificationHeaderView.java70 public boolean performAccessibilityAction(View host, int action, Bundle args) {
71 if (super.performAccessibilityAction(host, action, args)) {
83 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
84 super.onInitializeAccessibilityNodeInfo(host, info);
H A DGhostView.java86 public static void calculateMatrix(View view, ViewGroup host, Matrix matrix) { argument
91 host.transformMatrixToLocal(matrix);
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.h46 const char *url, AString *host, unsigned *port, AString *path,
/frameworks/base/core/java/android/net/
H A DSntpClient.java80 * Sends an SNTP request to the given host and processes the response.
82 * @param host host name of the server.
86 public boolean requestTime(String host, int timeout) { argument
89 address = InetAddress.getByName(host);
/frameworks/base/core/java/android/security/net/config/
H A DNetworkSecurityTrustManager.java112 String host) throws CertificateException {
113 List<X509Certificate> trustedChain = mDelegate.checkServerTrusted(certs, authType, host);
111 checkServerTrusted(X509Certificate[] certs, String authType, String host) argument
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetService.aidl36 ParceledListSlice startListening(IAppWidgetHost host, String callingPackage, int hostId,
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQuickQSPanel.java103 public void setHost(QSTileHost host, QSCustomizer customizer) { argument
104 super.setHost(host, customizer);
H A DQSPanel.java176 public void setHost(QSTileHost host, QSCustomizer customizer) { argument
177 mHost = host;
180 mFooter.setHost(host);
185 mBrightnessController.setBackgroundLooper(host.getLooper());
H A DQSTile.java62 * State management done on a looper provided by the host. Tiles should update state in
95 protected QSTile(Host host) { argument
96 mHost = host;
97 mContext = host.getContext();
98 mHandler = new H(host.getLooper());
H A DQSDetail.java122 public void setHost(QSTileHost host) { argument
123 mHost = host;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDragDownHelper.java59 public DragDownHelper(Context context, View host, ExpandHelper.Callback callback, argument
66 mHost = host;
/frameworks/support/design/src/android/support/design/internal/
H A DNavigationMenuItemView.java76 public void onInitializeAccessibilityNodeInfo(View host,
78 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java372 throw new IllegalStateException("ScrollView can host only one direct child");
381 throw new IllegalStateException("ScrollView can host only one direct child");
390 throw new IllegalStateException("ScrollView can host only one direct child");
399 throw new IllegalStateException("ScrollView can host only one direct child");
1891 public boolean performAccessibilityAction(View host, int action, Bundle arguments) { argument
1892 if (super.performAccessibilityAction(host, action, arguments)) {
1895 final NestedScrollView nsvHost = (NestedScrollView) host;
1926 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
1927 super.onInitializeAccessibilityNodeInfo(host, info);
1928 final NestedScrollView nsvHost = (NestedScrollView) host;
1945 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
[all...]
H A DDrawerLayout.java854 // Only send WINDOW_STATE_CHANGE if the host has window focus. This
881 // Only send WINDOW_STATE_CHANGE if the host has window focus.
2264 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
2266 super.onInitializeAccessibilityNodeInfo(host, info);
2268 // Obtain a node for the host, then manually generate the list
2272 super.onInitializeAccessibilityNodeInfo(host, superNode);
2274 info.setSource(host);
2275 final ViewParent parent = ViewCompat.getParentForAccessibility(host);
2282 addChildrenForAccessibility(info, (ViewGroup) host);
2297 public void onInitializeAccessibilityEvent(View host, AccessibilityEven argument
2304 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
2328 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
[all...]
H A DSlidingPaneLayout.java1565 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
1567 super.onInitializeAccessibilityNodeInfo(host, superNode);
1572 info.setSource(host);
1574 final ViewParent parent = ViewCompat.getParentForAccessibility(host);
1594 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
1595 super.onInitializeAccessibilityEvent(host, event);
1601 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child, argument
1604 return super.onRequestSendAccessibilityEvent(host, child, event);
/frameworks/support/percent/src/android/support/percent/
H A DPercentLayoutHelper.java83 public PercentLayoutHelper(@NonNull ViewGroup host) { argument
84 if (host == null) {
85 throw new IllegalArgumentException("host must be non-null");
87 mHost = host;
114 // Calculate available space, accounting for host's paddings
/frameworks/base/core/java/android/app/
H A DLoaderManager.java539 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) { argument
541 mHost = host;
545 void updateHostController(FragmentHostCallback host) { argument
546 mHost = host;
/frameworks/base/core/java/android/webkit/
H A DWebViewClient.java29 * Give the host application a chance to take over the control when a new
33 * means the host application handles the url, while return false means the
39 * @return True if the host application wants to leave the current WebView
50 * Give the host application a chance to take over the control when a new
54 * means the host application handles the url, while return false means the
69 * @return True if the host application wants to leave the current WebView
77 * Notify the host application that a page has started loading. This method
94 * Notify the host application that a page has finished loading. This method
106 * Notify the host application that the WebView will load the resource
116 * Notify the host applicatio
376 onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java96 public void setHost(QSTileHost host) { argument
97 mHost = host;
108 public void saveSpecs(QSTileHost host) { argument
113 host.changeTiles(mCurrentSpecs, newSpecs);
/frameworks/compile/slang/
H A DAndroid.mk53 # Static library libslang for host
123 # Executable llvm-rs-cc for host
194 $(call transform-host-td-to-out,opt-parser-defs)
/frameworks/support/fragment/java/android/support/v4/app/
H A DLoaderManager.java526 LoaderManagerImpl(String who, FragmentHostCallback host, boolean started) { argument
528 mHost = host;
532 void updateHostController(FragmentHostCallback host) { argument
533 mHost = host;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServices.java65 public TileServices(QSTileHost host, Looper looper) { argument
66 mHost = host;

Completed in 8862 milliseconds

12345678