Searched defs:empty (Results 26 - 39 of 39) sorted by relevance

12

/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h46 if (m_Stack.empty()) { // reach the end
81 if (m_Queue.empty()) { // reach the end
341 bool empty() const { function in class:mcld::BinaryTreeBase
342 return m_Root.empty();
461 if (!pTree.empty()) {
/frameworks/compile/mclinker/include/mcld/Script/
H A DOutputSectDesc.h183 bool empty() const { return m_OutputSectCmds.empty(); } function in class:mcld::OutputSectDesc
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp220 jboolean empty = metadata->isEmpty(); local
223 __FUNCTION__, empty, metadata->entryCount());
225 return empty;
/frameworks/base/libs/hwui/
H A DLayer.h171 inline void setEmpty(bool empty) { argument
172 this->empty = empty;
176 return empty;
357 bool empty; member in class:android::uirenderer::Layer
/frameworks/base/libs/hwui/font/
H A DFont.cpp253 ALOGW("The path for drawTextOnPath is empty or null");
419 // draw garbage; also skip empty glyphs (spaces)
462 bool empty = skiaGlyph.fWidth == 0 || skiaGlyph.fHeight == 0; local
463 if (!empty) {
/frameworks/base/tools/aapt/
H A DXMLNode.cpp338 bool empty = true; local
342 empty = false;
353 if (0 && empty) {
354 fprintf(stderr, "%s:%d: warning: empty '%s' span found in text '%s'\n",
1348 // If not an element, include the CDATA, even if it is empty.
/frameworks/base/core/java/android/widget/
H A DAdapterView.java192 * Represents an empty or invalid row id
209 * determining the focusable state (such as whether its empty or the text
383 * or when the adapter becomes empty.
656 * Sets the view to show if the adapter is empty
669 final boolean empty = ((adapter == null) || adapter.isEmpty());
670 updateEmptyStatus(empty);
674 * When the current adapter is empty, the AdapterView can display a special view
675 * called the empty view. The empty view is used to provide feedback to the user
678 * @return The view to show if the adapter is empty
739 updateEmptyStatus(boolean empty) argument
[all...]
H A DSearchView.java568 // If the query is not empty and submit is requested, submit the query
665 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1178 * @param empty whether the search query text field is empty. If it is, then the other
1181 private void updateVoiceButton(boolean empty) { argument
1183 if (mVoiceButtonEnabled && !isIconified() && empty) {
1569 // when it's time to do the search. We always build it here (even if empty)
1682 * Callback to watch the text field for empty/non-empty
1738 * Returns true if the text field is empty, o
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java129 boolean empty; // Is this an empty background process? field in class:ProcessRecord
254 pw.print(" empty="); pw.println(empty);
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp199 sp<KeyCharacterMap> KeyCharacterMap::empty() { function in class:android::KeyCharacterMap
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAdapterViewCompat.java196 * Represents an empty or invalid row id
213 * determining the focusable state (such as whether its empty or the text
385 * or when the adapter becomes empty.
658 * Sets the view to show if the adapter is empty
664 final boolean empty = ((adapter == null) || adapter.isEmpty());
665 updateEmptyStatus(empty);
669 * When the current adapter is empty, the AdapterView can display a special view
670 * call the empty view. The empty view is used to provide feedback to the user
673 * @return The view to show if the adapter is empty
734 updateEmptyStatus(boolean empty) argument
[all...]
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp681 ALOGV("Installing empty resources in to table %p\n", mResources);
722 bool empty = appendPathToResTable(mAssetPaths.itemAt(i)); local
723 onlyEmptyResources = onlyEmptyResources && empty;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java580 // If the query is not empty and submit is requested, submit the query
669 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1092 * @param empty whether the search query text field is empty. If it is, then the other
1095 private void updateVoiceButton(boolean empty) { argument
1097 if (mVoiceButtonEnabled && !isIconified() && empty) {
1475 // when it's time to do the search. We always build it here (even if empty)
1590 * Callback to watch the text field for empty/non-empty
1638 * Returns true if the text field is empty, o
[all...]
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp1019 bool empty = mDisplays[dpy]->getVisibleLayersSortedByZ().size() == 0; local
1030 bool mustRecompose = dirty && !(empty && wasEmpty);
1036 empty ? "+" : "-",
1042 mDisplays[dpy]->lastCompositionHadVisibleLayers = !empty;
1603 // handle hidden surfaces by setting the visible region to empty
1738 if (frameQueued && layersWithQueuedFrames.empty()) {
1743 return !layersWithQueuedFrames.empty();
1758 // 2) There is work to be done (the dirty region isn't empty)
1844 // (common case is that letterbox ends-up being empty)
2803 case 1006:{ // send empty updat
[all...]

Completed in 299 milliseconds

12