HomeSort by relevance Sort by last modified time
    Searched refs:TEMPLATE (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/llvm/utils/git-svn/
git-svnrevert 46 # Create a template in our .git directory.
47 TEMPLATE="`git rev-parse --git-dir`/git-svn-revert-template"
48 cat > $TEMPLATE <<EOF
55 git commit --file="$TEMPLATE" --edit
59 rm -rf $TEMPLATE
63 rm -rf $TEMPLATE
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/git-svn/
git-svnrevert 46 # Create a template in our .git directory.
47 TEMPLATE="`git rev-parse --git-dir`/git-svn-revert-template"
48 cat > $TEMPLATE <<EOF
55 git commit --file="$TEMPLATE" --edit
59 rm -rf $TEMPLATE
63 rm -rf $TEMPLATE
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
gentests.pl 30 open (TEMPLATE, "$fname") or die "Could not open $fname";
31 my (@t) = <TEMPLATE>;
32 close TEMPLATE;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
gencjkcodecs.py 15 TEMPLATE = string.Template("""\
60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
  /external/oj-libjdwp/etc/
jdigen.py 25 TEMPLATE = """
60 out.write(TEMPLATE.format(values = VALUES))
  /external/python/cpython2/Tools/unicode/
gencjkcodecs.py 15 TEMPLATE = string.Template("""\
60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
  /external/python/cpython3/Tools/unicode/
gencjkcodecs.py 15 TEMPLATE = string.Template("""\
60 code = TEMPLATE.substitute(ENCODING=enc.upper(),
  /external/clang/test/CodeGenCXX/
for-range-temporaries.cpp 72 #ifdef TEMPLATE
74 template<typename D>
76 template<typename>
97 #ifdef TEMPLATE
98 template void for_temps<D>();
  /external/mesa3d/src/compiler/spirv/
spirv_info_c.py 29 from mako.template import Template
63 TEMPLATE = Template("""\
97 f.write(TEMPLATE.render(info=info))
vtn_gather_types_c.py 29 from mako.template import Template
60 TEMPLATE = Template(COPYRIGHT + """\
113 f.write(TEMPLATE.render(opcodes=opcodes))
  /external/autotest/server/site_tests/hardware_StorageQual/
generate_storage_qual_control_files.py 236 TEMPLATE = """
307 control_file = TEMPLATE.format(
321 control_file = TEMPLATE.format(
  /external/autotest/client/common_lib/
host_queue_entry_states.py 13 'Cleaning', 'Template']
20 Status.STOPPED, Status.TEMPLATE)
  /external/mesa3d/src/mesa/main/
format_fallback.py 30 from mako.template import Template
88 TEMPLATE = Template(COPYRIGHT + """
170 f.write(TEMPLATE.render(**template_env))
  /external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g 235 : ^( TEMPLATE ID rewrite_template_args
245 : ^(TEMPLATE ID rewrite_template_args)
250 : ^(TEMPLATE ACTION rewrite_template_args)
ANTLRv3.g 63 TEMPLATE;
414 /** Build a tree for a template rewrite:
415 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
417 ID can be "template" keyword. If first child is ACTION then it's
418 an indirect template ref
421 -> ({string-e})(a={...}, b={...}) // e evaluates to template name
422 -> {%{$ID.text}} // create literal template from string (done in ActionTranslator)
426 : // -> template(a={...},...) "..." inline template
429 -> ^(TEMPLATE[$lp,"TEMPLATE"] id rewrite_template_args $str
    [all...]
  /external/deqp/scripts/
gen_android_bp.py 58 TEMPLATE = """
139 src = TEMPLATE
  /external/ltp/testcases/network/nfs/nfs_stress/
nfs01_open_files.c 13 #define TEMPLATE "ltpXXXXXX"
41 strcpy(filename, TEMPLATE);
  /external/mesa3d/src/intel/genxml/
gen_bits_header.py 31 from mako.template import Template
33 TEMPLATE = Template("""\
351 f.write(TEMPLATE.render(containers=containers, guard=pargs.cpp_guard))
  /external/mesa3d/src/intel/isl/
gen_format_layout.py 30 from mako import template
32 # Load the template, ensure that __future__.division is imported, and set the
35 TEMPLATE = template.Template(future_imports=['division'],
110 Converts the csv encoded data into the format that the template (and thus
135 # save on the regex cost and let the template skip on None.
146 """Class taht contains all values needed by the template."""
231 f.write(TEMPLATE.render(
  /external/python/cpython3/Lib/test/
test_string_literals.py 38 TEMPLATE = r"""# coding: %s
76 # Check that the template doesn't contain any non-printables
78 for c in TEMPLATE:
220 f.write(TEMPLATE % encoding)
  /external/antlr/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 64 module Template
80 :TEMPLATE => 6, :T__11 => 11, :T__14 => 14, :T__13 => 13,
89 register_names( "CONSTANT", "ID", "TEMPLATE", "STRING", "COMMENT", "WS",
120 unless group.is_a?( ANTLR3::Template::Group )
124 group = ANTLR3::Template::Group.new
153 when TEMPLATE
204 group = ANTLR3::Template::Group.new
322 # 96:1: member[ group ] : name= ID ( parameter_declaration )? '::=' (aliased= ID | TEMPLATE | STRING ) ;
336 # at line 98:5: name= ID ( parameter_declaration )? '::=' (aliased= ID | TEMPLATE | STRING )
357 # at line 99:5: (aliased= ID | TEMPLATE | STRING
    [all...]
  /external/antlr/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 64 TEMPLATE;
409 /** Build a tree for a template rewrite:
410 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
412 ID can be "template" keyword. If first child is ACTION then it's
413 an indirect template ref
416 -> ({string-e})(a={...}, b={...}) // e evaluates to template name
417 -> {%{$ID.text}} // create literal template from string (done in ActionTranslator)
421 : // -> template(a={...},...) "..." inline template
424 -> ^(TEMPLATE[$lp,"TEMPLATE"] id rewrite_template_args $str
    [all...]
  /external/antlr/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/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python3/
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/python/cpython3/Lib/
re.py 135 "findall", "finditer", "compile", "purge", "template", "escape",
159 TEMPLATE = sre_compile.SRE_FLAG_TEMPLATE # disable backtracking
160 T = TEMPLATE
241 def template(pattern, flags=0): function
242 "Compile a template pattern, returning a Pattern object"
302 def _expand(pattern, match, template):
304 template = sre_parse.parse_template(template, pattern)
305 return sre_parse.expand_template(template, match)
307 def _subx(pattern, template)
    [all...]

Completed in 2048 milliseconds

1 2 3