Searched defs:empty (Results 276 - 300 of 582) sorted by relevance

<<11121314151617181920>>

/external/clang/include/clang/AST/
H A DStmtIterator.h150 bool empty() const { return first == second; } function in struct:clang::StmtRange
151 LLVM_EXPLICIT operator bool() const { return !empty(); }
157 assert(!empty() && "incrementing on empty range");
163 assert(!empty() && "incrementing on empty range");
193 bool empty() const { return first == second; } function in struct:clang::ConstStmtRange
194 LLVM_EXPLICIT operator bool() const { return !empty(); }
200 assert(!empty() && "incrementing on empty rang
[all...]
H A DUnresolvedSet.h159 bool empty() const { return decls().empty(); } function in class:clang::UnresolvedSetImpl
/external/clang/include/clang/Analysis/
H A DCallGraph.h156 inline bool empty() const {return CalledFunctions.empty(); } function in class:clang::CallGraphNode
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h56 // Default ctor - Initialize to empty.
95 bool empty() const { return Begin == End; } function in class:clang::BumpVector
139 /// data - Return a pointer to the vector's buffer, even if empty().
144 /// data - Return a pointer to the vector's buffer, even if empty().
/external/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h167 unsigned empty() const { return size() == 0; } function in class:clang::RopePieceBTree
/external/clang/include/clang/Sema/
H A DDesignator.h191 bool empty() const { return Designators.empty(); } function in class:clang::Designation
H A DTemplateDeduction.h268 bool empty() const { return Candidates.empty(); } function in class:clang::TemplateSpecCandidateSet
/external/clang/test/CodeGenCXX/
H A Dvalue-init.cpp113 Test empty[3] = {}; local
/external/clang/test/Sema/
H A Dinit.c98 typedef struct { } empty; typedef in typeref:struct:__anon16313
101 empty e;
/external/clang/test/SemaCXX/
H A Dcxx0x-deleted-default-ctor.cpp123 namespace empty { namespace
H A Ddcl_init_aggr.cpp70 Empty empty; member in struct:NonEmpty
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionRetainAllTester.java64 private Target empty; field in class:CollectionRetainAllTester
76 empty = new Target(emptyCollection(), "empty");
104 // retainAll(empty)
109 expectReturnsFalse(empty);
116 expectReturnsFalseOrThrows(empty);
123 expectReturnsTrue(empty);
131 expectThrows(empty);
288 * collection is empty, but we'd still like to test retainAll(null) when we
289 * can. We split the test into empty an
[all...]
/external/icu4c/samples/ugrep/
H A Dugrep.cpp119 UnicodeString empty; local
120 RegexMatcher *matcher = rePat->matcher(empty, status);
/external/icu4c/test/intltest/
H A Dstrtest.cpp177 StringPiece empty; local
178 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) {
183 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) {
189 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) {
195 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) {
202 if(uvwxyz.empty() || uvwxy
313 StringPiece empty; local
[all...]
/external/libxml2/include/libxml/
H A DHTMLparser.h48 char empty; /* Is this an empty element ? */ member in struct:_htmlElemDesc
/external/llvm/include/llvm/ADT/
H A DBitVector.h73 /// BitVector default ctor - Creates an empty bitvector.
112 /// empty - Tests whether there are no bits in this bitvector.
113 bool empty() const { return Size == 0; } function in class:llvm::BitVector
H A DDenseSet.h33 bool empty() const { return TheMap.empty(); } function in class:llvm::DenseSet
H A DEquivalenceClasses.h143 bool empty() const { return TheMapping.empty(); } function in class:llvm::EquivalenceClasses
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h217 inline bool empty() const { return CalledFunctions.empty(); } function in class:llvm::CallGraphNode
244 while (!CalledFunctions.empty()) {
253 assert(CalledFunctions.empty() &&
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h56 /// empty - Return true if there is any lexical scope information available.
57 bool empty() { return CurrentFnLexicalScope == NULL; } function in class:llvm::LexicalScopes
H A DLiveIntervalUnion.h73 bool empty() const { return Segments.empty(); } function in class:llvm::LiveIntervalUnion
H A DLiveRangeEdit.h104 /// empty initially, any existing registers are ignored.
134 bool empty() const { return size() == 0; } function in class:llvm::LiveRangeEdit
H A DScheduleDFS.h128 bool empty() const { return DFSNodeData.empty(); } function in class:llvm::SchedDFSResult
173 if (empty())
/external/llvm/include/llvm/IR/
H A DBasicBlock.h204 inline bool empty() const { return InstList.empty(); } function in class:llvm::BasicBlock
/external/marisa-trie/lib/marisa/
H A Dtrie-inline.h55 MARISA_THROW_IF(empty(), MARISA_STATE_ERROR);
63 MARISA_THROW_IF(empty(), MARISA_STATE_ERROR);
130 inline bool Trie::empty() const { function in class:marisa::Trie
131 return louds_.empty();
322 return (link_flags_.empty()) ? false : link_flags_[node];
338 return !link_flags_.empty();
346 return !tail_.empty();

Completed in 5468 milliseconds

<<11121314151617181920>>