Searched refs:host (Results 151 - 175 of 199) sorted by relevance

12345678

/frameworks/base/core/java/android/webkit/
H A DWebView.java724 * Sets a username and password pair for the specified host. This data is
729 * @param host the host that required the credentials
730 * @param username the username for the given host
731 * @param password the password for the given host
737 public void savePassword(String host, String username, String password) { argument
739 mProvider.savePassword(host, username, password);
743 * Stores HTTP authentication credentials for a given host and realm. This
747 * @param host the host t
755 setHttpAuthUsernamePassword(String host, String realm, String username, String password) argument
775 getHttpAuthUsernamePassword(String host, String realm) argument
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java1371 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
1372 super.onInitializeAccessibilityEvent(host, event);
1377 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event) { argument
1378 super.onPopulateAccessibilityEvent(host, event);
1387 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
1388 super.onInitializeAccessibilityNodeInfo(host, info);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java453 View host = mViewRootImpl.mAccessibilityFocusedHost;
454 // If there is no accessibility focus host or it is not a descendant
456 if (host == null || !ViewRootImpl.isViewDescendantOf(host, root)) {
460 if (!isShown(host)) {
463 // If the host has a provider ask this provider to search for the
465 AccessibilityNodeProvider provider = host.getAccessibilityNodeProvider();
472 focused = host.createAccessibilityNodeInfo();
H A DView.java7159 * host methods. This prevents certain properties such as class name from
7162 * as any changes will be overwritten by the host class.
7165 * methods are called <i>after</i> host methods, which all properties to be
7166 * modified without being overwritten by the host class.
16573 * host environment. For instance: the class spawns a thread in its
17446 * overlay will always have the same size as its host view.
23249 public View host; field in class:View.ScrollabilityCache
23283 public ScrollabilityCache(ViewConfiguration configuration, View host) { argument
23297 this.host = host;
23446 sendAccessibilityEvent(View host, int eventType) argument
23466 performAccessibilityAction(View host, int action, Bundle args) argument
23488 sendAccessibilityEventUnchecked(View host, AccessibilityEvent event) argument
23509 dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
23529 onPopulateAccessibilityEvent(View host, AccessibilityEvent event) argument
23549 onInitializeAccessibilityEvent(View host, AccessibilityEvent event) argument
23568 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) argument
23591 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
23610 getAccessibilityNodeProvider(View host) argument
23637 createAccessibilityNodeInfo(View host) argument
[all...]
/frameworks/native/opengl/libs/
H A DAndroid.mk154 # Build the ETC1 host static library
/frameworks/support/v8/renderscript/rs_support/
H A DAndroid.mk186 # TODO: why isn't this picked up from the host GLOBAL_CFLAGS?
/frameworks/base/core/java/android/widget/
H A DShareActionProvider.java334 public boolean onChooseActivity(ActivityChooserModel host, Intent intent) { argument
H A DActivityChooserView.java259 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
260 super.onInitializeAccessibilityNodeInfo(host, info);
H A DRadialTimePickerView.java1075 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
1076 super.onInitializeAccessibilityNodeInfo(host, info);
1083 public boolean performAccessibilityAction(View host, int action, Bundle arguments) { argument
1084 if (super.performAccessibilityAction(host, action, arguments)) {
H A DAbsListView.java2423 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) { argument
2424 super.onInitializeAccessibilityNodeInfo(host, info);
2426 final int position = getPositionForView(host);
2427 onInitializeAccessibilityNodeInfoForItem(host, position, info);
2431 public boolean performAccessibilityAction(View host, int action, Bundle arguments) { argument
2432 if (super.performAccessibilityAction(host, action, arguments)) {
2436 final int position = getPositionForView(host);
2453 final ViewGroup.LayoutParams lp = host.getLayoutParams();
2479 if (isItemClickable(host)) {
2481 return performItemClick(host, positio
[all...]
/frameworks/base/tools/aapt2/
H A DAndroid.mk130 libziparchive-host \
155 # Build the host static library: libaapt2
172 # Build the host tests: libaapt2_tests
192 # Build the host executable: aapt2
/frameworks/rs/
H A Dupdate_rs_prebuilts.sh40 # Ensure that we have constructed the latest "bcc" for the host. Without
49 ANDROID_HOST_OUT=$MY_ANDROID_DIR/out/host/$SHORT_OSNAME-x86/
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedActionsStylist.java181 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
182 super.onInitializeAccessibilityEvent(host, event);
187 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
188 super.onInitializeAccessibilityNodeInfo(host, info);
507 * Provides the resource ID of the layout defining the host view for the list of guided actions.
515 * @return The resource ID of the layout to be inflated to define the host view for the list of
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DShareActionProvider.java400 public boolean onChooseActivity(ActivityChooserModel host, Intent intent) { argument
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h154 AString host, path, user, pass; local
157 mSessionURL.c_str(), &host, &port, &path, &user, &pass));
162 mSessionURL.append(host);
170 mSessionHost = host;
339 ALOGE("Failed to look up address of session host '%s'",
513 AString host, path, user, pass; local
516 mSessionURL.c_str(), &host, &port, &path, &user, &pass)
520 mSessionURL.append(host);
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java728 String host = hostList[i];
729 Process p = Runtime.getRuntime().exec("ping -c 10 -w 100 " + host);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java701 public MonthViewTouchHelper(View host) { argument
702 super(host);
/frameworks/base/core/java/android/net/
H A DUri.java204 * {@code [ userinfo '@' ] host [ ':' port ]}
215 * {@code [ userinfo '@' ] host [ ':' port ]}
242 * Gets the encoded host from the authority for this URI. For example,
246 * @return the host for this URI or null if not present
1076 private volatile String host = NOT_CACHED; field in class:Uri.AbstractHierarchicalUri
1080 boolean cached = (host != NOT_CACHED);
1081 return cached ? host
1082 : (host = parseHost());
/frameworks/base/core/java/com/android/internal/widget/
H A DExploreByTouchHelper.java52 /** Virtual node identifier value for the host view's node. */
79 /** Context of the host view. **/
109 * @param host View whose logical children are exposed by this helper.
113 public AccessibilityNodeProvider getAccessibilityNodeProvider(View host) { argument
283 * virtual view id, which includes the host view ({@link #HOST_ID}).
301 * Constructs and returns an {@link AccessibilityEvent} for the host node.
350 * specified virtual view id, which includes the host view
369 * host view populated with its virtual descendants.
378 // Allow the client to populate the host node.
692 * <li>package name, set to the package of the host vie
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java181 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
182 super.onInitializeAccessibilityNodeInfo(host, info);
217 public boolean performAccessibilityAction(View host, int action, Bundle args) {
242 return super.performAccessibilityAction(host, action, args);
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DMain.java189 File host = new File(out, "host");
190 if (!host.isDirectory()) {
193 File[] hosts = host.listFiles(path -> path.isDirectory() &&
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragment.java100 public Fragment instantiate(FragmentHostCallback host, Fragment parent, argument
103 final Context context = host.getContext();
123 mInstance.mFragmentManager = host.mFragmentManager;
639 * Return the host object of this fragment. May return {@code null} if the fragment
1555 * Initialize the contents of the Fragment host's standard options menu. You
1571 * Prepare the Fragment host's standard options menu to be displayed. This is
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java144 RecyclerView.State state, View host, AccessibilityNodeInfoCompat info) {
145 ViewGroup.LayoutParams lp = host.getLayoutParams();
147 super.onInitializeAccessibilityNodeInfoForItem(host, info);
143 onInitializeAccessibilityNodeInfoForItem(RecyclerView.Recycler recycler, RecyclerView.State state, View host, AccessibilityNodeInfoCompat info) argument
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java3057 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) { argument
3058 super.onInitializeAccessibilityEvent(host, event);
3072 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) { argument
3073 super.onInitializeAccessibilityNodeInfo(host, info);
3085 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
3086 if (super.performAccessibilityAction(host, action, args)) {
/frameworks/base/core/java/android/app/
H A DFragment.java103 public Fragment instantiate(FragmentHostCallback host, Fragment parent, argument
106 final Context context = host.getContext();
126 mInstance.mFragmentManager = host.mFragmentManager;
801 * Return the host object of this fragment. May return {@code null} if the fragment

Completed in 789 milliseconds

12345678