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

123

/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDrm.cpp91 Vector<DrmUUID> drmSchemes, empty; local
109 return empty;
121 return empty;
130 return empty;
/frameworks/av/media/libstagefright/foundation/
H A DAString.cpp47 ALOGW("ctor got NULL, using empty string instead");
59 ALOGW("ctor got NULL, using empty string instead");
107 bool AString::empty() const { function in class:android::AString
/frameworks/av/media/libstagefright/webm/
H A DLinkedBlockingQueue.h34 while (mList.empty()) {
53 bool empty() { function in class:android::LinkedBlockingQueue
55 return mList.empty();
/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.java197 * Represents an empty or invalid row id
214 * determining the focusable state (such as whether its empty or the text
398 * or when the adapter becomes empty.
681 * Sets the view to show if the adapter is empty
694 final boolean empty = ((adapter == null) || adapter.isEmpty());
695 updateEmptyStatus(empty);
699 * When the current adapter is empty, the AdapterView can display a special view
700 * called the empty view. The empty view is used to provide feedback to the user
703 * @return The view to show if the adapter is empty
764 updateEmptyStatus(boolean empty) argument
[all...]
H A DSearchView.java566 // If the query is not empty and submit is requested, submit the query
576 * This value may be specified as an empty string to prevent any query hint
675 * Enables showing a submit button when the query is non-empty. In cases where the SearchView
1218 * @param empty whether the search query text field is empty. If it is, then the other
1221 private void updateVoiceButton(boolean empty) { argument
1223 if (mVoiceButtonEnabled && !isIconified() && empty) {
1655 // when it's time to do the search. We always build it here (even if empty)
1768 * Callback to watch the text field for empty/non-empty
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp237 jboolean empty = metadata->isEmpty(); local
240 __FUNCTION__, empty, metadata->entryCount());
242 return empty;
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp577 ALOGV("Installing empty resources in to table %p\n", mResources);
612 bool empty = appendPathToResTable(mAssetPaths.itemAt(i)); local
613 onlyEmptyResources = onlyEmptyResources && empty;
/frameworks/base/libs/androidfw/include/androidfw/
H A DStringPiece.h60 bool empty() const;
161 inline bool BasicStringPiece<TChar>::empty() const { function in class:android::BasicStringPiece
/frameworks/base/libs/hwui/
H A DLayerBuilder.h99 bool empty() const { function in class:android::uirenderer::LayerBuilder
100 return mBatches.empty();
/frameworks/base/libs/hwui/font/
H A DFont.cpp247 ALOGW("The path for drawTextOnPath is empty or null");
407 // draw garbage; also skip empty glyphs (spaces)
456 bool empty = skiaGlyph.fWidth == 0 || skiaGlyph.fHeight == 0; local
457 if (!empty) {
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java153 boolean empty; // Is this an empty background process? field in class:ProcessRecord
271 pw.print(" empty="); pw.println(empty);
/frameworks/base/tools/aapt/
H A DXMLNode.cpp351 bool empty = true; local
355 empty = false;
366 if (0 && empty) {
367 fprintf(stderr, "%s:%d: warning: empty '%s' span found in text '%s'\n",
1379 // If not an element, include the CDATA, even if it is empty.
/frameworks/base/tools/aapt2/cmd/
H A DCompile.cpp125 if (!data.config_str.empty()) {
129 if (!data.extension.empty()) {
631 static std::string empty; variable
632 return empty;
684 if (!flags.GetArgs().empty()) {
H A DDump.cpp162 static std::string empty; variable
163 return empty;
H A DOptimize.cpp80 static std::string empty; variable
81 return empty;
354 if (!configs.empty()) {
/frameworks/base/tools/aapt2/java/
H A DClassDefinition.cpp42 bool ClassDefinition::empty() const { function in class:aapt::ClassDefinition
44 if (!member->empty()) {
53 if (members_.empty() && !create_if_empty_) {
/frameworks/base/wifi/tests/
H A DAndroid.mk39 empty:= macro
40 space:= $(empty) $(empty)
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h41 if (m_Stack.empty()) { // reach the end
71 if (m_Queue.empty()) { // reach the end
321 bool empty() const { return m_Root.empty(); } function in class:mcld::BinaryTreeBase
453 if (!pTree.empty()) {
/frameworks/compile/mclinker/include/mcld/LD/
H A DELFSegment.h69 bool empty() const { return m_SectionList.empty(); } function in class:mcld::ELFSegment
H A DELFSegmentFactory.h43 bool empty() const { return m_Segments.empty(); } function in class:mcld::ELFSegmentFactory
55 /// produce - produce an empty ELF segment information.
H A DNamePool.h93 bool empty() const { return m_Table.empty(); } function in class:mcld::NamePool
H A DRelocData.h71 bool empty() const { return m_Relocations.empty(); } function in class:mcld::RelocData
H A DSectionData.h62 bool empty() const { return m_Fragments.empty(); } function in class:mcld::SectionData
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h73 bool empty() const;
143 bool empty() const { return (begin == end); } function in class:mcld::SymbolCategory::Category

Completed in 451 milliseconds

123