/external/chromium_org/third_party/libevent/test/ |
regress_http.c | 217 int empty = evhttp_find_header(req->input_headers, "Empty") != NULL; local 238 /* allow sending of an empty reply */ 240 !empty ? evb : NULL); 473 /* make another request: request empty reply */ 479 evhttp_add_header(req->output_headers, "Empty", "itis");
|
/external/chromium_org/third_party/skia/include/core/ |
SkBitmap.h | 84 /** Return true iff the bitmap has empty dimensions. 86 bool empty() const { return 0 == fWidth || 0 == fHeight; } function in class:SkBitmap 89 dimensions of the bitmap are > 0 (see empty()). 441 be set to empty. If dx >= width or dy >= height, then 505 dimensions is empty, or if there is an unsupported config, false will be
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
low_level_alloc.cc | 318 bool empty = (arena->allocation_count == 0); local 320 if (empty) { 331 "empty arena has non-page-aligned block size"); 333 "empty arena has non-page-aligned block"); 345 return empty;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
low_level_alloc.cc | 318 bool empty = (arena->allocation_count == 0); local 320 if (empty) { 331 "empty arena has non-page-aligned block size"); 333 "empty arena has non-page-aligned block"); 345 return empty;
|
/external/chromium_org/ui/base/clipboard/ |
clipboard_unittest.cc | 229 // Regression test for crbug.com/56298 (pasting empty HTML crashes Linux). 231 // ScopedClipboardWriter doesn't let us write empty data to the clipboard. 233 // The 1 is so the compiler doesn't warn about allocating an empty array. 234 char* empty = new char[1]; local 235 clipboard().InsertMapping("text/html", empty, 0U); 552 ASSERT_FALSE(output.empty()); 588 ASSERT_FALSE(output2.empty()); 610 ASSERT_FALSE(output1.empty());
|
/external/chromium_org/ui/base/ime/ |
input_method_ibus_unittest.cc | 287 CompositionText empty; variable 288 return composition_text_ != empty; 322 base::NativeEvent empty; local 323 std::memset(&empty, 0, sizeof(empty)); 325 &empty, [all...] |
/external/clang/include/clang/Sema/ |
DelayedDiagnostic.h | 246 bool empty() const { function in class:clang::sema::DelayedDiagnosticPool 247 return (Diagnostics.empty() && (Parent == NULL || Parent->empty())); 257 if (pool.Diagnostics.empty()) return; 259 if (Diagnostics.empty()) { 270 bool pool_empty() const { return Diagnostics.empty(); }
|
/external/clang/lib/CodeGen/ |
CGBlocks.h | 78 bool empty() const { return flags == 0; } function in class:clang::CodeGen::BlockFlags 122 bool empty() const { return flags == 0; } function in class:clang::CodeGen::BlockFieldFlags
|
/external/icu4c/i18n/ |
ucoleitr.cpp | 65 UBool empty() const; 84 UBool RCEBuffer::empty() const function in class:RCEBuffer 138 UBool empty() const; 162 UBool PCEBuffer::empty() const function in class:PCEBuffer 543 while (elems->pce->pceBuffer.empty()) { 548 // **** do we need to reset rceb, or will it always be empty at this point **** 555 if (! rceb.empty()) { 566 while (! rceb.empty()) { 578 if (elems->pce->pceBuffer.empty()) {
|
/external/libcap-ng/libcap-ng-0.7/src/ |
cap-ng.c | 680 int empty = 0, full = 0; local 693 empty = 1; 704 empty = 1; 710 empty = 1; 721 empty = 1; 727 empty = 1; 735 if (empty == 1 && full == 0) 737 else if (empty == 0 && full == 1)
|
/external/llvm/include/llvm/ADT/ |
FoldingSet.h | 180 /// empty - Returns true if there are no nodes in the folding set. 181 bool empty() const { return NumNodes == 0; } function in class:llvm::FoldingSetImpl 631 /// empty - Returns true if there are no nodes in the folding set. 632 bool empty() const { return Set.empty(); } function in class:llvm::FoldingSetVector
|
SmallBitVector.h | 136 /// SmallBitVector default ctor - Creates an empty bitvector. 167 /// empty - Tests whether there are no bits in this bitvector. 168 bool empty() const { function in class:llvm::SmallBitVector 169 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
|
StringMap.h | 103 bool empty() const { return NumItems == 0; } function in class:llvm::StringMapImpl 254 assert(RHS.empty() && 255 "Copy ctor from non-empty stringmap not implemented yet!"); 259 assert(RHS.empty() && 260 "assignment from non-empty stringmap not implemented yet!"); 341 if (empty()) return;
|
ValueMap.h | 103 bool empty() const { return Map.empty(); } function in class:llvm::ValueMap
|
/external/llvm/include/llvm/Analysis/ |
LoopInfo.h | 76 /// Loop ctor - This creates an empty loop. 132 bool empty() const { return SubLoops.empty(); } function in class:llvm::LoopBase 470 bool empty() const { return TopLevelLoops.empty(); } function in class:llvm::LoopInfoBase 599 bool empty() const { return LI.empty(); } function in class:llvm::LoopInfo
|
/external/llvm/include/llvm/CodeGen/ |
MachineInstrBuilder.h | 446 /// Empty bundles aren't representable in a MachineBasicBlock. 447 bool empty() const { return Begin == End; } function in class:llvm::MIBundleBuilder 461 if (!empty())
|
MachineScheduler.h | 158 bool empty() const { return Queue.empty(); } function in class:llvm::ReadyQueue 211 /// will be empty.
|
/external/llvm/include/llvm/IR/ |
Attributes.h | 212 /// the empty attributes list. 467 bool empty() const { return Attrs.none(); } function in class:llvm::AttrBuilder 480 bool td_empty() const { return TargetDepAttrs.empty(); }
|
Function.h | 360 /// empty for external functions. 401 bool empty() const { return BasicBlocks.empty(); } function in class:llvm::Function
|
/external/llvm/tools/llvm-diff/ |
DifferenceEngine.cpp | 45 /// Checks whether the heap is empty. 46 bool empty() const { return Storage.empty(); } function in class:__anon22366::PriorityQueue 64 /// Remove the minimum value in the heap. Only valid on a non-empty heap. 66 assert(!empty()); 186 while (!Queue.empty()) { 506 assert(TentativeValues.empty()); 643 if (L->empty() && R->empty()) 645 else if (L->empty()) [all...] |
/external/skia/include/core/ |
SkBitmap.h | 84 /** Return true iff the bitmap has empty dimensions. 86 bool empty() const { return 0 == fWidth || 0 == fHeight; } function in class:SkBitmap 89 dimensions of the bitmap are > 0 (see empty()). 441 be set to empty. If dx >= width or dy >= height, then 505 dimensions is empty, or if there is an unsupported config, false will be
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
synchronize.h | 99 const String *empty = FindString(new String()); local 100 StateId start = FindState(Element(fst_->Start(), empty, empty)); 110 if ((w != Weight::Zero()) && (e.istring)->empty() && (e.ostring)->empty()) 145 if (!s->empty()) 157 if (l && !(s->empty())) r->push_back(l); 170 // Tests if the concatenation of s and l is empty 171 bool Empty(const String *s, Label l = 0) const { 172 if (s->empty()) [all...] |
/external/stlport/src/ |
num_get_float.cpp | 65 unsigned int empty:16; member in struct:ieee854_long_double::__anon26622
|
/external/stlport/stlport/stl/ |
_string_sum.h | 114 bool empty() const { return size() == 0; } function in class:__bstr_sum
|
/external/stlport/stlport/stl/pointers/ |
_deque.h | 156 bool empty() const { return _M_impl.empty(); } function in class:deque
|