/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ANTLRv3.g | 62 TEMPLATE; 413 /** Build a tree for a template rewrite: 414 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) ) 416 ID can be "template" keyword. If first child is ACTION then it's 417 an indirect template ref 420 -> ({string-e})(a={...}, b={...}) // e evaluates to template name 421 -> {%{$ID.text}} // create literal template from string (done in ActionTranslator) 425 : // -> template(a={...},...) "..." inline template 428 -> ^(TEMPLATE[$lp,"TEMPLATE"] id rewrite_template_args $str [all...] |
LeftRecursiveRuleWalker.g | 239 : ^(REWRITES ( ^( REWRITE SEMPRED? (^(ALT .*)|^(TEMPLATE .*)|ACTION|ETC) ) )* )
|
ANTLR.g | 100 TEMPLATE; 981 /** Build a tree for a template rewrite: 982 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) ) 984 ID can be "template" keyword. If first child is ACTION then it's 985 an indirect template ref 988 -> ({string-e})(a={...}, b={...}) // e evaluates to template name 989 -> {%{$ID.text}} // create literal template from string (done in ActionTranslator) 995 : // -> template(a={...},...) "..." 996 {LT(1).getText().equals("template")}? => // inline 1018 -> ^(TEMPLATE[$lp,"TEMPLATE"] id rewrite_template_args [all...] |
ANTLRTreePrinter.g | 357 : ^( TEMPLATE
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
ST.stg | 28 /** Template subgroup to add template rewrite output 72 /** x+=rule when output=template */ 79 # TEMPLATE REWRITE 138 /** Invoke a template with a set of attribute name/value pairs. 139 * Set the value of the rule's template *after* having set 140 * the attributes because the rule's template might be used as 141 * an attribute to build a bigger template; you get a self-embedded 142 * template. 148 /** expr is a string expression that says what template to load * [all...] |
/external/v8/src/ |
messages.h | 123 T(DuplicateTemplateProperty, "Object template has duplicate property '%'") \ 433 "Octal literals are not allowed in template strings.") \ [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/ |
parser.js | 71 //Template insertion mode switch map 368 //NOTE: use <template> element as a fragment context if context element was not provided, 371 fragmentContext = this.treeAdapter.createElement($.TEMPLATE, NS.HTML, []); 380 if (this.treeAdapter.getTagName(fragmentContext) === $.TEMPLATE) 758 else if (tn === $.TEMPLATE) { 781 if (tn === $.TEMPLATE) 828 if (tn === $.TEMPLATE && ns === NS.HTML) { [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/ |
group-file-lexer.rb | 64 module Template 80 :TEMPLATE => 6, :T__11 => 11, :T__14 => 14, :T__13 => 13, 99 "TEMPLATE", "STRING", "COMMENT", "WS" ].freeze 102 :template!, :string!, :comment!, :ws! ].freeze 460 # lexer rule template! (TEMPLATE) 462 def template! 466 type = TEMPLATE 838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS ) 891 # at line 1:82: TEMPLATE [all...] |
/external/chromium-trace/catapult/third_party/Paste/paste/ |
httpexceptions.py | 84 TEMPLATE = """\ 110 2. The template may want to have string-substitutions taken from 131 it is accessible in the template via %(explanation)s 136 the template via %(detail)s 138 ``template`` 140 header substitution; the default template includes both 160 To override the template (which is HTML content) or the plain-text 163 into explanation, detail and template allows both the creation of 173 template = "%(explanation)s\r\n<br/>%(detail)s\r\n<!-- %(comment)s -->" variable in class:HTTPException 198 def make_body(self, environ, template, escfunc, comment_escfunc=None) 317 template = ( variable in class:_HTTPMove 459 template = ('The method %(REQUEST_METHOD)s is not allowed for ' variable in class:HTTPMethodNotAllowed 466 template = ('The resource could not be generated that was ' variable in class:HTTPNotAcceptable 517 template = ('The request media type %(CONTENT_TYPE)s is not ' variable in class:HTTPUnsupportedMediaType 569 template = ('The request method %(REQUEST_METHOD)s is not implemented ' variable in class:HTTPNotImplemented [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/ |
html.js | 147 TEMPLATE: 'template', 245 SPECIAL_ELEMENTS[NS.HTML][$.TEMPLATE] = true;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
re.py | 110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", 125 T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking 197 def template(pattern, flags=0): function 198 "Compile a template pattern, returning a pattern object" 263 def _expand(pattern, match, template): 265 template = sre_parse.parse_template(template, pattern) 266 return sre_parse.expand_template(template, match) 268 def _subx(pattern, template): 270 template = _compile_repl(template, pattern [all...] |
rexec.py | 52 TEMPLATE = """ 64 exec TEMPLATE % (m, m)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
re.py | 110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", 125 T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking 197 def template(pattern, flags=0): function 198 "Compile a template pattern, returning a pattern object" 263 def _expand(pattern, match, template): 265 template = sre_parse.parse_template(template, pattern) 266 return sre_parse.expand_template(template, match) 268 def _subx(pattern, template): 270 template = _compile_repl(template, pattern [all...] |
rexec.py | 52 TEMPLATE = """ 64 exec TEMPLATE % (m, m)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
re.py | 110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", 125 T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking 197 def template(pattern, flags=0): function 198 "Compile a template pattern, returning a pattern object" 263 def _expand(pattern, match, template): 265 template = sre_parse.parse_template(template, pattern) 266 return sre_parse.expand_template(template, match) 268 def _subx(pattern, template): 270 template = _compile_repl(template, pattern [all...] |
rexec.py | 52 TEMPLATE = """ 64 exec TEMPLATE % (m, m)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
re.py | 110 "compile", "purge", "template", "escape", "I", "L", "M", "S", "X", 125 T = TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking 197 def template(pattern, flags=0): function 198 "Compile a template pattern, returning a pattern object" 263 def _expand(pattern, match, template): 265 template = sre_parse.parse_template(template, pattern) 266 return sre_parse.expand_template(template, match) 268 def _subx(pattern, template): 270 template = _compile_repl(template, pattern [all...] |
rexec.py | 52 TEMPLATE = """ 64 exec TEMPLATE % (m, m)
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/ |
open_element_stack_test.js | 448 _test['Template count'] = function () { 452 stack.push(treeAdapter.createElement($.TEMPLATE, NS.MATHML, [])); 455 stack.push(treeAdapter.createElement($.TEMPLATE, NS.HTML, [])); 460 stack.push(treeAdapter.createElement($.TEMPLATE, NS.HTML, []));
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/serialization/ |
serializer.js | 111 var childNodesHolder = tn === $.TEMPLATE && ns === NS.HTML ?
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/ |
test_utils.js | 216 if (tn === HTML.TAG_NAMES.TEMPLATE && treeAdapter.getNamespaceURI(node) === HTML.NAMESPACES.HTML) {
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/ |
buildtools.py | 30 # Template file (searched on sys.path) 31 TEMPLATE = "PythonInterpreter" 51 def findtemplate(template=None): 52 """Locate the applet template along sys.path""" 55 if not template: 56 template=TEMPLATE 58 file = os.path.join(p, template) 65 raise BuildError, "Template %r not found on sys.path" % (template,) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
buildtools.py | 30 # Template file (searched on sys.path) 31 TEMPLATE = "PythonInterpreter" 51 def findtemplate(template=None): 52 """Locate the applet template along sys.path""" 55 if not template: 56 template=TEMPLATE 58 file = os.path.join(p, template) 65 raise BuildError, "Template %r not found on sys.path" % (template,) [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/ |
parse5.js | 543 TEMPLATE: 'template', 641 SPECIAL_ELEMENTS[NS.HTML][$.TEMPLATE] = true; 939 var childNodesHolder = tn === $.TEMPLATE && ns === NS.HTML ? [all...] |
/external/guice/extensions/struts2/lib/ |
struts2-core-2.2.1.jar | |