HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK (Results 176 - 200 of 225) sorted by null

1 2 3 4 5 6 78 9

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Grammar.java 411 * ( grammar t ( rule a ( BLOCK ( ALT A ) ( ALT B ) ) <end-of-rule> ) )
474 * This is the a set of BLOCK type AST nodes.
492 * This is the a set of BLOCK type AST nodes.
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.java 13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
33 public static final int BLOCK=9;
150 // SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );
170 RewriteRuleSubtreeStream stream_block=new RewriteRuleSubtreeStream(adaptor,"rule block");
172 // SimpleC.g:21:5: ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) )
233 // SimpleC.g:23:9: functionHeader block
242 block6=block();
250 // elements: block, functionHeade
750 public final SimpleCParser.block_return block() throws RecognitionException { method in class:SimpleCParser
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCParser.java 13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
33 public static final int BLOCK=9;
150 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );
170 RewriteRuleSubtreeStream stream_block=new RewriteRuleSubtreeStream(adaptor,"rule block");
172 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:21:5: ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) )
233 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:23:9: functionHeader block
242 block6=block();
250 // elements: functionHeader, block
750 public final SimpleCParser.block_return block() throws RecognitionException { method in class:SimpleCParser
    [all...]
SimpleCParser.m 128 return @"20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) );";
803 @"VAR_DEF", @"ARG_DEF", @"FUNC_HDR", @"FUNC_DECL", @"FUNC_DEF", @"BLOCK",
    [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 302 if (body.getOperator() == BLOCK)
344 else if (op == DECL || op == BLOCK) {
647 throw new CompileError("bad type expr for synchronized block");
693 "sorry, cannot break/continue in synchronized block");
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 277 token.metadata.context.type == Context.BLOCK):
281 # This check is for object literal end block tokens, but there is no need
283 # block is undoubtedly a parse error.
315 'No semicolon is required to end a code block',
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.cpp 92 // Force inline and table display styles to be inline-block (except for table- which is block)
100 style->setDisplay(BLOCK);
    [all...]
RenderInline.cpp 144 // FIXME: Is this still needed. Was needed for run-ins, since run-in is considered a block display type.
162 static void updateStyleOfAnonymousBlockContinuations(RenderObject* block, const RenderStyle* newStyle, const RenderStyle* oldStyle)
164 for (;block && block->isAnonymousBlock(); block = block->nextSibling()) {
165 if (!toRenderBlock(block)->isAnonymousBlockContinuation())
170 if (!block->style()->isOutlineEquivalent(newStyle)) {
171 newBlockStyle = RenderStyle::clone(block->style());
175 if (block->style()->position() != newStyle->position())
216 RenderObject* block = containingBlock()->nextSibling(); local
465 RenderBlock* block = containingBlock(); local
1228 RenderBox* block = containingBlock(); local
    [all...]
RenderObject.h 212 // function follows the containing block chain.
275 // Obtains the nearest enclosing block (including this block) that contributes a first-line style to our inline
521 // This function is kept in sync with anonymous block creation conditions in
523 // RenderBlock having a BLOCK or BOX display. Other classes such as RenderTextFragment
525 return isAnonymous() && (style()->display() == BLOCK || style()->display() == BOX) && style()->styleType() == NOPSEUDO && isRenderBlock() && !isListMarker() && !isRenderFlowThread()
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 317 token.metadata.context.type == Context.BLOCK):
321 # This check is for object literal end block tokens, but there is no need
323 # block is undoubtedly a parse error.
364 'No semicolon is required to end a code block',
    [all...]
  /external/chromium_org/third_party/libxml/src/
HTMLparser.c 623 #define BLOCK HEADING, LIST, "pre", "p", "dl", "div", "center", "noscript", "noframes", "blockquote", "form", "isindex", "hr", "table", "fieldset", "address"
635 #define FLOW BLOCK,INLINE
726 static const char* const map_contents[] = { BLOCK, "area", NULL } ;
729 static const char* const blockli_elt[] = { BLOCK, "li", NULL } ;
    [all...]
  /external/libxml2/
HTMLparser.c 626 #define BLOCK HEADING, LIST, "pre", "p", "dl", "div", "center", "noscript", "noframes", "blockquote", "form", "isindex", "hr", "table", "fieldset", "address"
638 #define FLOW BLOCK,INLINE
729 static const char* const map_contents[] = { BLOCK, "area", NULL } ;
732 static const char* const blockli_elt[] = { BLOCK, "li", NULL } ;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-check.h 10 #define BLOCK_CHECK(t) TREE_CHECK (t, BLOCK)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
firstpass.c 16 #include "block.h"
412 BLOCK *b = &x->block[0];
413 BLOCKD *d = &x->e_mbd.block[0];
422 /* Set up pointers for this macro block raw buffer */
428 /* Set up pointers for this macro block recon buffer */
441 BLOCK *b = &x->block[0];
442 BLOCKD *d = &x->e_mbd.block[0];
458 /* Set up pointers for this macro block recon buffer *
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 16 #include "block.h"
412 BLOCK *b = &x->block[0];
413 BLOCKD *d = &x->e_mbd.block[0];
422 /* Set up pointers for this macro block raw buffer */
428 /* Set up pointers for this macro block recon buffer */
441 BLOCK *b = &x->block[0];
442 BLOCKD *d = &x->e_mbd.block[0];
458 /* Set up pointers for this macro block recon buffer *
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
firstpass.c 16 #include "block.h"
412 BLOCK *b = &x->block[0];
413 BLOCKD *d = &x->e_mbd.block[0];
422 /* Set up pointers for this macro block raw buffer */
428 /* Set up pointers for this macro block recon buffer */
441 BLOCK *b = &x->block[0];
442 BLOCKD *d = &x->e_mbd.block[0];
458 /* Set up pointers for this macro block recon buffer *
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp 509 documentStyle->setDisplay(BLOCK);
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 987 Stmt *Block)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
regexcmp.cpp 428 // This registers if for fixup when this block's close paren is encountered.
537 // block, complicated this sequence. Some conbined opcodes
551 // 6. NOP reserved for use by quantifiers on the block.
554 // 7. NOP may be replaced if there is are '|' ops in the block.
595 // 2. SAVE_STATE 7 // Fail within look-ahead block restores to this state,
600 // 6. BACKTRACK // code in block succeeded, so neg. lookahead fails.
637 // 5 URX_NOP Reserved slot for use with '|' ops within (block).
642 // Allocate a block of matcher data, to contain (when running a match)
693 // 6 URX_NOP Reserved slot for use with '|' ops within (block).
698 // Allocate a block of matcher data, to contain (when running a match
    [all...]
  /external/icu/icu4c/source/i18n/
regexcmp.cpp 428 // This registers if for fixup when this block's close paren is encountered.
537 // block, complicated this sequence. Some conbined opcodes
551 // 6. NOP reserved for use by quantifiers on the block.
554 // 7. NOP may be replaced if there is are '|' ops in the block.
595 // 2. SAVE_STATE 7 // Fail within look-ahead block restores to this state,
600 // 6. BACKTRACK // code in block succeeded, so neg. lookahead fails.
637 // 5 URX_NOP Reserved slot for use with '|' ops within (block).
642 // Allocate a block of matcher data, to contain (when running a match)
693 // 6 URX_NOP Reserved slot for use with '|' ops within (block).
698 // Allocate a block of matcher data, to contain (when running a match
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /external/chromium_org/chrome/browser/resources/history/
history.js 44 BLOCK: 2
194 // block/allow it.
407 * @return {Element} DOM representation for the title block.
759 // delete an entry or to block/allow it.
    [all...]

Completed in 3267 milliseconds

1 2 3 4 5 6 78 9