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

123

/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/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 == 0)
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/core/
H A DSkChunkAlloc.cpp12 struct SkChunkAlloc::Block { struct in class:SkChunkAlloc
13 Block* fNext;
23 Block* block = this;
25 Block* next = block->fNext;
31 Block* tail() {
32 Block* block = this;
35 Block* next = block->fNext;
77 SkChunkAlloc::Block* SkChunkAlloc::newBlock(size_t bytes, AllocFailType ftype) {
78 Block* block = fPool;
89 block = (Block*)sk_malloc_flag
[all...]
H A DSkWriter32.cpp10 struct SkWriter32::Block { struct in class:SkWriter32
11 Block* fNext;
34 static Block* Create(size_t size) {
36 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size);
51 Block* block = fHead;
53 Block* next = block->fNext;
80 Block* block = fTail;
84 fHead = fTail = block = Block
[all...]
/external/skia/src/gpu/
H A DGrAllocPool.cpp15 struct GrAllocPool::Block { struct in class:GrAllocPool
16 Block* fNext;
21 static Block* Create(size_t size, Block* next) {
24 Block* block = (Block*)GrMalloc(sizeof(Block) + size);
26 block->fPtr = (char*)block + sizeof(Block);
70 Block* block = fBlock;
72 Block* nex
[all...]
/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/chromium/chrome/browser/ui/webui/
H A Dcollected_cookies_ui_delegate.cc205 web_ui_->RegisterMessageCallback("Block",
206 NewCallback(this, &CollectedCookiesUIDelegate::Block));
252 void CollectedCookiesUIDelegate::Block(const ListValue* args) { function in class:CollectedCookiesUIDelegate
/external/clang/lib/Analysis/
H A DReachableCode.cpp48 bool isDeadCodeRoot(const CFGBlock *Block);
50 const Stmt *findDeadCode(const CFGBlock *Block);
65 bool DeadCodeScan::isDeadCodeRoot(const clang::CFGBlock *Block) { argument
68 for (CFGBlock::const_pred_iterator I = Block->pred_begin(),
69 E = Block->pred_end(); I != E; ++I) {
96 const Stmt *DeadCodeScan::findDeadCode(const clang::CFGBlock *Block) { argument
97 for (CFGBlock::const_iterator I = Block->begin(), E = Block->end(); I!=E; ++I)
104 if (CFGTerminator T = Block->getTerminator()) {
126 const CFGBlock *Block local
[all...]
/external/stlport/test/eh/
H A Dnc_alloc.cpp118 if (s <= sizeof(Block)) {
131 Block* b = (Block*)p;
139 struct Block;
140 friend struct Block;
151 struct Block { struct in class:FastAllocator
153 Block *next;
159 static Block* mBlocks;
160 static Block *mFree;
164 FastAllocator::Block *FastAllocato
[all...]
/external/v8/test/cctest/
H A Dtest-alloc.cc194 class Block { class
196 Block(Address base_arg, int size_arg) function in class:Block
212 List<Block> blocks(1000);
227 blocks.Add(Block(base, static_cast<int>(allocated)));
/external/valgrind/main/memcheck/tests/
H A Dunit_oset.c343 Block; typedef in typeref:struct:__anon14126
349 Block* b = (Block*)p;
357 const Block* elem = (const Block*)velem;
369 Block* vs[NN];
370 Block v, prev;
371 Block *pv;
375 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first),
389 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Block));
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DDotZLib.cs24 None, Partial, Sync, Full, Finish, Block enumerator in enum:DotZLib.FlushTypes
/external/clang/lib/CodeGen/
H A DCGBlocks.h191 const BlockDecl *Block; member in class:clang::CodeGen::CGBlockInfo
216 const BlockDecl *getBlockDecl() const { return Block; }
219 assert(BlockExpression->getBlockDecl() == Block);
H A DCGCleanup.h149 llvm::BasicBlock *Block; member in struct:clang::CodeGen::EHCatchScope::Handler
180 void setCatchAllHandler(unsigned I, llvm::BasicBlock *Block) { argument
181 setHandler(I, /*catchall*/ 0, Block);
184 void setHandler(unsigned I, llvm::Value *Type, llvm::BasicBlock *Block) { argument
187 getHandlers()[I].Block = Block;
331 llvm::BasicBlock *Block) {
333 if (ExtInfo.Branches.insert(Block))
334 ExtInfo.BranchAfters.push_back(std::make_pair(Block, Index));
367 bool addBranchThrough(llvm::BasicBlock *Block) {
[all...]
H A DCGObjCRuntime.cpp145 llvm::BasicBlock *Block; member in struct:__anon59::CatchHandler
194 Handler.Block = CGF.createBasicBlock("catch");
208 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
225 CGF.EmitBlock(Handler.Block);
/external/chromium/net/proxy/
H A Dmulti_threaded_proxy_resolver_unittest.cc123 void Block() { function in class:net::__anon2989::BlockableProxyResolver
345 // Block the proxy resolver, so no request can complete.
346 mock->Block();
439 // Block the proxy resolver, so no request can complete.
440 mock->Block();
516 // Block the proxy resolver, so no request can complete.
517 mock->Block();
739 factory->resolvers()[0]->Block();
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp493 const CFGBlock *Block, unsigned Idx) {
494 assert(Block);
501 WList->enqueue(N, Block, Idx);
508 WList->enqueue(N, Block, Idx+1);
513 WList->enqueue(N, Block, Idx);
518 CFGStmt CS = cast<CFGStmt>((*Block)[Idx]);
524 WList->enqueue(N, Block, Idx+1);
533 WList->enqueue(Succ, Block, Idx+1);
559 const CFGBlock *Block, unsigned Idx) {
562 enqueueStmtNode(*I, Block, Id
492 enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx) argument
558 enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx) argument
[all...]
/external/libvpx/libmkv/
H A DEbmlIDs.h69 Block = 0xA1, enumerator in enum:mkv
/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h441 void insertIntoLoop(BlockT *Block);
447 void pushBlock(BlockT *Block) { argument
448 DFSStack.push_back(std::make_pair(Block, BlockTraits::child_begin(Block)));
475 /// Add a single Block to its ancestor loops in PostOrder. If the block is a
477 /// Block and Subloop vectors of the now complete subloop to achieve RPO.
479 void PopulateLoopsDFS<BlockT, LoopT>::insertIntoLoop(BlockT *Block) { argument
480 LoopT *Subloop = LI->getLoopFor(Block);
481 if (Subloop && Block == Subloop->getHeader()) {
499 Subloop->getBlocksVector().push_back(Block);
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h45 struct Block { struct in class:llvm::BitstreamWriter
49 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {} function in struct:llvm::BitstreamWriter::Block
53 std::vector<Block> BlockScope;
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
193 // Block Manipulation
211 // Block header:
228 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordIndex));
243 assert(!BlockScope.empty() && "Block scope imbalance!");
250 const Block &B = BlockScope.back();
252 // Block tai
[all...]
/external/chromium/net/base/
H A Ddnsrr_resolver.cc467 bool Block(base::StringPiece* out, unsigned len) { function in class:net::Buffer
629 if (!buf.Block(&rrdata, rrdata_len))
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h191 enum ContextKind { StackFrame, Scope, Block }; enumerator in enum:clang::LocationContext::ContextKind
254 const CFGBlock *Block; member in class:clang::StackFrameContext
264 Block(blk), Index(idx) {}
271 const CFGBlock *getCallSiteBlock() const { return Block; }
324 : LocationContext(Block, ctx, parent), BD(bd), ContextData(contextData) {}
338 ProfileCommon(ID, Block, ctx, parent, bd);
343 return Ctx->getKind() == Block;
/external/clang/include/clang/Sema/
H A DScopeInfo.h318 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) argument
319 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h169 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
176 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
182 const CFGBlock *Block; member in struct:clang::ento::NodeBuilderContext
185 : Eng(E), Block(B), Pred(N) { assert(B); assert(!N->isSink()); }
190 const CFGBlock *getBlock() const { return Block; }
197 Block->getBlockID());
/external/clang/lib/AST/
H A DCommentParser.cpp335 // Block command ahead. We can't nest block commands, so pretend that this
366 BlockContentComment *Block = parseParagraphOrBlockCommand(); local
369 ParagraphComment *Paragraph = cast<ParagraphComment>(Block);
541 break; // Block content or EOF ahead, finish this parapgaph.
555 break; // Block command ahead, finish this parapgaph.

Completed in 473 milliseconds

123