/external/chromium/net/tools/flip_server/ |
simple_buffer.cc | 77 bool SimpleBuffer::Full() const {
|
ring_buffer.cc | 46 bool RingBuffer::Full() const {
|
/external/chromium_org/chrome/browser/sync/sessions2/ |
tab_node_pool2.cc | 182 bool TabNodePool2::Full() { return nodeid_tabid_map_.empty(); }
|
/external/chromium_org/net/tools/balsa/ |
simple_buffer.cc | 82 bool SimpleBuffer::Full() const {
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
SpatialNavigation.h | 52 // 1) Fully aligned: There is a full intersection between the rects, either 97 Full
|
/external/llvm/unittests/Support/ |
ConstantRangeTest.cpp | 20 static ConstantRange Full; 27 ConstantRange ConstantRangeTest::Full(16); 34 EXPECT_TRUE(Full.isFullSet()); 35 EXPECT_FALSE(Full.isEmptySet()); 36 EXPECT_TRUE(Full.inverse().isEmptySet()); 37 EXPECT_FALSE(Full.isWrappedSet()); 38 EXPECT_TRUE(Full.contains(APInt(16, 0x0))); 39 EXPECT_TRUE(Full.contains(APInt(16, 0x9))); 40 EXPECT_TRUE(Full.contains(APInt(16, 0xa))); 41 EXPECT_TRUE(Full.contains(APInt(16, 0xaa9))) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
Queue.py | 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue'] 17 class Full(Exception): 100 def full(self): member in class:Queue 101 """Return True if the queue is full, False otherwise (not reliable!).""" 113 the Full exception if no free slot was available within that time. 115 is immediately available, else raise the Full exception ('timeout' 123 raise Full 134 raise Full 146 Otherwise raise the Full exception.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Queue.py | 11 __all__ = ['Empty', 'Full', 'Queue', 'PriorityQueue', 'LifoQueue'] 17 class Full(Exception): 100 def full(self): member in class:Queue 101 """Return True if the queue is full, False otherwise (not reliable!).""" 113 the Full exception if no free slot was available within that time. 115 is immediately available, else raise the Full exception ('timeout' 123 raise Full 134 raise Full 146 Otherwise raise the Full exception.
|
/external/chromium_org/chrome/browser/sync/glue/ |
tab_node_pool.cc | 201 bool TabNodePool::Full() { return nodeid_tabid_map_.empty(); }
|
/external/chromium_org/net/tools/flip_server/ |
ring_buffer.cc | 27 bool RingBuffer::Full() const { return ReadableBytes() == BufferSize(); }
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
queues.py | 45 from Queue import Empty, Full 102 raise Full 148 def full(self): member in class:Queue 312 raise Full
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
queues.py | 45 from Queue import Empty, Full 102 raise Full 148 def full(self): member in class:Queue 312 raise Full
|
/external/llvm/include/llvm/CodeGen/ |
CallingConvLower.h | 34 Full, // The value fills the full location.
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
debugallocation.cc | 169 bool Full() { 296 // then come the size2_ and magic2_, or a full page of mprotect-ed memory 581 RAW_CHECK(!free_queue_->Full(), "Free queue mustn't be full!"); 591 while (free_queue_size_ > max_free_queue_size || free_queue_->Full()) { 598 // The queue will not be full at this point, so it is ok to [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
debugallocation.cc | 171 bool Full() { 298 // then come the size2_ and magic2_, or a full page of mprotect-ed memory 583 RAW_CHECK(!free_queue_->Full(), "Free queue mustn't be full!"); 593 while (free_queue_size_ > max_free_queue_size || free_queue_->Full()) { 600 // The queue will not be full at this point, so it is ok to [all...] |