Searched defs:empty (Results 101 - 125 of 312) sorted by relevance

1234567891011>>

/external/chromium/net/disk_cache/
H A Deviction.cc102 void Eviction::TrimCache(bool empty) { argument
106 if (!empty && !ShouldTrim())
110 return TrimCacheV2(empty);
118 int target_size = empty ? 0 : max_size_;
125 if (node->Data()->dirty != backend_->GetCurrentEntryId() || empty) {
129 if (!EvictEntry(node.get(), empty, Rankings::NO_USE) && !test_mode_)
132 if (!empty) {
146 if (empty) {
195 void Eviction::TrimDeletedList(bool empty) { argument
197 TrimDeleted(empty);
259 EvictEntry(CacheRankingsBlock* node, bool empty, Rankings::List list) argument
288 TrimCacheV2(bool empty) argument
464 TrimDeleted(bool empty) argument
[all...]
H A Dmem_backend_impl.cc293 void MemBackendImpl::TrimCache(bool empty) { argument
298 int target_size = empty ? 0 : LowWaterAdjust(max_size_);
302 if (!node->InUse() || empty) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmessagequeue.h202 bool empty() const { return msgq_.empty() && dmsgq_.empty() && !fPeekKeep_; } function in class:talk_base::MessageQueue
/external/clang/include/clang/AST/
H A DStmtIterator.h158 bool empty() const { return first == second; } function in struct:clang::StmtRange
159 operator bool() const { return !empty(); }
165 assert(!empty() && "incrementing on empty range");
171 assert(!empty() && "incrementing on empty range");
201 bool empty() const { return first == second; } function in struct:clang::ConstStmtRange
202 operator bool() const { return !empty(); }
208 assert(!empty() && "incrementing on empty rang
[all...]
H A DUnresolvedSet.h156 bool empty() const { return decls().empty(); } function in class:clang::UnresolvedSetImpl
/external/clang/include/clang/Analysis/
H A DCallGraph.h163 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.h166 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
/external/clang/lib/CodeGen/
H A DCGBlocks.h66 bool empty() const { return flags == 0; } function in class:clang::CodeGen::BlockFlags
107 bool empty() const { return flags == 0; } function in class:clang::CodeGen::BlockFieldFlags
/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:__anon4554
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.cpp209 StringPiece empty; local
210 if(!empty.empty() || empty.data()!=NULL || empty.length()!=0 || empty.size()!=0) {
215 if(!null.empty() || null.data()!=NULL || null.length()!=0 || null.size()!=0) {
221 if(abc.empty() || abc.data()!=abc_chars || abc.length()!=3 || abc.size()!=3) {
227 if(abcd.empty() || abcd.data()!=abcdefg_chars || abcd.length()!=4 || abcd.size()!=4) {
234 if(uvwxyz.empty() || uvwxy
345 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.h141 bool empty() const { return TheMapping.empty(); } function in class:llvm::EquivalenceClasses
H A DSmallPtrSet.h78 bool empty() const { return size() == 0; } function in class:llvm::SmallPtrSetImpl
87 // Fill the array with empty markers.
/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/
H A DBasicBlock.h195 inline bool empty() const { return InstList.empty(); } function in class:llvm::BasicBlock
/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

Completed in 577 milliseconds

1234567891011>>