Searched refs:host (Results 76 - 100 of 199) sorted by relevance

12345678

/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
H A DAccessibilityRoleDescriptionSupportActivity.java88 public void onInitializeAccessibilityNodeInfo(View host, argument
90 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
H A DAccessibilityRoleDescriptionSupportActivity.java88 public void onInitializeAccessibilityNodeInfo(View host, argument
90 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/base/libs/androidfw/
H A DAndroid.mk17 # libandroidfw is partially built for the host (used by obbtool, aapt, and others)
18 # These files are common to host and target builds.
42 # For the host
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileQueryHelper.java53 public TileQueryHelper(Context context, QSTileHost host) { argument
55 addSystemTiles(host);
59 private void addSystemTiles(final QSTileHost host) { argument
62 final Handler qsHandler = new Handler(host.getLooper());
66 final QSTile<?> tile = host.createTile(spec);
97 new QueryTilesTask().execute(host.getTiles());
/frameworks/native/libs/input/
H A DAndroid.mk17 # libinput is partially built for the host (used by build time keymap validation tool)
18 # These files are common to host and target builds.
38 # For the host
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DExploreByTouchHelper.java56 * host view using {@link ViewCompat#setAccessibilityDelegate}:
95 /** Virtual node identifier value for the host view's node. */
131 * specified host view.
133 * @param host view whose virtual view hierarchy is exposed by this helper
135 public ExploreByTouchHelper(View host) { argument
136 if (host == null) {
140 mHost = host;
142 final Context context = host.getContext();
147 host.setFocusable(true);
148 if (ViewCompat.getImportantForAccessibility(host)
156 getAccessibilityNodeProvider(View host) argument
449 guessPreviouslyFocusedRect(@onNull View host, @FocusRealDirection int direction, @NonNull Rect outBounds) argument
660 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
756 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DDataSaverTile.java34 public DataSaverTile(Host host) { argument
35 super(host);
36 mDataSaverController = host.getNetworkController().getDataSaverController();
H A DFlashlightTile.java45 public FlashlightTile(Host host) { argument
46 super(host);
47 mFlashlightController = host.getFlashlightController();
H A DHotspotTile.java54 public HotspotTile(Host host) { argument
55 super(host);
56 mController = host.getHotspotController();
H A DRotationLockTile.java51 public RotationLockTile(Host host) { argument
52 super(host);
53 mController = host.getRotationLockController();
H A DColorInversionTile.java43 public ColorInversionTile(Host host) { argument
44 super(host);
H A DNightDisplayTile.java36 public NightDisplayTile(Host host) { argument
37 super(host);
H A DIntentTile.java51 private IntentTile(Host host, String action) { argument
52 super(host);
62 public static QSTile<?> create(Host host, String spec) { argument
70 return new IntentTile(host, action);
/frameworks/support/core-ui/tests/java/android/support/v4/widget/
H A DExploreByTouchHelperTest.java113 * whose bounds match the host view.
118 public ParentBoundsHelper(View host) { argument
119 super(host);
121 mHost = host;
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DProxyServer.java84 String host;
89 host = hostPortSplit[0];
101 urlString = "Https://" + host + ":" + port;
105 host = url.getHost();
133 server = new Socket(host, port);
154 server = new Socket(host, port);
259 * Sends an augmented request to the final host (DIRECT connection).
/frameworks/base/core/java/android/net/
H A DWebAddress.java63 /* host */ "([" + GOOD_IRI_CHAR + "%_-][" + GOOD_IRI_CHAR + "%_\\.-]*|\\[[0-9a-fA-F:\\.]+\\])?" +
155 public void setHost(String host) { argument
156 mHost = host;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DManagedProfileController.java41 public ManagedProfileController(QSTileHost host) { argument
42 mContext = host.getContext();
H A DQuickStatusBarHeader.java305 public void setupHost(final QSTileHost host) { argument
306 mHost = host;
307 host.setHeaderView(mExpandIndicator);
309 mHeaderQsPanel.setHost(host, null /* No customization in header */);
310 setUserInfoController(host.getUserInfoController());
311 setBatteryController(host.getBatteryController());
312 setNextAlarmController(host.getNextAlarmController());
H A DKeyguardBottomAreaView.java154 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
155 super.onInitializeAccessibilityNodeInfo(host, info);
157 if (host == mLockIcon) {
159 } else if (host == mCameraImageView) {
161 } else if (host == mLeftAffordanceView) {
172 public boolean performAccessibilityAction(View host, int action, Bundle args) {
174 if (host == mLockIcon) {
178 } else if (host == mCameraImageView) {
181 } else if (host == mLeftAffordanceView) {
186 return super.performAccessibilityAction(host, actio
[all...]
/frameworks/base/packages/services/PacProcessor/jni/
H A Dcom_android_pacprocessor_PacNative.cpp107 jstring url, jstring host) {
109 String16 host16 = jstringToString16(env, host);
106 com_android_pacprocessor_PacNative_makeProxyRequestNativeLocked(JNIEnv* env, jobject, jstring url, jstring host) argument
/frameworks/av/include/media/
H A DIHDCP.h42 // Request to setup an HDCP session with the specified host listening
44 virtual status_t initAsync(const char *host, unsigned port) = 0;
/frameworks/av/media/libmediaplayerservice/
H A DHDCP.h31 virtual status_t initAsync(const char *host, unsigned port);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFooter.java74 public void setHost(QSTileHost host) { argument
75 mHost = host;
76 mSecurityController = host.getSecurityController();
77 mHandler = new H(host.getLooper());
/frameworks/compile/mclinker/lib/LD/
H A DAndroid.mk50 # For the host
92 # For the host
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DCustomTile.java70 private CustomTile(QSTileHost host, String action) { argument
71 super(host);
76 mServiceManager = host.getTileServices().getTileWrapper(this);
345 public static QSTile<?> create(QSTileHost host, String spec) { argument
353 return new CustomTile(host, action);

Completed in 1022 milliseconds

12345678