HomeSort by relevance Sort by last modified time
    Searched refs:block (Results 701 - 725 of 2246) sorted by null

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlTreePage.java 64 UiTreeBlock block = new UiTreeBlock(mEditor, rootNode, local
69 block.createContent(managedForm);
  /dalvik/dx/src/com/android/dx/ssa/
Dominators.java 53 /** indexed by basic block index */
94 private BitSet getSuccs(SsaBasicBlock block) {
96 return block.getPredecessors();
98 return block.getSuccessors();
102 private BitSet getPreds(SsaBasicBlock block) {
104 return block.getSuccessors();
106 return block.getPredecessors();
113 * @param in Basic block whose DFS info we are path compressing.
252 * from the entry block or the exit block). Records the traversal orde
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 42 BLOCK;
196 block
201 -> ^( BLOCK[$lp,"BLOCK"] optionsSpec? (alternative rewrite?)+ EOB[$rp,"EOB"] )
208 // it's really BLOCK[firstToken,"BLOCK"]; set line/col to previous ( or : token.
209 CommonTree blkRoot = (CommonTree)adaptor.create(BLOCK,input.LT(-1),"BLOCK");
243 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id atom) EOA["EOA"]) EOB["EOB"])
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3.g 41 BLOCK;
191 block
196 -> ^( BLOCK[$lp,"BLOCK"] optionsSpec? altpair+ EOB[$rp,"EOB"] )
205 // it's really BLOCK[firstToken,"BLOCK"]; set line/col to previous ( or : token.
206 CommonTree blkRoot = (CommonTree)adaptor.create(BLOCK,input.LT(-1),"BLOCK");
235 ( ebnfSuffix -> ^( ebnfSuffix ^(BLOCK["BLOCK"] ^(ALT["ALT"] ^($labelOp id atom) EOA["EOA"]) EOB["EOB"])
    [all...]
DefineGrammarItemsWalker.g 60 CommonTree block = (CommonTree)t.getFirstChildWithType(BLOCK);
62 for (int i = 0; i < block.getChildCount(); i++) {
63 if (block.getChild(i).getType() == ALT)
252 b=block
256 // copy rule options into the block AST, which is where
319 block
327 : ^( BLOCK
435 | ^( SYNPRED block )
463 | block
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AssignTokenTypesBehavior.java 118 GrammarAST block)
140 if ( block.hasSameTreeStructure(charAlias) ||
141 block.hasSameTreeStructure(stringAlias) ||
142 block.hasSameTreeStructure(charAlias2) ||
143 block.hasSameTreeStructure(stringAlias2) )
154 alias(t, (GrammarAST)block.getChild(0).getChild(0));
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 179 @block.predecision() ::= "<enterSubRule()><enterDecision()>"
181 @block.postdecision() ::= "<exitDecision()>"
183 @block.postbranch() ::= "<exitSubRule()>"
  /external/chromium_org/chrome/browser/resources/help/
help.css 61 display: inline-block;
91 display: inline-block;
143 display: block;
  /external/chromium_org/chrome/browser/resources/ntp4/
suggestions_page.css 49 display: block;
71 display: block;
80 display: block;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/app/
main.js 23 document.getElementById('input-text').style.display = 'block';
24 document.getElementById('send-message-button').style.display = 'block';
26 document.getElementById('connect-button').style.display = 'block';
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
resourceView.css 41 display: block;
93 display: inline-block;
100 display: inline-block;
spectrum.css 6 display: inline-block;
18 display: inline-block;
61 display: inline-block;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_type.c 409 LLVMBasicBlockRef block; local
411 block = LLVMGetFirstBasicBlock(function);
412 while (block) {
414 instr = LLVMGetFirstInstruction(block);
420 block = LLVMGetNextBasicBlock(block);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
Dominators.java 53 /** indexed by basic block index */
94 private BitSet getSuccs(SsaBasicBlock block) {
96 return block.getPredecessors();
98 return block.getSuccessors();
102 private BitSet getPreds(SsaBasicBlock block) {
104 return block.getSuccessors();
106 return block.getPredecessors();
113 * @param in Basic block whose DFS info we are path compressing.
252 * from the entry block or the exit block). Records the traversal orde
    [all...]
  /external/e2fsprogs/lib/ext2fs/
alloc.c 29 * Check for uninit block bitmaps and deal with them appropriately
96 * Right now, just search forward from the parent directory's block
184 * This function zeros out the allocated block, and updates all of the
191 blk_t block; local
208 block = (blk_t) new;
216 retval = ext2fs_new_block(fs, goal, 0, &block);
221 retval = io_channel_write_blk(fs->io, block, 1, block_buf);
225 ext2fs_block_alloc_stats(fs, block, +1);
226 *ret = block;
  /external/eigen/test/
umeyama.cpp 108 cR_t.block(0,0,dim,dim) = c*R;
109 cR_t.block(0,dim,dim,1) = t;
116 MatrixX cR_t_umeyama = umeyama(src.block(0,0,dim,num_elements), dst.block(0,0,dim,num_elements));
140 cR_t.block(0,0,dim,dim) = c*R;
141 cR_t.block(0,dim,dim,1) = t;
148 Block<MatrixX, Dimension, Dynamic> src_block(src,0,0,dim,num_elements);
149 Block<MatrixX, Dimension, Dynamic> dst_block(dst,0,0,dim,num_elements);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.c 409 LLVMBasicBlockRef block; local
411 block = LLVMGetFirstBasicBlock(function);
412 while (block) {
414 instr = LLVMGetFirstInstruction(block);
420 block = LLVMGetNextBasicBlock(block);
  /ndk/sources/host-tools/make-3.81/
alloca.c 268 long sstcpt:32; /* Pointer to task common address block. */
306 long extends; /* Number of block extensions. */
307 long stko_mallocs; /* Block allocations by $STKOFEN. */
328 long this_address; /* Address of this block. */
329 long this_size; /* Size of this block (does not include
333 long link; /* Address of trailer block of previous
359 long *block, size; local
365 $LM00 common block, but I know that this works. */
385 block = (long *) trailer->this_address;
387 if (block == 0 || size == 0
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 256 long sstcpt:32; /* Pointer to task common address block. */
294 long extends; /* Number of block extensions. */
295 long stko_mallocs; /* Block allocations by $STKOFEN. */
316 long this_address; /* Address of this block. */
317 long this_size; /* Size of this block (does not include
321 long link; /* Address of trailer block of previous
347 long *block, size; local
353 $LM00 common block, but I know that this works. */
373 block = (long *) trailer->this_address;
375 if (block == 0 || size == 0
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.cc 564 // Initialize the live_in sets for each block to NULL.
571 BitVector* LAllocator::ComputeLiveOut(HBasicBlock* block) {
572 // Compute live out for the given block, except not including backward
577 for (HSuccessorIterator it(block->end()); !it.Done(); it.Advance()) {
585 // out from this block.
586 int index = successor->PredecessorIndexOf(block);
600 void LAllocator::AddInitialIntervals(HBasicBlock* block,
602 // Add an interval that includes the entire block to the live range for
605 block->first_instruction_index());
607 block->last_instruction_index()).NextInstruction()
1117 HBasicBlock* block = blocks->at(i); local
1130 HBasicBlock* block = blocks->at(block_id); local
1263 HBasicBlock* block = blocks->at(block_id); local
1286 HBasicBlock* block = blocks->at(block_id); local
1946 HBasicBlock* block = GetBlock(pos.InstructionStart()); local
2085 HBasicBlock* block = end_block; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-strings.cc 268 inline Handle<String> block(int offset);
269 inline Handle<String> block(uint32_t offset);
298 Handle<String> ConsStringGenerationData::block(uint32_t offset) { function in class:ConsStringGenerationData
303 Handle<String> ConsStringGenerationData::block(int offset) { function in class:ConsStringGenerationData
426 left = data->block(data->rng_.next());
435 right = data->block(data->rng_.next());
472 Handle<String> block = data->block(i); local
473 Handle<String> next = factory->NewConsString(answer, block);
475 data->stats_.chars_ += block->length()
490 Handle<String> block = data->block(i); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_jumps.cpp 140 * If the block ends with a jump, must be the strength of the jump.
143 * If the block doesn't end with a jump, it can be different than strength_none if all paths before it lead to some jump
250 * ANALYSIS: this->block.min_strength,
251 * this->block.may_clear_execute_flag, and
255 * DEAD_CODE_ELIMINATION: If this->block.min_strength is not
273 struct block_record block; member in struct:ir_lower_jumps_visitor
372 * If the block ends in a conditional or unconditional break, lower
375 void lower_final_breaks(exec_list *block)
377 ir_instruction *ir = (ir_instruction *) block->get_tail();
396 /* Set this->block.min_strength based on this instruction. Thi
    [all...]
  /external/e2fsprogs/e2fsck/
pass3.c 146 char * block; local
174 * First, find a free block
188 * Now let's create the actual data block for the inode
191 &block);
199 pctx.errcode = ext2fs_write_dir_block(fs, blk, block);
206 ext2fs_free_mem(&block);
361 char * block; local
404 * Read the inode and block bitmaps in; we'll be messing with
410 * First, find a free block
436 * Now let's create the actual data block for the inod
696 char *block; local
    [all...]
  /external/jpeg/
jdphuff.c 269 * The i'th block of the MCU is stored into the block pointed to by
291 JBLOCKROW block; local
313 /* Outer loop handles each block in the MCU */
316 block = MCU_data[blkn];
321 /* Decode a single block's worth of coefficients */
335 (*block)[0] = (JCOEF) (s << Al);
363 JBLOCKROW block; local
384 /* There is always only one block per MCU */
390 block = MCU_data[0]
446 JBLOCKROW block; local
498 JBLOCKROW block; local
    [all...]
  /external/mesa3d/src/glsl/
lower_jumps.cpp 140 * If the block ends with a jump, must be the strength of the jump.
143 * If the block doesn't end with a jump, it can be different than strength_none if all paths before it lead to some jump
250 * ANALYSIS: this->block.min_strength,
251 * this->block.may_clear_execute_flag, and
255 * DEAD_CODE_ELIMINATION: If this->block.min_strength is not
273 struct block_record block; member in struct:ir_lower_jumps_visitor
372 * If the block ends in a conditional or unconditional break, lower
375 void lower_final_breaks(exec_list *block)
377 ir_instruction *ir = (ir_instruction *) block->get_tail();
396 /* Set this->block.min_strength based on this instruction. Thi
    [all...]

Completed in 1049 milliseconds

<<21222324252627282930>>