/external/chromium_org/third_party/skia/src/animator/ |
SkDrawFull.h | 16 DECLARE_EMPTY_MEMBER_INFO(Full);
|
/external/skia/src/animator/ |
SkDrawFull.h | 16 DECLARE_EMPTY_MEMBER_INFO(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...] |
/external/chromium/net/tools/flip_server/ |
buffer_interface.h | 38 // Returns true if the buffer is full. 39 virtual bool Full() const = 0;
|
ring_buffer.h | 46 virtual bool Full() const;
|
simple_buffer.h | 42 virtual bool Full() const;
|
simple_buffer.cc | 77 bool SimpleBuffer::Full() const {
|
/external/chromium_org/chrome/browser/sync/glue/ |
tab_node_pool_unittest.cc | 74 EXPECT_TRUE(pool_.Full()); 80 EXPECT_FALSE(pool_.Full()); 106 EXPECT_TRUE(pool_.Full()); 124 EXPECT_TRUE(pool_.Full()); 131 EXPECT_TRUE(pool_.Full()); 136 EXPECT_FALSE(pool_.Full()); 144 EXPECT_TRUE(pool_.Full()); 149 EXPECT_TRUE(pool_.Full()); 154 EXPECT_TRUE(pool_.Full()); 161 EXPECT_FALSE(pool_.Full()); [all...] |
tab_node_pool.h | 106 // Return full status (no tab nodes are in use). 107 bool Full();
|
/external/chromium_org/net/tools/balsa/ |
buffer_interface.h | 37 // Returns true if the buffer is full. 38 virtual bool Full() const = 0;
|
simple_buffer.h | 40 virtual bool Full() const OVERRIDE;
|
simple_buffer.cc | 82 bool SimpleBuffer::Full() const {
|
/external/chromium_org/chrome/browser/sync/sessions2/ |
tab_node_pool2_unittest.cc | 84 EXPECT_TRUE(pool_.Full()); 92 EXPECT_FALSE(pool_.Full()); 93 EXPECT_FALSE(pool_.Full()); 122 EXPECT_TRUE(pool_.Full()); 140 EXPECT_TRUE(pool_.Full()); 152 EXPECT_FALSE(pool_.Full()); 161 EXPECT_TRUE(pool_.Full()); 168 EXPECT_TRUE(pool_.Full()); 178 EXPECT_FALSE(pool_.Full()); 185 EXPECT_TRUE(pool_.Full()); [all...] |
tab_node_pool2.h | 122 // Return full status (no tab nodes are in use). 123 bool Full();
|
/build/target/product/ |
vbox_x86.mk | 17 # This is a build configuration for a full-featured build of the 36 PRODUCT_MODEL := Full Android on x86 VirtualBox
|
/external/llvm/lib/Target/Hexagon/ |
HexagonCallingConvLower.cpp | 83 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this, 0, 0, false)) { 103 CCValAssign::Full)); 109 CCValAssign::Full)); 119 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this, -1, -1, false)){ 149 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this, 168 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this, -1, -1, 187 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this, -1, -1, false)) { 198 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this, -1, -1,
|
/external/llvm/lib/CodeGen/ |
CallingConvLower.cpp | 74 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { 92 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) 106 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) { 124 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { 143 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { 160 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this)) { 173 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this)) {
|
/external/chromium_org/net/tools/flip_server/ |
ring_buffer.h | 46 virtual bool Full() const OVERRIDE;
|
/external/chromium_org/tools/python/google/httpd_config/ |
httpd2_linux.conf | 129 # Header. The default is 'Full' which sends information about the OS-Type 131 # Set to one of: Full | OS | Minor | Minimal | Major | Prod 132 # where Full conveys the most information, and Prod the least. 134 ServerTokens Full
|
/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/chromium_org/third_party/sqlite/src/ext/fts2/ |
mkfts2amal.tcl | 29 ** Full Text Search extension 2 (fts2). By combining all the individual C
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
mkfts3amal.tcl | 29 ** Full Text Search extension 2 (fts3). By combining all the individual C
|
/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/content/browser/loader/ |
resource_buffer_unittest.cc | 118 TEST(ResourceBufferTest, Full) { 129 // Full. 132 // Still full, even if there is a small hole at the end.
|