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

1 2

  /external/webkit/Source/WebCore/
make-export-file-generator 36 TEMPLATE = <<-EOF
52 renderer = ERB.new(TEMPLATE, 0, "-")
  /external/webkit/Tools/Scripts/
make-script-test-wrappers 67 if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
69 $templateRelativePath = $1 . "/TEMPLATE.html";
71 print "Inappropriate position of a template: ${tpath}\n";
86 open TEMPLATE, "<${templateRelativePath}";
87 my $template = do { local $/; <TEMPLATE> };
88 close TEMPLATE;
90 my $templateNegative = $template;
91 if (-e "${templateDirectory}/TEMPLATE-n.html") {
92 open TEMPLATE, "<${templateDirectory}/TEMPLATE-n.html"
    [all...]
  /external/libvpx/libvpx/examples/
gen_example_text.sh 51 read -r template < "$txt"
52 case "$template" in
53 @TEMPLATE*) template=${txt%/*}/${template##@TEMPLATE } ;;
54 *) die "Failed to parse template name from '$template'" ;;
63 @TEMPLATE*)
64 template=${template##@TEMPLATE
    [all...]
gen_example_code.sh 45 include_block $show_bar < "${template%.c}.txt"
71 read -r template < "$txt"
72 case "$template" in
73 @TEMPLATE*) template=${txt%/*}/${template##@TEMPLATE } ;;
74 *) die "Failed to parse template name from '$template'" ;;
80 || include_block < "${template%.c}.txt"
    [all...]
  /external/webkit/PerformanceTests/SunSpider/
make-hosted 28 open TEMPLATE, "<resources/TEMPLATE.html";
29 my $template = do { local $/; <TEMPLATE> };
30 close TEMPLATE;
32 open DRIVER_TEMPLATE, "<resources/driver-TEMPLATE.html";
36 open RESULTS_TEMPLATE, "<resources/results-TEMPLATE.html";
72 my $output = $template;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.cpp 29 const uint32_t ARMToARMStub::TEMPLATE[] = {
43 m_pData = TEMPLATE;
44 m_Size = sizeof(TEMPLATE);
ARMToTHMStub.cpp 30 const uint32_t ARMToTHMStub::TEMPLATE[] = {
45 m_pData = TEMPLATE;
46 m_Size = sizeof(TEMPLATE);
THMToARMStub.cpp 30 const uint32_t THMToARMStub::TEMPLATE[] = {
45 m_pData = TEMPLATE;
46 m_Size = sizeof(TEMPLATE);
THMToTHMStub.cpp 31 const uint32_t THMToTHMStub::TEMPLATE[] = {
47 m_pData = TEMPLATE;
48 m_Size = sizeof(TEMPLATE);
ARMToARMStub.h 69 static const uint32_t TEMPLATE[];
ARMToTHMStub.h 69 static const uint32_t TEMPLATE[];
THMToARMStub.h 72 static const uint32_t TEMPLATE[];
THMToTHMStub.h 72 static const uint32_t TEMPLATE[];
  /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/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLRv3Tree.g 234 : ^( TEMPLATE ID rewrite_template_args
244 : ^(TEMPLATE ID rewrite_template_args)
249 : ^(TEMPLATE ACTION rewrite_template_args)
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
DefineGrammarItemsWalker.g 675 | ^( TEMPLATE (id=ID|ind=ACTION)
  /external/antlr/antlr-3.4/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...]
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/qemu/android/utils/
tempfile.c 79 #define TEMPLATE "/tmp/.android-emulator-XXXXXX"
81 char template[512]; local
82 char *p = template, *end = p + sizeof(template);
90 D( "template: %s", template );
91 tempfd = mkstemp( template );
97 tempname = template;
  /external/antlr/antlr-3.4/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/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...]

Completed in 3338 milliseconds

1 2