Searched refs:hint (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/awt/java/awt/image/
H A DAffineTransformOp.java95 Object hint = hints.get(RenderingHints.KEY_INTERPOLATION);
96 if (hint != null) {
98 if (hint == RenderingHints.VALUE_INTERPOLATION_BILINEAR) {
100 } else if (hint == RenderingHints.VALUE_INTERPOLATION_BICUBIC) {
104 hint = hints.get(RenderingHints.KEY_RENDERING);
106 if (hint == RenderingHints.VALUE_RENDER_QUALITY) {
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java231 * <p>Sets the optional hint text that is displayed at the bottom of the
235 * @param hint the text to be displayed to the user
239 public void setCompletionHint(CharSequence hint) { argument
240 mHintText = hint;
1035 protected void onDisplayHint(int hint) { argument
1036 super.onDisplayHint(hint);
1037 switch (hint) {
1318 // if an hint has been specified, we accomodate more space for it and
1329 // measure the hint's height to find how much more vertical space
H A DDialerFilter.java55 mHint = (EditText) findViewById(com.android.internal.R.id.hint);
57 throw new IllegalStateException("DialerFilter must have a child EditText named hint");
H A DAbsListView.java3282 protected void onDisplayHint(int hint) { argument
3283 super.onDisplayHint(hint);
3284 switch (hint) {
3296 mPopupHidden = hint == INVISIBLE;
3691 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
3708 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
3711 * @return The cache color hint
4168 * Updates the cache color hint of all known views.
4170 * @param color The new cache color hint.
H A DTextView.java426 CharSequence hint = null;
554 hint = a.getText(attr);
888 if (hint != null) setHint(hint);
1569 * Sets the text color, size, style, hint color, and highlight color
1870 * Sets the color of the hint text.
1881 * Sets the color of the hint text.
1891 * <p>Return the color used to paint the hint text.</p>
1893 * @return Returns the list of hint text colors.
1900 * <p>Return the current color selected to paint the hint tex
2832 setHint(CharSequence hint) argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java606 private void reportEmmaError(String hint, Exception e) { argument
607 String msg = "Failed to generate emma coverage. " + hint;
/frameworks/base/core/java/android/app/
H A DSearchDialog.java567 * Update the hint in the query text field.
571 String hint = null;
575 hint = mActivityContext.getString(hintId);
578 mSearchAutoComplete.setHint(hint);
/frameworks/base/core/java/android/view/
H A DViewGroup.java688 public void dispatchDisplayHint(int hint) { argument
689 super.dispatchDisplayHint(hint);
693 children[i].dispatchDisplayHint(hint);
1049 * to give a finer grained hint about where focus is coming from. May be null
1050 * if there is no hint.
H A DView.java3540 * descendants and give it a hint about what direction focus is heading.
3562 * is coming from. The rectangle can help give larger views a finer grained hint
3583 * to give a finer grained hint about where focus is coming from. May be null
3584 * if there is no hint.
3858 * Dispatch a hint about whether this view is displayed. For instance, when
3859 * a View moves out of the screen, it might receives a display hint indicating
3860 * the view is not displayed. Applications should not <em>rely</em> on this hint
3863 * @param hint A hint about whether or not this view is displayed:
3866 public void dispatchDisplayHint(int hint) { argument
3879 onDisplayHint(int hint) argument
[all...]

Completed in 152 milliseconds