Searched defs:empty (Results 1 - 25 of 28) sorted by path

12

/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp85 bool AString::empty() const { function in class:android::AString
/frameworks/base/core/java/android/util/
H A DJsonWriter.java238 private JsonWriter open(JsonScope empty, String openBracket) throws IOException { argument
240 stack.add(empty);
249 private JsonWriter close(JsonScope empty, JsonScope nonempty, String closeBracket) argument
252 if (context != nonempty && context != empty) {
/frameworks/base/core/java/android/widget/
H A DAdapterView.java193 * Represents an empty or invalid row id
210 * determining the focusable state (such as whether its empty or the text
373 * or when the adapter becomes empty.
646 * Sets the view to show if the adapter is empty
659 final boolean empty = ((adapter == null) || adapter.isEmpty());
660 updateEmptyStatus(empty);
664 * When the current adapter is empty, the AdapterView can display a special view
665 * call the empty view. The empty view is used to provide feedback to the user
668 * @return The view to show if the adapter is empty
729 updateEmptyStatus(boolean empty) argument
[all...]
H A DSearchView.java517 // If the query is not empty and submit is requested, submit the query
614 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1121 * @param empty whether the search query text field is empty. If it is, then the other
1124 private void updateVoiceButton(boolean empty) { argument
1126 if (mVoiceButtonEnabled && !isIconified() && empty) {
1516 // when it's time to do the search. We always build it here (even if empty)
1629 * Callback to watch the text field for empty/non-empty
1679 * Returns true if the text field is empty, o
[all...]
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp197 sp<KeyCharacterMap> KeyCharacterMap::empty() { function in class:android::KeyCharacterMap
/frameworks/base/libs/hwui/
H A DLayer.h121 inline void setEmpty(bool empty) { argument
122 this->empty = empty;
126 return empty;
279 bool empty; member in struct:android::uirenderer::Layer
H A DSnapshot.h119 * is typicalled ignored if its layer is invisible or empty.
162 bool empty; member in class:android::uirenderer::Snapshot
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java64 int clientHiddenAdj; // If empty but hidden client, this is the adjustment to use
65 int emptyAdj; // If empty, this is the adjustment to use
108 boolean empty; // Is this an empty background process? field in class:ProcessRecord
202 pw.print(" empty="); pw.println(empty);
206 pw.print(" empty="); pw.print(emptyAdj);
/frameworks/base/tools/aapt/
H A DXMLNode.cpp329 bool empty = true; local
333 empty = false;
344 if (0 && empty) {
345 fprintf(stderr, "%s:%d: warning: empty '%s' span found in text '%s'\n",
1264 // If not an element, include the CDATA, even if it is empty.
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h49 if (m_Stack.empty()) { // reach the end
84 if (m_Queue.empty()) { // reach the end
344 bool empty() const { function in class:mcld::BinaryTreeBase
345 return m_Root.empty();
464 if (!pTree.empty()) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DNamePool.h92 bool empty() const function in class:mcld::NamePool
93 { return m_Table.empty(); }
H A DSectionData.h68 bool empty() const { return m_Fragments.empty(); } function in class:mcld::SectionData
H A DSectionMap.h60 bool empty() const function in class:mcld::SectionMap
61 { return m_SectMap.empty(); }
H A DSectionMerger.h58 bool empty() const function in class:mcld::SectionMerger
59 { return m_LDSectionMap.empty(); }
H A DStringUnorderedMap.h76 bool empty() function in class:mcld::StringUnorderedMap
/frameworks/compile/mclinker/include/mcld/MC/
H A DAttributeFactory.h74 bool empty() const function in class:mcld::AttributeFactory
75 { return m_AttrSet.empty(); }
H A DSymbolCategory.h70 bool empty() const;
132 bool empty() const function in class:mcld::SymbolCategory::Category
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h144 if (empty())
158 if (empty())
233 bool empty() const { function in class:mcld::LinearAllocatorBase
H A DGCFactory.h193 bool empty() const function in class:mcld::GCFactoryBase
194 { return Alloc::empty(); }
H A DHandleToArea.h102 bool empty() const function in class:mcld::HandleToArea
103 { return m_AreaMap.empty(); }
H A DTargetRegistry.h140 static bool empty() { return s_TargetList.empty(); } function in class:mcld::TargetRegistry
/frameworks/compile/mclinker/lib/MC/
H A DSymbolCategory.cpp79 if (!current->empty()) {
127 assert(!current->empty());
226 bool SymbolCategory::empty() const function in class:SymbolCategory
235 return (m_pFile->empty() && m_pLocal->empty());
240 return m_pCommon->empty();
245 return (m_pWeak->empty() && m_pGlobal->empty());
/frameworks/compile/mclinker/lib/Support/
H A DPath.cpp45 if (m_PathName.empty())
66 assert(0 && "assign a null or empty string to Path");
96 bool Path::empty() const function in class:Path
98 return m_PathName.empty();
120 if (!m_PathName.empty() &&
/frameworks/native/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
H A DString8.h52 static inline const String8 empty();
242 inline const String8 String8::empty() { function in class:android::String8

Completed in 1800 milliseconds

12