HomeSort by relevance Sort by last modified time
    Searched defs:Block (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/chromium_org/net/proxy/
multi_threaded_proxy_resolver_unittest.cc 114 // A mock synchronous ProxyResolver which can be set to block upon reaching
127 void Block() {
354 // Block the proxy resolver, so no request can complete.
355 mock->Block();
448 // Block the proxy resolver, so no request can complete.
449 mock->Block();
525 // Block the proxy resolver, so no request can complete.
526 mock->Block();
746 // Start a request that will block the first thread.
748 factory->resolvers()[0]->Block();
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkWriter32.h 30 * The caller can specify an initial block of storage, which the caller manages.
65 Block* block = fTail; local
66 if (NULL == block || block->available() < size) {
67 block = this->doReserve(size);
70 return block->alloc(size);
154 // if we could query how much is avail in the current block, we might
156 // in the current block
208 struct Block {
241 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
252 Block* block = this; local
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 29 // Is it a block pointer?
34 // Check if the block pointer type takes no arguments and
176 // Check if the second parameter is the proper block type.
177 const ParmVarDecl *Block = D->getParamDecl(1);
178 QualType Ty = Block->getType();
183 // sets it, and calls the block. Basically, an AST dump of:
185 // void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) {
188 // block();
195 DeclRefExpr *DR = M.makeDeclRefExpr(Block);
244 // Check if the second parameter is a block
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 150 llvm::BasicBlock *Block;
199 Handler.Block = CGF.createBasicBlock("catch");
213 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
230 CGF.EmitBlock(Handler.Block);
CGBlocks.h 10 // This is the internal state used for llvm translation for block literals.
100 block, ... */
101 BLOCK_FIELD_IS_BLOCK = 0x07, /* a block variable */
125 /// or block pointer that requires _Block_object_assign/dispose.
143 /// CGBlockInfo - Information to generate a block literal.
146 /// Name - The name of the block, kindof.
149 /// The field index of 'this' within the block, if there is one.
186 /// CanBeGlobal - True if the block can be global, i.e. it has
190 /// True if the block needs a custom copy or dispose function.
193 /// HasCXXObject - True if the block's custom copy/dispose function
    [all...]
  /external/eigen/Eigen/src/Core/
Block.h 16 /** \class Block
19 * \brief Expression of a fixed-size or dynamic-size block
21 * \param XprType the type of the expression in which we are taking a block
22 * \param BlockRows the number of rows of the block we are taking at compile time (optional)
23 * \param BlockCols the number of columns of the block we are taking at compile time (optional)
26 * This class represents an expression of either a fixed-size or dynamic-size block. It is the return
27 * type of DenseBase::block(Index,Index,Index,Index) and DenseBase::block<int,int>(Index,Index) and
30 * However, if you want to directly maniputate block expressions,
46 * \sa DenseBase::block(Index,Index,Index,Index), DenseBase::block(Index,Index), class VectorBloc
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 35 /// current block, in bits.
39 /// selected BLOCK ID.
42 /// CurAbbrevs - Abbrevs installed at in this block.
45 struct Block {
49 Block(unsigned PCS, unsigned SSW) : PrevCodeSize(PCS), StartSizeWord(SSW) {}
53 std::vector<Block> BlockScope;
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance");
193 // Block Manipulation
196 /// getBlockInfo - If there is block info for the specified ID, return it,
211 // Block header
    [all...]
BitstreamReader.h 52 /// block/record name information in the BlockInfo block. Only llvm-bcanalyzer
90 /// CollectBlockInfoNames - This is called by clients that want block/record
96 // Block Manipulation
100 /// block info block for this Bitstream. We only process it for the first
104 /// getBlockInfo - If there is block info for the specified ID, return it,
133 /// EndBlock - We've reached the end of the current block, (or the end of the
187 // block, in bits.
190 /// CurAbbrevs - Abbrevs installed at in this block
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 40 // (1) Work out the address that each block would have if no branches
44 // (2) Work out the address that each block would have if all branches
47 // (3) Walk through the block calculating the final address of each instruction
49 // this check uses the final address of the target block, as calculated
51 // address of the target block that was calculated in (2). Both checks
74 // Represents positional information about a basic block.
76 // The address that we currently assume the block has.
79 // The size of the block in bytes, excluding terminators.
83 // The minimum alignment of the block, as a log2 value.
87 // The number of terminators in this block. This value never changes
    [all...]
  /external/skia/include/core/
SkWriter32.h 30 * The caller can specify an initial block of storage, which the caller manages.
65 Block* block = fTail; local
66 if (NULL == block || block->available() < size) {
67 block = this->doReserve(size);
70 return block->alloc(size);
154 // if we could query how much is avail in the current block, we might
156 // in the current block
208 struct Block {
241 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size); local
252 Block* block = this; local
    [all...]
  /external/stlport/test/eh/
nc_alloc.cpp 118 if (s <= sizeof(Block)) {
131 Block* b = (Block*)p;
139 struct Block;
140 friend struct Block;
151 struct Block {
153 Block *next;
159 static Block* mBlocks;
160 static Block *mFree;
164 FastAllocator::Block *FastAllocator::mBlocks
    [all...]
  /external/valgrind/main/memcheck/tests/
unit_oset.c 387 Block;
393 Block* b = (Block*)p;
401 const Block* elem = (const Block*)velem;
413 Block* vs[NN];
414 Block v, prev;
415 Block *pv;
419 OSet* oset = VG_(OSetGen_Create)(offsetof(Block, first),
433 vs[i] = VG_(OSetGen_AllocNode)(oset, sizeof(Block));
    [all...]
  /external/chromium/net/proxy/
multi_threaded_proxy_resolver_unittest.cc 110 // A mock synchronous ProxyResolver which can be set to block upon reaching
123 void Block() {
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();
737 // Start a request that will block the first thread.
739 factory->resolvers()[0]->Block();
    [all...]
  /external/chromium_org/base/threading/
sequenced_worker_pool_unittest.cc 44 void Block() {
98 blocker->Block();
175 // Counter of the number of "block" workers that have started.
310 // Shutdown is asynchronous, so use ResetPool() to block until the pool is
314 // Verify that we didn't block until the task was due.
406 // Create two tasks with the same sequence token, one that will block on the
408 // is one worker thread free, the first task will start and then block, and
457 // Start tasks to take all the threads and block them.
511 // Start tasks to take all the threads and block them.
553 // Start tasks to take all the threads and block them
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTLList.h 21 the list creates the objects and they are deleted upon removal. This class block-allocates
33 struct Block;
37 Block* fBlock; // owning block.
58 Block* block = node->fBlock; local
60 if (0 == --block->fNodesInUse) {
62 block->fNodes[i].~Node();
64 sk_free(block);
219 struct Block {
232 Block* block = reinterpret_cast<Block*>(sk_malloc_flags(this->blockSize(), 0)); local
252 Block* block = node->fBlock; local
278 Block* block = freeNode->fBlock; local
299 Block* block = activeNode->fBlock; local
    [all...]
SkStream.cpp 492 struct SkDynamicMemoryWStream::Block {
493 Block* fNext;
532 Block* block = fHead; local
534 while (block != NULL) {
535 Block* next = block->fNext;
536 sk_free(block);
537 block = next;
562 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size) local
583 Block* block = fHead; local
626 Block* block = fHead; local
669 SkDynamicMemoryWStream::Block* block = fHead; local
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 208 enum ContextKind { StackFrame, Scope, Block };
274 // The parent block of the callsite.
275 const CFGBlock *Block;
285 Block(blk), Index(idx) {}
292 const CFGBlock *getCallSiteBlock() const { return Block; }
348 : LocationContext(Block, ctx, parent), BD(bd), ContextData(contextData) {}
362 ProfileCommon(ID, Block, ctx, parent, bd);
367 return Ctx->getKind() == Block;
  /external/skia/src/core/
SkTLList.h 21 the list creates the objects and they are deleted upon removal. This class block-allocates
33 struct Block;
37 Block* fBlock; // owning block.
58 Block* block = node->fBlock; local
60 if (0 == --block->fNodesInUse) {
62 block->fNodes[i].~Node();
64 sk_free(block);
219 struct Block {
232 Block* block = reinterpret_cast<Block*>(sk_malloc_flags(this->blockSize(), 0)); local
252 Block* block = node->fBlock; local
278 Block* block = freeNode->fBlock; local
299 Block* block = activeNode->fBlock; local
    [all...]
SkStream.cpp 492 struct SkDynamicMemoryWStream::Block {
493 Block* fNext;
532 Block* block = fHead; local
534 while (block != NULL) {
535 Block* next = block->fNext;
536 sk_free(block);
537 block = next;
562 Block* block = (Block*)sk_malloc_throw(sizeof(Block) + size) local
583 Block* block = fHead; local
626 Block* block = fHead; local
669 SkDynamicMemoryWStream::Block* block = fHead; local
    [all...]
  /external/valgrind/unittest/
thread_wrappers_pthread.h 368 void Block() {
  /external/chromium/net/base/
dnsrr_resolver.cc 382 // do so concurrently, then it'll block on the lock and we'll call PostTask
467 bool Block(base::StringPiece* out, unsigned len) {
629 if (!buf.Block(&rrdata, rrdata_len))
  /external/chromium_org/third_party/jinja2/
nodes.py 275 `else` block. If no else node exists it has to be an empty list.
307 class Block(Stmt):
308 """A node that represents a block."""
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 41 /// at the statement and block-level. The analyses themselves must implement
147 /// Inform the CoreEngine that a basic block was aborted because
149 void addAbortedBlock(const ExplodedNode *node, const CFGBlock *block) {
150 blocksAborted.push_back(std::make_pair(block, node));
173 void enqueue(ExplodedNodeSet &Set, const CFGBlock *Block, unsigned Idx);
180 void enqueueStmtNode(ExplodedNode *N, const CFGBlock *Block, unsigned Idx);
186 const CFGBlock *Block;
189 : Eng(E), Block(B), LC(N->getLocationContext()) { assert(B); }
192 const CFGBlock *getBlock() const { return Block; }
194 /// \brief Returns the number of times the current basic block has bee
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 330 // Block command ahead. We can't nest block commands, so pretend that this
360 // If there's a block command ahead, we will attach an empty paragraph to
376 BlockContentComment *Block = parseParagraphOrBlockCommand();
377 // Since we have checked for a block command, we should have parsed a
379 Paragraph = cast<ParagraphComment>(Block);
553 break; // Block content or EOF ahead, finish this parapgaph.
568 break; // Block command ahead, finish this parapgaph.
673 // Unterminated \\verbatim block
  /external/libvpx/libvpx/libmkv/
EbmlIDs.h 68 Block = 0xA1,

Completed in 682 milliseconds

12 3 4 5