Home
last modified time | relevance | path

Searched refs:templates (Results 1 – 25 of 458) sorted by relevance

12345678910>>...19

/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorExsltFunction.java23 import org.apache.xalan.templates.ElemApplyImport;
24 import org.apache.xalan.templates.ElemApplyTemplates;
25 import org.apache.xalan.templates.ElemAttribute;
26 import org.apache.xalan.templates.ElemCallTemplate;
27 import org.apache.xalan.templates.ElemComment;
28 import org.apache.xalan.templates.ElemCopy;
29 import org.apache.xalan.templates.ElemCopyOf;
30 import org.apache.xalan.templates.ElemElement;
31 import org.apache.xalan.templates.ElemExsltFuncResult;
32 import org.apache.xalan.templates.ElemExsltFunction;
[all …]
DXSLTSchema.java25 import org.apache.xalan.templates.Constants;
26 import org.apache.xalan.templates.ElemApplyImport;
27 import org.apache.xalan.templates.ElemApplyTemplates;
28 import org.apache.xalan.templates.ElemAttribute;
29 import org.apache.xalan.templates.ElemCallTemplate;
30 import org.apache.xalan.templates.ElemChoose;
31 import org.apache.xalan.templates.ElemComment;
32 import org.apache.xalan.templates.ElemCopy;
33 import org.apache.xalan.templates.ElemCopyOf;
34 import org.apache.xalan.templates.ElemElement;
[all …]
DProcessorExsltFuncResult.java23 import org.apache.xalan.templates.ElemExsltFuncResult;
24 import org.apache.xalan.templates.ElemExsltFunction;
25 import org.apache.xalan.templates.ElemParam;
26 import org.apache.xalan.templates.ElemTemplateElement;
27 import org.apache.xalan.templates.ElemVariable;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
DACyclicDFACodeGenerator.java44 public ST genFixedLookaheadDecision(STGroup templates, in genFixedLookaheadDecision() argument
47 return walkFixedDFAGeneratingStateMachine(templates, dfa, dfa.startState, 1); in genFixedLookaheadDecision()
51 STGroup templates, in walkFixedDFAGeneratingStateMachine() argument
58 ST dfaST = templates.getInstanceOf("dfaAcceptState"); in walkFixedDFAGeneratingStateMachine()
76 ST dfaST = templates.getInstanceOf(dfaStateName); in walkFixedDFAGeneratingStateMachine()
78 dfaST = templates.getInstanceOf(dfaLoopbackStateName); in walkFixedDFAGeneratingStateMachine()
81 dfaST = templates.getInstanceOf(dfaOptionalBlockStateName); in walkFixedDFAGeneratingStateMachine()
113 ST edgeST = templates.getInstanceOf(dfaEdgeName); in walkFixedDFAGeneratingStateMachine()
127 parentGenerator.genLabelExpr(templates,edge,k)); in walkFixedDFAGeneratingStateMachine()
145 walkFixedDFAGeneratingStateMachine(templates, in walkFixedDFAGeneratingStateMachine()
[all …]
DCodeGenerator.java105 protected STGroup templates; field in CodeGenerator
216 templates = astDbgTemplates; in loadTemplates()
233 templates = astParserTemplates; in loadTemplates()
245 templates = stTemplates; in loadTemplates()
251 templates = stTemplates; in loadTemplates()
253 templates.iterateAcrossValues = true; // ST v3 compatibility with Maps in loadTemplates()
258 templates = dbgTemplates; in loadTemplates()
259 baseTemplates = templates; in loadTemplates()
263 templates = coreTemplates; in loadTemplates()
284 if ( templates==null ) { in genRecognizer()
[all …]
/external/boringssl/src/tool/
Dargs.cc28 const struct argument *templates) { in ParseKeyValueArguments() argument
34 for (size_t j = 0; templates[j].name[0] != 0; j++) { in ParseKeyValueArguments()
35 if (strcmp(arg.c_str(), templates[j].name) == 0) { in ParseKeyValueArguments()
36 templ = &templates[j]; in ParseKeyValueArguments()
62 for (size_t j = 0; templates[j].name[0] != 0; j++) { in ParseKeyValueArguments()
63 const struct argument *templ = &templates[j]; in ParseKeyValueArguments()
74 void PrintUsage(const struct argument *templates) { in PrintUsage() argument
75 for (size_t i = 0; templates[i].name[0] != 0; i++) { in PrintUsage()
76 const struct argument *templ = &templates[i]; in PrintUsage()
/external/selinux/policycoreutils/po/
DMakefile81 ../sepolicy/sepolicy/templates/executable.py \
82 ../sepolicy/sepolicy/templates/__init__.py \
83 ../sepolicy/sepolicy/templates/network.py \
84 ../sepolicy/sepolicy/templates/rw.py \
85 ../sepolicy/sepolicy/templates/script.py \
86 ../sepolicy/sepolicy/templates/semodule.py \
87 ../sepolicy/sepolicy/templates/tmp.py \
88 ../sepolicy/sepolicy/templates/user.py \
89 ../sepolicy/sepolicy/templates/var_lib.py \
90 ../sepolicy/sepolicy/templates/var_log.py \
[all …]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DSemanticContext.java77 STGroup templates, in genExpr() argument
172 STGroup templates, in genExpr() argument
176 if ( templates!=null ) { in genExpr()
178 eST = templates.getInstanceOf("evalSynPredicate"); in genExpr()
181 eST = templates.getInstanceOf("evalPredicate"); in genExpr()
256 STGroup templates, in genExpr() argument
259 if ( templates!=null ) { in genExpr()
260 return templates.getInstanceOf("true_value"); in genExpr()
283 STGroup templates, in genExpr() argument
286 if ( templates!=null ) { in genExpr()
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DVariable.java260 public org.apache.xalan.templates.ElemVariable getElemVariable() in getElemVariable()
269 org.apache.xalan.templates.ElemVariable vvar = null; in getElemVariable()
272 if (null != owner && owner instanceof org.apache.xalan.templates.ElemTemplateElement) in getElemVariable()
275 org.apache.xalan.templates.ElemTemplateElement prev = in getElemVariable()
276 (org.apache.xalan.templates.ElemTemplateElement) owner; in getElemVariable()
278 if (!(prev instanceof org.apache.xalan.templates.Stylesheet)) in getElemVariable()
280 … while ( prev != null && !(prev.getParentNode() instanceof org.apache.xalan.templates.Stylesheet) ) in getElemVariable()
282 org.apache.xalan.templates.ElemTemplateElement savedprev = prev; in getElemVariable()
286 if(prev instanceof org.apache.xalan.templates.ElemVariable) in getElemVariable()
288 vvar = (org.apache.xalan.templates.ElemVariable) prev; in getElemVariable()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DQuantityFormatter.java27 private final SimpleFormatter[] templates = field in QuantityFormatter
44 if (templates[idx] != null) { in addIfAbsent()
47 templates[idx] = SimpleFormatter.compileMinMaxArguments(template, 0, 1); in addIfAbsent()
54 return templates[StandardPlural.OTHER_INDEX] != null; in isValid()
68 SimpleFormatter formatter = templates[p.ordinal()]; in format()
70 formatter = templates[StandardPlural.OTHER_INDEX]; in format()
84 SimpleFormatter template = templates[idx]; in getByVariant()
86 templates[StandardPlural.OTHER_INDEX] : template; in getByVariant()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DQuantityFormatter.java26 private final SimpleFormatter[] templates = field in QuantityFormatter
43 if (templates[idx] != null) { in addIfAbsent()
46 templates[idx] = SimpleFormatter.compileMinMaxArguments(template, 0, 1); in addIfAbsent()
53 return templates[StandardPlural.OTHER_INDEX] != null; in isValid()
67 SimpleFormatter formatter = templates[p.ordinal()]; in format()
69 formatter = templates[StandardPlural.OTHER_INDEX]; in format()
83 SimpleFormatter template = templates[idx]; in getByVariant()
85 templates[StandardPlural.OTHER_INDEX] : template; in getByVariant()
/external/trappy/trappy/plotter/
DAbstractDataPlotter.py32 def __init__(self, traces=None, attr=None, templates=None): argument
36 self.templates = templates
60 sig_or_template = self.templates or "signals" in self._attr
112 if "column" in self._attr or self.templates:
116 self.templates = []
121 self.templates.append(template)
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTemplates.java75 STGroup templates = in testTemplateConstructor() local
77 ST actionST = new ST(templates, rawTranslation); in testTemplateConstructor()
112 STGroup templates = in testTemplateConstructorNoArgs() local
114 ST actionST = new ST(templates, rawTranslation); in testTemplateConstructorNoArgs()
150 STGroup templates = in testIndirectTemplateConstructor() local
152 ST actionST = new ST(templates, rawTranslation); in testIndirectTemplateConstructor()
185 STGroup templates = in testStringConstructor() local
187 ST actionST = new ST(templates, rawTranslation); in testStringConstructor()
221 STGroup templates = in testSetAttr() local
223 ST actionST = new ST(templates, rawTranslation); in testSetAttr()
[all …]
/external/mesa3d/src/gallium/drivers/swr/
DMakefile.am74 …er/scripts/gen_knobs.py rasterizer/scripts/knob_defs.py rasterizer/scripts/templates/knobs.template
78 --input $(srcdir)/rasterizer/scripts/templates/knobs.template \
82 …er/scripts/gen_knobs.py rasterizer/scripts/knob_defs.py rasterizer/scripts/templates/knobs.template
86 --input $(srcdir)/rasterizer/scripts/templates/knobs.template \
127 rasterizer/archrast/gen_ar_event.h: rasterizer/scripts/gen_archrast.py rasterizer/scripts/templates
135 …gen_ar_event.cpp: rasterizer/scripts/gen_archrast.py rasterizer/scripts/templates/ar_event_cpp.tem…
143 …r_eventhandler.h: rasterizer/scripts/gen_archrast.py rasterizer/scripts/templates/ar_eventhandler_…
151 …enthandlerfile.h: rasterizer/scripts/gen_archrast.py rasterizer/scripts/templates/ar_eventhandlerf…
272 rasterizer/scripts/templates/knobs.template \
273 rasterizer/scripts/templates/ar_event_h.template \
[all …]
/external/tensorflow/tensorflow/contrib/py2tf/pyct/
Dtemplates_test.py24 from tensorflow.contrib.py2tf.pyct import templates
36 node = templates.replace(template, b=('a', 'c'))[0]
49 node = templates.replace(template, a='b')[0]
61 node = templates.replace(template, fname='test_fn')[0]
72 node = templates.replace(
/external/apache-xml/src/main/java/org/apache/xpath/
DVariableStack.java511 if (prefixResolver instanceof org.apache.xalan.templates.ElemTemplateElement) in getVariableOrParam()
514 org.apache.xalan.templates.ElemVariable vvar; in getVariableOrParam()
516 org.apache.xalan.templates.ElemTemplateElement prev = in getVariableOrParam()
517 (org.apache.xalan.templates.ElemTemplateElement) prefixResolver; in getVariableOrParam()
519 if (!(prev instanceof org.apache.xalan.templates.Stylesheet)) in getVariableOrParam()
521 while ( !(prev.getParentNode() instanceof org.apache.xalan.templates.Stylesheet) ) in getVariableOrParam()
523 org.apache.xalan.templates.ElemTemplateElement savedprev = prev; in getVariableOrParam()
527 if (prev instanceof org.apache.xalan.templates.ElemVariable) in getVariableOrParam()
529 vvar = (org.apache.xalan.templates.ElemVariable) prev; in getVariableOrParam()
/external/tensorflow/tensorflow/contrib/py2tf/converters/
Dlist_comprehension.py35 from tensorflow.contrib.py2tf.pyct import templates
46 return templates.replace('list_.append(elt)', list_=list_, elt=elt)[0]
60 make_list = templates.replace(
68 loop_body = templates.replace(
70 loop_body = templates.replace(
Dcontrol_flow.py25 from tensorflow.contrib.py2tf.pyct import templates
66 return templates.replace(
79 return templates.replace(
87 return templates.replace(
97 return templates.replace(
147 body_returns = templates.replace('tf.ones(())')[0].value
201 node = templates.replace(
Dbuiltin_functions.py23 from tensorflow.contrib.py2tf.pyct import templates
43 return templates.replace(template, args=node.args)[0].value
49 return templates.replace(template, args=node.args)[0].value
69 function_call = templates.replace(template, fname='print', args=args)[0]
/external/syslinux/com32/cmenu/
Dmenugen.py178 fd.write(self.templates["login"] % entry)
180 fd.write(self.templates["item"] % entry)
184 fd.write(self.templates["menu"] % menu)
192 self.templates = {}
201 self.templates[curr_template] = "".join(contents)
214 if x not in self.templates: missing = x
222 fd.write(self.templates["header"])
223 fd.write(self.templates["system"] % self.system)
227 fd.write(self.templates["footer"])
/external/v8/tools/testrunner/local/
Dprogress.py187 def __init__(self, templates): argument
189 self.templates = templates
204 print self.templates['stdout'] % stdout
207 print self.templates['stderr'] % stderr
227 status = self.templates['status_line'] % {
244 templates = {
252 super(ColorProgressIndicator, self).__init__(templates)
261 templates = {
267 super(MonochromeProgressIndicator, self).__init__(templates)
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-template.rb77 templates = @group.templates
78 templates.should_not be_empty
79 templates.should equal @group::TEMPLATES
81 names = templates.keys
86 template_class = templates[ template_name ]
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
DCodeGenTreeWalker.g116 protected STGroup templates;
156 ST elementST = templates.getInstanceOf( name );
194 if ( tryUnchecked && templates.isDefined( name + "Unchecked" + suffix ) )
195 elementST = templates.getInstanceOf( name + "Unchecked" + suffix );
197 elementST = templates.getInstanceOf( name + suffix );
292 this.templates = generator.getTemplates();
410 // Save old templates ptr and restore later. Base templates include Dbg.
411 STGroup saveGroup = templates;
414 templates = generator.getBaseTemplates();
461 $code = templates.getInstanceOf(stName);
[all …]
/external/antlr/antlr-3.4/runtime/Python/tests/
Dt042ast.g251 /** templates tested:
259 /** templates tested:
269 /** templates tested:
277 /** templates tested:
295 /** templates tested:
302 /** templates tested:
309 /** templates tested:
316 /** templates tested:
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt042ast.g257 /** templates tested:
265 /** templates tested:
275 /** templates tested:
283 /** templates tested:
301 /** templates tested:
308 /** templates tested:
315 /** templates tested:
322 /** templates tested:

12345678910>>...19