Searched defs:Empty (Results 51 - 75 of 148) sorted by relevance

123456

/external/clang/test/SemaCXX/
H A Dliteral-type.cpp30 struct Empty {}; struct
35 Empty empty;
45 static_assert(__is_literal(Empty), "fail");
/external/lldb/source/Core/
H A DStreamString.cpp51 StreamString::Empty() const function in class:StreamString
/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp21 static ConstantRange Empty; member in class:__anon26495::ConstantRangeTest
28 ConstantRange ConstantRangeTest::Empty(16, false);
44 EXPECT_FALSE(Empty.isFullSet());
45 EXPECT_TRUE(Empty.isEmptySet());
46 EXPECT_TRUE(Empty.inverse().isFullSet());
47 EXPECT_FALSE(Empty.isWrappedSet());
48 EXPECT_FALSE(Empty.contains(APInt(16, 0x0)));
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x9)));
50 EXPECT_FALSE(Empty.contains(APInt(16, 0xa)));
51 EXPECT_FALSE(Empty
[all...]
/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback.cc138 bool Feedback::Empty() const { function in class:spellcheck::Feedback
/external/chromium_org/chrome/browser/sync/sessions/
H A Dtab_node_pool.cc180 bool TabNodePool::Empty() const { return free_nodes_pool_.empty(); } function in class:browser_sync::TabNodePool
/external/chromium_org/content/renderer/gpu/
H A Dframe_swap_message_queue.cc22 virtual bool Empty() const = 0;
56 virtual bool Empty() const OVERRIDE { return queue_.empty(); }
89 virtual bool Empty() const OVERRIDE { return queue_.empty(); }
95 *is_first = Empty();
121 bool FrameSwapMessageQueue::Empty() const { function in class:content::FrameSwapMessageQueue
123 return next_drain_messages_.empty() && visual_state_queue_->Empty() &&
124 swap_queue_->Empty();
/external/chromium_org/courgette/
H A Dstreams.h71 bool Empty() const { return current_ == end_; } function in class:courgette::SourceStream
190 bool Empty() const;
/external/chromium_org/net/proxy/
H A Dproxy_config_service_common_unittest.cc135 ProxyRulesExpectation ProxyRulesExpectation::Empty() { function in class:net::ProxyRulesExpectation
/external/chromium_org/net/quic/
H A Diovector.h161 bool Empty() const { return iovec_.empty(); } function in class:net::IOVector
166 struct iovec* iovec() { return !Empty() ? &iovec_[0] : NULL; }
169 const struct iovec* iovec() const { return !Empty() ? &iovec_[0] : NULL; }
/external/chromium_org/net/tools/balsa/
H A Dsimple_buffer.cc76 bool SimpleBuffer::Empty() const { function in class:net::SimpleBuffer
/external/chromium_org/net/tools/flip_server/
H A Dring_buffer.cc25 bool RingBuffer::Empty() const { return ReadableBytes() == 0; } function in class:net::RingBuffer
/external/chromium_org/remoting/host/
H A Dclipboard_win.cc62 BOOL Empty() { function in class:__anon10398::ScopedClipboard
206 clipboard.Empty();
/external/chromium_org/sdch/open-vcdiff/src/
H A Dheaderparser.h54 bool Empty() const { return 0 == UnparsedSize(); } function in class:open_vcdiff::ParseableChunk
152 bool Empty() const { function in class:open_vcdiff::DeltaWindowSection
153 return parseable_chunk_->Empty();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8PersistentValueMap.h55 static bool Empty(Impl* impl) { return impl->isEmpty(); } function in class:blink::V8PersistentValueMapTraits
H A DDOMWrapperMap.h98 static bool Empty(Impl* impl) { return impl->isEmpty(); } function in class:blink::DOMWrapperMap::PersistentValueMapTraits
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddecoder_database.cc29 bool DecoderDatabase::Empty() const { return decoders_.empty(); } function in class:webrtc::DecoderDatabase
H A Ddtmf_buffer.h87 virtual bool Empty() const { return buffer_.empty(); } function in class:webrtc::DtmfBuffer
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vtables-single-inheritance.cpp141 struct Empty { }; struct
143 struct I : Empty {
/external/openfst/src/include/fst/
H A Dheap.h111 bool Empty() const { function in class:fst::Heap
/external/pdfium/core/include/fxcrt/
H A Dfx_xml.h19 void Empty(IFX_Allocator* pAllocator = NULL) function in class:CXML_AttrItem
21 m_QSpaceName.Empty(pAllocator);
22 m_AttrName.Empty(pAllocator);
23 m_Value.Empty(pAllocator);
51 Empty(NULL);
53 void Empty(IFX_Allocator* pAllocator = NULL) function in class:CXML_Content
55 m_Content.Empty(pAllocator);
83 void Empty();
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dheap.h103 bool Empty() const { function in class:fst::Heap
/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.cc57 if (!Empty())
69 bool ListWrapper::Empty() const function in class:webrtc::ListWrapper
158 if (!existing_previous_item && !Empty())
194 if (!existing_next_item && !Empty())
260 if (Empty())
276 if (Empty())
H A Dlist_stl.cc50 if (!Empty())
61 bool ListWrapper::Empty() const function in class:webrtc::ListWrapper
186 if (!existing_previous_item && !Empty())
197 if (!Empty())
216 if (!existing_next_item && !Empty())
226 if (!Empty())
/external/chromium_org/media/cast/net/rtp/
H A Dframer.cc235 bool Framer::Empty() const { return frames_.empty(); } function in class:media::cast::Framer
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DRegexps.py427 Empty = Seq() variable
428 Empty.__doc__ = \
430 Empty is an RE which matches the empty string.
432 Empty.str = "Empty"
504 result = Alt(re, Empty)

Completed in 8754 milliseconds

123456