Searched defs:Block (Results 1 - 25 of 116) sorted by relevance

12345

/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.h17 class Block { class in namespace:leveldb
20 explicit Block(const BlockContents& contents);
22 ~Block();
33 bool owned_; // Block owns data_[]
36 Block(const Block&);
37 void operator=(const Block&);
H A Dblock.cc18 inline uint32_t Block::NumRestarts() const {
23 Block::Block(const BlockContents& contents) function in class:leveldb::Block
40 Block::~Block() {
76 class Block::Iter : public Iterator {
256 Iterator* Block::NewIterator(const Comparator* cmp) {
/external/chromium_org/chrome/browser/android/banners/
H A Dapp_banner_settings_helper.cc79 void AppBannerSettingsHelper::Block(content::WebContents* web_contents, function in class:AppBannerSettingsHelper
/external/llvm/tools/llvm-readobj/
H A DStreamWriter.cpp31 ArrayRef<uint8_t> Data, bool Block) {
33 Block = true;
35 if (Block) {
30 printBinaryImpl(StringRef Label, StringRef Str, ArrayRef<uint8_t> Data, bool Block) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DBlock.java20 public class Block class
26 public Block(CodeEmitter e) { method in class:Block
/external/valgrind/main/none/tests/amd64/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon33102
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign(32, sizeof(Block)); \
H A Davx-1.c16 typedef struct { YMM a1; YMM a2; YMM a3; YMM a4; ULong u64; } Block; typedef in typeref:struct:__anon33098
28 void showBlock ( char* msg, Block* block )
45 void randBlock ( Block* b )
49 for (i = 0; i < sizeof(Block); i++)
65 Block* b = memalign(32, sizeof(Block)); \
/external/valgrind/main/none/tests/x86/
H A Dmovbe.c13 typedef struct { UChar cs[40]; } Block; typedef in typeref:struct:__anon33250
15 void showBlock ( char* msg, Block* b )
31 void randBlock ( Block* b )
35 for (i = 0; i < sizeof(Block); i++)
46 Block* b = memalign(32, sizeof(Block)); \
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.cpp12 class CallbackStack::Block { class in class:blink::CallbackStack
14 explicit Block(Block* next) function in class:blink::CallbackStack::Block
22 ~Block()
34 Block* next() const { return m_next; }
35 void setNext(Block* next) { m_next = next; }
112 Block* m_next;
115 CallbackStack::CallbackStack() : m_first(new Block(0)), m_last(m_first)
129 Block* next;
130 for (Block* curren
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStreamBuffer.h41 typedef Vector<T> Block; typedef in class:WTF::StreamBuffer
63 m_buffer.append(adoptPtr(new Block));
110 Deque<OwnPtr<Block> > m_buffer;
/external/chromium_org/third_party/skia/src/core/
H A DSkTObjectPool.h86 struct Block { struct in class:SkTObjectPool
88 SK_DECLARE_INTERNAL_SLIST_INTERFACE(Block);
90 SkTInternalSList<Block> fBlocks;
100 Block* block = SkNEW(Block);
H A DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
21 Block* fNext;
30 static void FreeChain(Block* block) {
32 Block* next = block->fNext;
64 Block::FreeChain(fBlock);
72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size,
99 Block* bloc
[all...]
/external/lldb/include/lldb/Symbol/
H A DBlock.h1 //===-- Block.h -------------------------------------------------*- C++ -*-===//
24 /// @class Block Block.h "lldb/Symbol/Block.h"
28 /// Block objects. The BlockList object contains a section offset
29 /// address range, and Block objects contain one or more ranges
41 class Block : class in namespace:lldb_private
73 Block (lldb::user_id_t uid);
78 virtual ~Block ();
124 virtual Block *
[all...]
/external/skia/src/core/
H A DSkTObjectPool.h86 struct Block { struct in class:SkTObjectPool
88 SK_DECLARE_INTERNAL_SLIST_INTERFACE(Block);
90 SkTInternalSList<Block> fBlocks;
100 Block* block = SkNEW(Block);
H A DSkChunkAlloc.cpp20 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
21 Block* fNext;
30 static void FreeChain(Block* block) {
32 Block* next = block->fNext;
64 Block::FreeChain(fBlock);
72 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = (Block*)sk_malloc_flags(sizeof(Block) + size,
99 Block* bloc
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DSerializedGrammar.java49 Block block;
50 public Rule(String name, Block block) {
59 class Block { class in class:SerializedGrammar
61 public Block(List[] alts) { method in class:SerializedGrammar.Block
127 Block b = readBlock(in);
133 protected Block readBlock(DataInputStream in) throws IOException {
142 return new Block(alts);
172 Block b = readBlock(in);
/external/ceres-solver/internal/ceres/
H A Dblock_structure.h31 // Block structure objects are used to carry information about the
50 struct Block { struct in namespace:ceres::internal
51 Block() : size(-1), position(-1) {} function in struct:ceres::internal::Block
52 Block(int size_, int position_) : size(size_), position(position_) {} function in struct:ceres::internal::Block
73 Block block;
81 vector<Block> cols;
86 vector<Block> rows;
/external/chromium_org/third_party/skia/src/gpu/
H A DGrAllocPool.cpp14 struct GrAllocPool::Block { struct in class:GrAllocPool
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
25 block->fPtr = (char*)block + sizeof(Block);
69 Block* block = fBlock;
71 Block* nex
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DPostOrderCFGView.h50 bool insert(const CFGBlock *Block) { argument
52 // make sure that Block is non-null. Moreover, the CFGBlock iterator will
55 if (!Block)
57 if (VisitedBlockIDs.test(Block->getBlockID()))
59 VisitedBlockIDs.set(Block->getBlockID());
65 /// loop. Block must not be null.
66 bool alreadySet(const CFGBlock *Block) { argument
67 return VisitedBlockIDs.test(Block->getBlockID());
/external/skia/src/gpu/
H A DGrAllocPool.cpp14 struct GrAllocPool::Block { struct in class:GrAllocPool
15 Block* fNext;
20 static Block* Create(size_t size, Block* next) {
23 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
25 block->fPtr = (char*)block + sizeof(Block);
69 Block* block = fBlock;
71 Block* nex
[all...]
/external/chromium_org/base/test/
H A Dtest_support_android.cc52 void Block() { function in class:__anon2520::Waitable
94 Waitable::GetInstance()->Block();
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer.h90 struct Block { struct in class:gpu::RingBuffer
91 Block(Offset _offset, unsigned int _size, State _state) function in struct:gpu::RingBuffer::Block
103 typedef std::deque<Block> Container;
/external/chromium_org/v8/test/cctest/
H A Dtest-alloc.cc187 class Block { class
189 Block(Address base_arg, int size_arg) function in class:Block
204 List< ::Block> blocks(1000);
221 blocks.Add(::Block(base, static_cast<int>(allocated)));
/external/llvm/lib/CodeGen/
H A DBranchFolding.h35 MachineBasicBlock *Block; member in class:llvm::BranchFolder::MergePotentialsElt
38 : Hash(h), Block(b) {}
41 MachineBasicBlock *getBlock() const { return Block; }
44 Block = MBB;
/external/llvm/lib/IR/
H A DGCOV.cpp133 errs() << "Block tag not found.\n";
139 if (!Buff.readInt(Dummy)) return false; // Block flags;
180 GCOVBlock &Block = *Blocks[BlockNo]; local
201 Block.addLine(Line);
270 GCOVBlock &Block = *Blocks[BlockNo]; local
271 for (size_t EdgeNo = 0, End = Block.getNumDstEdges(); EdgeNo < End;
279 Block.addCount(EdgeNo, ArcCount);
282 Block.sortDstEdges();
302 for (const auto &Block : Blocks)
303 Block
[all...]

Completed in 5841 milliseconds

12345