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

/frameworks/base/test-runner/src/android/test/
H A DInstrumentationTestRunner.java646 private void reportEmmaError(String hint, Exception e) { argument
647 String msg = "Failed to generate emma coverage. " + hint;
/frameworks/native/libs/gui/
H A DBufferQueue.cpp135 status_t BufferQueue::setTransformHint(uint32_t hint) { argument
136 ST_LOGV("setTransformHint: %02x", hint);
138 mTransformHint = hint;
730 "default-format=%d, transform-hint=%02x, FIFO(%d)={%s}\n",
H A DSurfaceTexture.cpp859 status_t SurfaceTexture::setTransformHint(uint32_t hint) { argument
861 return mBufferQueue->setTransformHint(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.java630 * we saw it. Used to hint where to draw edge glows.
637 * we saw it. Used to hint where to draw edge glows.
5361 protected void onDisplayHint(int hint) { argument
5362 super.onDisplayHint(hint);
5363 switch (hint) {
5375 mPopupHidden = hint == INVISIBLE;
5787 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
5791 * single color. This hint will not affect any existing background drawable set on this view (
5808 * When set to a non-zero value, the cache color hint indicates that this list is always drawn
5811 * @return The cache color hint
[all...]
H A DTextView.java562 CharSequence hint = null;
701 hint = a.getText(attr);
1085 if (hint != null) setHint(hint);
1322 * @return the Layout that is currently being used to display the hint text.
2150 * Sets the text color, size, style, hint color, and highlight color
2583 * Sets the color of the hint text for all the states (disabled, focussed, selected...) of this
2599 * Sets the color of the hint text.
2614 * @return the color of the hint text, for the different states of this TextView.
2628 * <p>Return the current color selected to paint the hint tex
3655 setHint(CharSequence hint) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1714 private static final String KEY_RECORDING_HINT = "recording-hint";
3476 * Sets recording mode hint. This tells the camera that the intent of
3480 * Camera.PictureCallback, Camera.PictureCallback)}. Using this hint can
3486 * The app can still call takePicture() when the hint is true or call
3487 * MediaRecorder.start() when the hint is false. But the performance may
3490 * @param hint true if the apps intend to record videos using
3493 public void setRecordingHint(boolean hint) { argument
3494 set(KEY_RECORDING_HINT, hint ? TRUE : FALSE);
/frameworks/base/core/java/android/view/
H A DViewGroup.java973 public void dispatchDisplayHint(int hint) { argument
974 super.dispatchDisplayHint(hint);
978 children[i].dispatchDisplayHint(hint);
2347 * to give a finer grained hint about where focus is coming from. May be null
2348 * if there is no hint.
H A DView.java6590 * descendants and give it a hint about what direction focus is heading.
6612 * is coming from. The rectangle can help give larger views a finer grained hint
6634 * to give a finer grained hint about where focus is coming from. May be null
6635 * if there is no hint.
7504 * Dispatch a hint about whether this view is displayed. For instance, when
7505 * a View moves out of the screen, it might receives a display hint indicating
7506 * the view is not displayed. Applications should not <em>rely</em> on this hint
7509 * @param hint A hint about whether or not this view is displayed:
7512 public void dispatchDisplayHint(int hint) { argument
7525 onDisplayHint(int hint) argument
[all...]

Completed in 345 milliseconds