HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK (Results 26 - 50 of 162) sorted by null

12 3 4 5 6 7

  /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...]
AssignTokenTypesWalker.g 133 * stringAlias = ^(BLOCK[] ^(ALT[] STRING_LITERAL[] EOA[]) EOB[])
135 stringAlias = (GrammarAST)adaptor.create( BLOCK, "BLOCK" );
145 * charAlias = ^(BLOCK[] ^(ALT[] CHAR_LITERAL[] EOA[]) EOB[])
147 charAlias = (GrammarAST)adaptor.create( BLOCK, "BLOCK" );
157 * stringAlias2 = ^(BLOCK[] ^(ALT[] STRING_LITERAL[] ACTION[] EOA[]) EOB[])
159 stringAlias2 = (GrammarAST)adaptor.create( BLOCK, "BLOCK" );
170 * charAlias = ^(BLOCK[] ^(ALT[] CHAR_LITERAL[] ACTION[] EOA[]) EOB[]
    [all...]
LeftRecursiveRuleWalker.g 143 : ^( BLOCK
154 block
155 : ^( BLOCK
189 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel ^( BLOCK ( ^( ALT op=token EOA {setTokenPrec($op.t, outerAlt);} ) )+ EOB ) recurse EOA )
252 | ^(SYNPRED block)
262 ebnf: block
263 | ^( OPTIONAL block )
264 | ^( CLOSURE block )
265 | ^( POSITIVE_CLOSURE block )
  /external/chromium_org/chrome/browser/external_protocol/
external_protocol_handler.cc 198 // If we are being carpet bombed, block the request.
200 return BLOCK;
206 return BLOCK;
221 return should_block ? BLOCK : DONT_BLOCK;
240 update_excluded_schemas->SetBoolean(scheme, (state == BLOCK));
258 if (block_state == BLOCK) {
291 // block for a significant amount of time, and it shouldn't hurt on Linux.
external_protocol_handler.h 23 BLOCK,
43 // Returns whether we should block a given scheme.
46 // Sets whether we should block a given scheme.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 517 tokens {BLOCK;}
518 a : lc='{' ID+ '}' -> ^(BLOCK[$lc] ID+) ;
533 tokens {BLOCK;}
534 a : lc='{' ID+ '}' -> ^(BLOCK[$lc,"block"] ID+) ;
541 result.should == '(block a b c)'
549 tokens {BLOCK;}
566 tokens {BLOCK;}
604 tokens {BLOCK;}
652 tokens {BLOCK;}
    [all...]
construction.rb 19 BLOCK;
113 : t='for' -> ^(BLOCK)
117 : t='for' -> ^(BLOCK[$t])
121 : t='for' -> ^(BLOCK[$t,"FOR"])
125 : t='for' -> BLOCK
129 : t='for' -> BLOCK[$t]
133 : t='for' -> BLOCK[$t,"FOR"]
145 : r+=statement (',' r+=statement)+ -> ^(BLOCK $r+)
157 : (r+=statement)* -> ^(BLOCK $r+)
161 : statement* -> ^(BLOCK statement?
    [all...]
  /external/libvpx/libvpx/test/
subtract_test.cc 19 #include "vp8/encoder/block.h"
23 typedef void (*subtract_b_fn_t)(BLOCK *be, BLOCKD *bd, int pitch);
38 BLOCK be;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h 31 #define BLOCK 5
132 - (void)block;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.h 43 #define BLOCK 9
SimpleCTP.h 31 #define BLOCK 9
95 - (void)block;
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_resource_throttle_browsertest.cc 59 new base::FundamentalValue(ManagedModeURLFilter::BLOCK)));
managed_mode_url_filter.h 28 // * A default setting (allow, block or warn).
31 // * User-specified manual overrides (allow or block) for either sites
44 BLOCK,
managed_mode_url_filter.cc 186 DCHECK_LE(behavior_value, BLOCK);
222 return url_it->second ? ALLOW : BLOCK;
228 return host_it->second ? ALLOW : BLOCK;
  /external/chromium_org/chrome/browser/ui/
external_protocol_dialog_delegate.cc 76 url.scheme(), ExternalProtocolHandler::BLOCK);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnFlowThread.cpp 96 firstSet->setStyle(RenderStyle::createAnonymousStyleWithDisplay(parentBlock->style(), BLOCK));
RenderMultiColumnBlock.cpp 51 child->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK));
57 // FIXME: Can overflow on fast/block/float/float-not-removed-from-next-sibling4.html, see https://bugs.webkit.org/show_bug.cgi?id=68744
143 m_flowThread->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK));
RenderTextControlMultiLine.cpp 85 textBlockStyle->setDisplay(BLOCK);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGBlock.cpp 50 // SVG text layout code expects us to be a block-level style element.
54 newStyle->setDisplay(BLOCK);
  /external/javassist/src/main/javassist/compiler/
TokenId.java 120 int BLOCK = 'B'; // block statement
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleAdjuster.cpp 93 case BLOCK:
104 return BLOCK;
127 return BLOCK;
133 return BLOCK;
173 // Sites also commonly use display:inline/block on <td>s and <table>s. In quirks mode we force
204 style->setDisplay(BLOCK);
219 style->setDisplay(BLOCK);
225 // Absolute/fixed positioned elements, floating elements and the document element need block-like outside display.
249 // FIXME: Since we don't support block-flow on flexible boxes yet, disallow setting
250 // of block-flow to anything other than TopToBottomWritingMode
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 42 x->e_mbd.block[i].bmi.as_mode = B_DC_PRED;
54 BLOCKD *b = &x->e_mbd.block[ib];
55 BLOCK *be = &x->block[ib];
95 BLOCK *b = &x->block[0];
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse4.asm 16 ; (BLOCK *b, | 0
43 mov rdi, arg(0) ; BLOCK *b
47 mov rdi, rcx ; BLOCK *b
50 ;mov rdi, rdi ; BLOCK *b
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 334 BLOCK;
346 -> ^(BLOCK stat*)
379 | ^(BLOCK stat*)

Completed in 752 milliseconds

12 3 4 5 6 7