HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 101 - 125 of 1282) sorted by null

1 2 3 45 6 7 8 91011>>

  /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...]
  /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...]
  /external/webrtc/webrtc/base/
callback.h.pump 18 // Callbacks are typed using template arguments. The format is:
70 template <class R$for j [[,
76 template <class T> Callback$i(const T& functor)
90 template <class T> struct HelperImpl : Helper {
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 56 NetworkTemplate template = NetworkTemplate.buildTemplateWifiWildcard(); local
57 fetchStats(template);
65 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId); local
66 fetchStats(template);
72 * @param template {@link NetworkTemplate} to match.
74 private void fetchStats(NetworkTemplate template) {
80 template, Long.MIN_VALUE, Long.MAX_VALUE, false);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupFragment.java 75 * @param contentLayout Resource ID of the main content layout to insert into the template
81 final View template = inflater.inflate(R.layout.account_setup_template, container, false); local
83 TextView headlineView = UiUtilities.getView(template, R.id.headline);
92 (ViewGroup) template.findViewById(R.id.setup_fragment_content);
95 mNextButton = UiUtilities.getView(template, R.id.next);
97 mPreviousButton = UiUtilities.getView(template, R.id.previous);
99 return template;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
runtime.py 63 :meth:`.Template.render`. It does not include names produced within
64 the template execution such as local variable names or special names
68 a :class:`.Template` accepts arguments via its ``<%page>`` tag,
69 which are normally expected to be passed via :meth:`.Template.render`,
70 except the template is being called in an inheritance context,
72 used to propagate these arguments to the inheriting template::
214 """Represents an undefined value in a template.
216 All template modules have a constant value
378 If the namespace references a :class:`.Template`, then
379 this module is the equivalent of ``template.module``
384 template = None variable in class:Namespace
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
bases.py 5 from framer import struct, template
34 p(template.methoddef_start)
37 p(template.methoddef_def_doc, func.vars)
39 p(template.methoddef_def, func.vars)
40 p(template.methoddef_end)
82 p(template.module_start)
84 p(template.member_include)
88 p(template.module_doc)
98 p(template.module_init_start)
120 p(template.docstring)
    [all...]
  /external/python/cpython2/Tools/framer/framer/
bases.py 5 from framer import struct, template
34 p(template.methoddef_start)
37 p(template.methoddef_def_doc, func.vars)
39 p(template.methoddef_def, func.vars)
40 p(template.methoddef_end)
82 p(template.module_start)
84 p(template.member_include)
88 p(template.module_doc)
98 p(template.module_init_start)
120 p(template.docstring
    [all...]
  /prebuilts/sdk/tools/
jack-launcher.jar 
  /external/deqp/scripts/opengl/
gen_null_render_context.py 60 template = """
65 return template.format(
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
JCs.java 24 import com.google.clearsilver.jsilver.template.HtmlWhiteSpaceStripper;
25 import com.google.clearsilver.jsilver.template.Template;
42 private Template template = null; field in class:JCs
77 template = null;
90 template =
111 template = getJSilver().getTemplateLoader().createTemp("parseStr", content, getEscapeMode());
121 if (template == null) {
145 jSilver.render(template, data, output, resourceLoaderAdaptor)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateLoader.java 24 import com.google.clearsilver.jsilver.template.DelegatingTemplateLoader;
25 import com.google.clearsilver.jsilver.template.Template;
26 import com.google.clearsilver.jsilver.template.TemplateLoader;
33 * TemplateLoader that stores objects from precompiled Template classes and serves them when asked
39 * This is the next TemplateLoader to ask if we don't find the template.
67 // The template's escapeMode is not currently used as the autoescaping is all
98 for (BaseCompiledTemplate template : templateMap.values()) {
99 template.setTemplateLoader(templateLoaderDelegate);
104 public Template load(String templateName, ResourceLoader resourceLoader, EscapeMode escapeMode)
107 Template template = templateMap.get(mapKey); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/datausage/
TemplatePreferenceCategory.java 33 public void setTemplate(NetworkTemplate template, int subId,
35 mTemplate = template;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/
FmActivityToLayoutMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmCamelCaseToUnderscoreMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmClassNameToResourceMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmEscapeXmlAttributeMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmEscapeXmlStringMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmEscapeXmlTextMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmExtractLettersMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmLayoutToActivityMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmSlashedPackageNameMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
FmUnderscoreToCamelCaseMethodTest.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateModelException;
  /external/jcommander/src/test/java/com/beust/jcommander/
ArgsValidate2.java 16 public static final String POSSIBLE_TEMPLATE_FILE = "mayOrMayNotExist.template";
18 @Parameter(names = { "-template"},
23 public File template = new File(POSSIBLE_TEMPLATE_FILE); field in class:ArgsValidate2
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
TemplateLoader.java 17 package com.google.clearsilver.jsilver.template;
23 * Loads a Template.
28 * Load a template from a named resource, with the provided escape mode. If the mode is
30 * template. If the mode is ESCAPE_AUTO, enable <a href="http://go/autoescapecs">auto escaping</a>
31 * on templates. For each variable in the template, this will determine what type of escaping
34 * @param templateName e.g. some/path/to/template.cs
37 * @param escapeMode the type of escaping to apply to the entire template.
39 Template load(String templateName, ResourceLoader resourceLoader, EscapeMode escapeMode);
42 * Create a temporary template from content, with the provided escape mode. If the mode is
44 * template. If the mode is ESCAPE_AUTO, enable <a href="http://go/autoescapecs">auto escaping</a
    [all...]

Completed in 304 milliseconds

1 2 3 45 6 7 8 91011>>