HomeSort by relevance Sort by last modified time
    Searched defs:Full (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/sync/sessions/
tab_node_pool.cc 182 bool TabNodePool::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 49 // 1) Fully aligned: There is a full intersection between the rects, either
94 Full
  /external/llvm/include/llvm/Target/
TargetOptions.h 49 Full // Use one table per unique function type
  /external/llvm/unittests/IR/
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/net/tools/flip_server/
ring_buffer.cc 27 bool RingBuffer::Full() const { return ReadableBytes() == BufferSize(); }
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 380 enum { Full = 0, Partial = 1, Runtime = 2 };
389 Unrolling = Full;
456 if (Unrolling != Full && Count < 2) {
457 // Partial unrolling by 1 is a nop. For full unrolling, a factor
  /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...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 302 // non-overlapping case. We also need to avoid full overlap (i.e. two
444 SDValue Full = N.getOperand(0);
447 uint64_t Offset = (cast<GlobalAddressSDNode>(Full)->getOffset() -
    [all...]
SystemZISelLowering.cpp 187 // Lower them into full i32 operations.
643 assert(VA.getLocInfo() == CCValAssign::Full && "Unsupported getLocInfo");
659 case CCValAssign::Full:
    [all...]

Completed in 502 milliseconds