Searched defs:empty (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/ui/tests/region/
H A Dregion.cpp28 Region empty; local
33 Region reg4 = empty | reg1;
34 Region reg5 = reg1 | empty;
/frameworks/base/media/libstagefright/foundation/
H A DAString.cpp85 bool AString::empty() const { function in class:android::AString
/frameworks/base/include/utils/
H A DList.h180 /* returns true if the list is empty */
181 inline bool empty() const { return mpMiddle->getNext() == mpMiddle; } function in class:android::List
/frameworks/base/tools/aapt/
H A DXMLNode.cpp322 bool empty = true; local
326 empty = false;
337 if (0 && empty) {
338 fprintf(stderr, "%s:%d: warning: empty '%s' span found in text '%s'\n",
1249 // If not an element, include the CDATA, even if it is empty.
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java84 boolean empty; // Is this an empty background process? field in class:ProcessRecord
170 pw.print(" empty="); pw.println(empty);
/frameworks/base/core/java/android/app/
H A DSearchDialog.java585 * @param empty whether the search query text field is empty. If it is, then the other
589 private void updateVoiceButton(boolean empty) { argument
593 && mSearchable.getVoiceSearchEnabled() && empty) {
683 * Callback to watch the textedit field for empty/non-empty
856 // when it's time to do the search. We always build it here (even if empty)
1378 * Returns true if the text field is empty, or contains only whitespace.
/frameworks/base/core/java/android/widget/
H A DAdapterView.java186 * Represents an empty or invalid row id
203 * determining the focusable state (such as whether its empty or the text
357 * or when the adapter becomes empty.
630 * Sets the view to show if the adapter is empty
636 final boolean empty = ((adapter == null) || adapter.isEmpty());
637 updateEmptyStatus(empty);
641 * When the current adapter is empty, the AdapterView can display a special view
642 * call the empty view. The empty view is used to provide feedback to the user
645 * @return The view to show if the adapter is empty
706 updateEmptyStatus(boolean empty) argument
[all...]

Completed in 1342 milliseconds