Searched defs:hint (Results 1 - 15 of 15) sorted by relevance

/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
H A DCoverageListener.java100 private void reportEmmaError(PrintStream writer, String hint, Exception e) { argument
101 String msg = "Failed to generate emma coverage. " + hint;
/frameworks/support/v4/honeycomb/android/support/v4/widget/
H A DSearchViewCompatHoneycomb.java91 public static void setQueryHint(View searchView, CharSequence hint) { argument
92 ((SearchView) searchView).setQueryHint(hint);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSearchViewCompat.java43 void setQueryHint(View searchView, CharSequence hint); argument
100 public void setQueryHint(View searchView, CharSequence hint) { argument
194 public void setQueryHint(View searchView, CharSequence hint) { argument
195 SearchViewCompatHoneycomb.setQueryHint(searchView, hint);
425 * Sets the hint text to display in the query text field. This overrides any hint specified
429 * @param hint the hint text to display
431 public static void setQueryHint(View searchView, CharSequence hint) { argument
432 IMPL.setQueryHint(searchView, hint);
[all...]
/frameworks/native/libs/gui/
H A DIGraphicBufferConsumer.cpp346 virtual status_t setTransformHint(uint32_t hint) { argument
349 data.writeInt32(hint);
468 uint32_t hint = data.readInt32(); local
469 status_t result = setTransformHint(hint);
H A DBufferQueue.cpp132 status_t BufferQueue::setTransformHint(uint32_t hint) { argument
133 ST_LOGV("setTransformHint: %02x", hint);
135 mTransformHint = hint;
792 "default-format=%d, transform-hint=%02x, FIFO(%d)={%s}\n",
H A DGLConsumer.cpp1065 status_t GLConsumer::setTransformHint(uint32_t hint) { argument
1067 return mConsumer->setTransformHint(hint);
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java645 private void reportEmmaError(String hint, Exception e) { argument
646 String msg = "Failed to generate emma coverage. " + hint;
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java215 * <p>Sets the optional hint text that is displayed at the bottom of the
219 * @param hint the text to be displayed to the user
225 public void setCompletionHint(CharSequence hint) { argument
226 mHintText = hint;
227 if (hint != null) {
235 mHintView.setText(hint);
244 * Gets the optional hint text displayed at the bottom of the the matching list.
246 * @return The hint text, if any
991 protected void onDisplayHint(int hint) { argument
992 super.onDisplayHint(hint);
[all...]
H A DSearchView.java524 * Sets the hint text to display in the query text field. This overrides any hint specified
527 * @param hint the hint text to display
531 public void setQueryHint(CharSequence hint) { argument
532 mQueryHint = hint;
537 * Gets the hint text to display in the query text field.
538 * @return the query hint text, if specified, null otherwise.
546 CharSequence hint = null;
549 hint
[all...]
H A DAbsListView.java644 * we saw it. Used to hint where to draw edge glows.
651 * we saw it. Used to hint where to draw edge glows.
5574 protected void onDisplayHint(int hint) { argument
5575 super.onDisplayHint(hint);
5576 switch (hint) {
5588 mPopupHidden = hint == INVISIBLE;
6113 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
6117 * single color. This hint will not affect any existing background drawable set on this view (
6134 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
6137 * @return The cache color hint
[all...]
H A DTextView.java749 CharSequence hint = null;
886 hint = a.getText(attr);
1271 if (hint != null) setHint(hint);
1511 * @return the Layout that is currently being used to display the hint text.
2396 * Sets the text color, size, style, hint color, and highlight color
2842 * Sets the color of the hint text for all the states (disabled, focussed, selected...) of this
2858 * Sets the color of the hint text.
2873 * @return the color of the hint text, for the different states of this TextView.
2887 * <p>Return the current color selected to paint the hint tex
3903 setHint(CharSequence hint) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java555 * Sets the hint text to display in the query text field. This overrides any hint specified
558 * @param hint the hint text to display
562 public void setQueryHint(CharSequence hint) { argument
563 mQueryHint = hint;
568 * Gets the hint text to display in the query text field.
569 * @return the query hint text, if specified, null otherwise.
577 CharSequence hint = null;
580 hint
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1875 private static final String KEY_RECORDING_HINT = "recording-hint";
3661 * Sets recording mode hint. This tells the camera that the intent of
3665 * Camera.PictureCallback, Camera.PictureCallback)}. Using this hint can
3671 * The app can still call takePicture() when the hint is true or call
3672 * MediaRecorder.start() when the hint is false. But the performance may
3675 * @param hint true if the apps intend to record videos using
3678 public void setRecordingHint(boolean hint) { argument
3679 set(KEY_RECORDING_HINT, hint ? TRUE : FALSE);
/frameworks/base/core/java/android/view/
H A DViewGroup.java1011 public void dispatchDisplayHint(int hint) { argument
1012 super.dispatchDisplayHint(hint);
1016 children[i].dispatchDisplayHint(hint);
2390 * to give a finer grained hint about where focus is coming from. May be null
2391 * if there is no hint.
H A DView.java6929 * descendants and give it a hint about what direction focus is heading.
6951 * is coming from. The rectangle can help give larger views a finer grained hint
6973 * to give a finer grained hint about where focus is coming from. May be null
6974 * if there is no hint.
7971 * Dispatch a hint about whether this view is displayed. For instance, when
7972 * a View moves out of the screen, it might receives a display hint indicating
7973 * the view is not displayed. Applications should not <em>rely</em> on this hint
7976 * @param hint A hint about whether or not this view is displayed:
7979 public void dispatchDisplayHint(int hint) { argument
7992 onDisplayHint(int hint) argument
[all...]

Completed in 1724 milliseconds