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

12345

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/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/base/test/
H A Dtest_support_android.cc52 void Block() { function in class:__anon2520::Waitable
94 Waitable::GetInstance()->Block();
/external/chromium_org/base/threading/
H A Dsequenced_worker_pool_unittest.cc44 void Block() { function in class:base::__anon2551::ThreadBlocker
98 blocker->Block();
/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/chromium_org/components/policy/core/browser/
H A Durl_blacklist_manager.cc64 blacklist->Block(block.get());
194 void URLBlacklist::Block(const base::ListValue* filters) { function in class:policy::URLBlacklist
/external/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator.h102 struct Block { struct in class:gpu::FencedAllocator
112 bool operator() (const Block &left, const Block &right) {
117 typedef std::vector<Block> Container;
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/mojo/shell/
H A Dapp_child_process.cc64 void Block() { function in class:mojo::shell::__anon8832::Blocker
286 blocker.Block();
/external/chromium_org/net/proxy/
H A Dmulti_threaded_proxy_resolver_unittest.cc121 void Block() { function in class:net::__anon9355::BlockableProxyResolver
331 // Block the proxy resolver, so no request can complete.
332 mock->Block();
425 // Block the proxy resolver, so no request can complete.
426 mock->Block();
502 // Block the proxy resolver, so no request can complete.
503 mock->Block();
725 factory->resolvers()[0]->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/jinja2/
H A Dnodes.py311 class Block(Stmt): class in inherits:Stmt
/external/chromium_org/third_party/leveldatabase/src/table/
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) {
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&);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvparser.hpp68 class Block { class in namespace:mkvparser
69 Block(const Block&);
70 Block& operator=(const Block&);
76 Block(long long start, long long size, long long discard_padding);
77 ~Block();
129 virtual const Block* GetBlock() const = 0;
148 const Block* GetBlock() const;
151 Block m_bloc
[all...]
/external/chromium_org/third_party/skia/src/core/
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...]
H A DSkDeque.cpp12 struct SkDeque::Block { struct in class:SkDeque
13 Block* fNext;
14 Block* fPrev;
47 if (storageSize >= sizeof(Block) + elemSize) {
48 fFrontBlock = (Block*)storage;
58 Block* head = fFrontBlock;
59 Block* initialHead = (Block*)fInitialStorage;
62 Block* next = head->fNext;
78 Block* firs
[all...]
H A DSkStream.cpp479 struct SkDynamicMemoryWStream::Block { struct in class:SkDynamicMemoryWStream
480 Block* fNext;
519 Block* block = fHead;
522 Block* next = block->fNext;
549 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
570 Block* block = fHead;
591 Block* block = fHead;
613 Block* bloc
[all...]
H A DSkTLList.h33 struct Block;
37 Block* fBlock; // owning block.
58 Block* block = node->fBlock;
237 struct Block { struct in class:SkTLList
242 size_t blockSize() const { return sizeof(Block) + sizeof(Node) * (fAllocCnt-1); }
250 Block* block = reinterpret_cast<Block*>(sk_malloc_flags(this->blockSize(), 0));
270 Block* block = node->fBlock;
296 Block* block = freeNode->fBlock;
317 Block* bloc
[all...]
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);
/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/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor_Blitter.h420 // Returns the block index for the block containing pixel (x, y). Block
440 typedef uint32_t Block[BlockDim][BlockDim/4]; typedef in class:SkTextureCompressor::SkTCompressedAlphaBlitter
441 inline void updateBlockColumns(Block block, const int col,
510 Block block;
/external/chromium_org/tools/gn/
H A Dcommand_format.cc43 void Block(const ParseNode* file);
147 void Printer::Block(const ParseNode* root) { function in class:commands::__anon16438::Printer
220 Block(condition->if_true());
236 Block(condition->if_false());
249 Block(func_call->block());
359 pr.Block(parse_node);

Completed in 709 milliseconds

12345