HomeSort by relevance Sort by last modified time
    Searched defs:template (Results 51 - 75 of 167) sorted by null

1 23 4 5 6 7

  /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...]
tempfile.py 13 template - the default prefix for all temporary names.
80 template = "tmp" variable
253 """Accessor for tempdir.template."""
254 return template
270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
307 def mkdtemp(suffix="", prefix=template, dir=None):
338 def mktemp(suffix="", prefix=template, dir=None):
431 prefix=template, dir=None, delete=True):
469 prefix=template, dir=None):
505 suffix="", prefix=template, dir=None)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewActivityWizard.java 39 * Wizard and a New Template Wizard: it has the "Activity selector" page from
41 * second page, but beyond that it runs the normal template wizard when it comes
42 * time to create the template.
104 TemplateMetadata template = mActivityValues.getTemplateHandler().getTemplate(); local
105 if (template != null) {
106 if (InstallDependencyPage.isInstalled(template.getDependencies())) {
109 return getDependencyPage(template, true);
113 TemplateMetadata template = mActivityValues.getTemplateHandler().getTemplate(); local
114 if (template != null && page == getDependencyPage(template, false))
    [all...]
NewProjectWizardState.java 37 template = TemplateHandler.createFromName(CATEGORY_PROJECTS,
41 /** The template handler instantiating the project */
42 public final TemplateHandler template; field in class:NewProjectWizardState
102 /** State for the template wizard, used to embed an activity template */
NewTemplateWizard.java 44 * Template wizard which creates parameterized templates
47 /** Template name and location under $sdk/templates for the default activity */
49 /** Template name and location under $sdk/templates for the custom view template */
66 File template = TemplateManager.getTemplateLocation(mTemplateName); local
67 if (template != null) {
68 mValues.setTemplateLocation(template);
86 * Hide those parameters that the template requires but that we don't want
88 * the template is written into.
107 TemplateMetadata template = mValues.getTemplateHandler().getTemplate() local
    [all...]
Parameter.java 54 * A template parameter editable and edited by the user.
57 * template, but the actual editing operation of that template in the wizard: it
73 AdtPlugin.printErrorToConsole("Unexpected template type '" + name + "'");
140 AdtPlugin.printErrorToConsole("Unexpected template constraint '" + name + "'");
155 /** The template defining the parameter */
156 public final TemplateMetadata template; field in class:Parameter
178 * A template expression using other template parameters for producing a
220 Parameter(@NonNull TemplateMetadata template, @NonNull Element parameter)
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 35 public class Template {
37 private static HashMap<Integer, Template> sCachedTemplates = new HashMap<Integer, Template>();
39 public static Template getCachedTemplate(Context context, int id) {
41 Template template = sCachedTemplates.get(id); local
42 if (template == null) {
43 template = new Template(context, id);
44 sCachedTemplates.put(id, template);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_winsys_dri.c 177 struct pipe_resource template, *tex; local
230 memset(&template, 0, sizeof(template));
231 template.target = PIPE_TEXTURE_2D;
232 template.format = PIPE_FORMAT_B8G8R8X8_UNORM;
233 template.last_level = 0;
234 template.width0 = reply->width;
235 template.height0 = reply->height;
236 template.depth0 = 1;
237 template.array_size = 1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_tracker.c 290 struct pipe_resource *template; local
306 template = &srf->template;
307 template->format = fdesc.format;
308 template->target = PIPE_TEXTURE_2D;
309 template->width0 = width;
310 template->height0 = height;
311 template->depth0 = 1;
312 template->array_size = 1;
313 template->last_level = 0
347 struct pipe_resource *template = &srf->template; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_exa.c 864 struct pipe_resource template; local
866 memset(&template, 0, sizeof(template));
867 template.target = PIPE_TEXTURE_2D;
868 exa_get_pipe_format(depth, &template.format, &bitsPerPixel, &priv->picture_format);
870 template.width0 = util_next_power_of_two(width);
871 template.height0 = util_next_power_of_two(height);
874 template.width0 = width;
875 template.height0 = height;
878 template.depth0 = 1
940 struct pipe_resource template; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilver.java 46 import com.google.clearsilver.jsilver.template.DelegatingTemplateLoader;
47 import com.google.clearsilver.jsilver.template.HtmlWhiteSpaceStripper;
48 import com.google.clearsilver.jsilver.template.Template;
49 import com.google.clearsilver.jsilver.template.TemplateLoader;
73 * // Render template to System.out. Writer output = ...;
136 // Loads the template from the resource loader, manipulating the AST as
164 // Do we want to load precompiled Template class objects?
166 // Load precompiled template classes.
239 * Renders a given template and provided data, writing to an arbitrary output
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 29 import com.google.clearsilver.jsilver.template.DefaultRenderingContext;
30 import com.google.clearsilver.jsilver.template.Macro;
31 import com.google.clearsilver.jsilver.template.RenderingContext;
32 import com.google.clearsilver.jsilver.template.Template;
33 import com.google.clearsilver.jsilver.template.TemplateLoader;
44 public abstract class BaseCompiledTemplate implements Template {
93 * Sets the EscapeMode in which this template was generated.
308 * @param ignoreMissingFile {@code true} if any FileNotFound error generated by the template
310 * @param context Rendering context to use for the included template
329 Template template = null; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri.c 177 struct pipe_resource template, *tex; local
230 memset(&template, 0, sizeof(template));
231 template.target = PIPE_TEXTURE_2D;
232 template.format = PIPE_FORMAT_B8G8R8X8_UNORM;
233 template.last_level = 0;
234 template.width0 = reply->width;
235 template.height0 = reply->height;
236 template.depth0 = 1;
237 template.array_size = 1
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_tracker.c 290 struct pipe_resource *template; local
306 template = &srf->template;
307 template->format = fdesc.format;
308 template->target = PIPE_TEXTURE_2D;
309 template->width0 = width;
310 template->height0 = height;
311 template->depth0 = 1;
312 template->array_size = 1;
313 template->last_level = 0
347 struct pipe_resource *template = &srf->template; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa.c 864 struct pipe_resource template; local
866 memset(&template, 0, sizeof(template));
867 template.target = PIPE_TEXTURE_2D;
868 exa_get_pipe_format(depth, &template.format, &bitsPerPixel, &priv->picture_format);
870 template.width0 = util_next_power_of_two(width);
871 template.height0 = util_next_power_of_two(height);
874 template.width0 = width;
875 template.height0 = height;
878 template.depth0 = 1
940 struct pipe_resource template; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 201 char *template;
219 template = xmalloc (strlen (tmpdir) + strlen (base) + 8);
220 sprintf (template, "%s/%sXXXXXX", tmpdir, base);
225 fd = mkstemp (template);
228 panic(_("couldn't open temporary file %s: %s"), template, strerror(errno));
230 *p_filename = template;
232 register_open_file (fp, template, true);
200 char *template; local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 13 template - the default prefix for all temporary names.
80 template = "tmp" variable
253 """Accessor for tempdir.template."""
254 return template
270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
307 def mkdtemp(suffix="", prefix=template, dir=None):
338 def mktemp(suffix="", prefix=template, dir=None):
431 prefix=template, dir=None, delete=True):
469 prefix=template, dir=None):
505 suffix="", prefix=template, dir=None)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackService.java 379 // Get the announce template.
382 String template = mContext.getString(resourceId); local
384 // Format the template with the ringer percentage.
397 return String.format(template, volumePercent);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java 82 // Literal Result Template as stylesheet.
178 ElemTemplate template = new ElemTemplate(); local
180 template.setLocaterInfo(slocator);
182 appendAndPush(handler, template);
187 template.setMatch(rootMatch);
189 // template.setDOMBackPointer(handler.getOriginatingNode());
190 stylesheet.setTemplate(template);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyTemplates.java 48 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a>
82 * Tells if this belongs to a default template,
97 * Set if this belongs to a default template,
122 * recomposed, and allows the template to set remaining
143 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a>
237 // section of each called template.
277 ElemTemplate template = tl.getTemplateFast(xctxt, child, exNodeType, mode, local
280 // If that didn't locate a node, fall back to a default template rule
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DefaultRenderingContext.java 17 package com.google.clearsilver.jsilver.template;
55 private List<Template> executionStack = new ArrayList<Template>(8);
167 public void pushExecutionContext(Template template) {
168 executionStack.add(template);
279 // We do not allow a macro call to change context of the rest of the template.
280 // Since the rest of the template has already been auto-escaped at parse time
  /frameworks/base/core/java/android/text/format/
DateFormat.java 258 String template = context.getString(R.string.numeric_date_template); local
261 value = String.format(template, "yyyy", "MM", "dd");
263 value = String.format(template, "yyyy", "dd", "MM");
267 value = String.format(template, "MM", "dd", "yyyy");
269 value = String.format(template, "MM", "yyyy", "dd");
273 value = String.format(template, "dd", "MM", "yyyy");
275 value = String.format(template, "dd", "yyyy", "MM");
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsCategory.java 60 public AppOpsCategory(AppOpsState.OpsTemplate template) {
62 args.putParcelable("template", template);
124 public AppListLoader(Context context, AppOpsState state, AppOpsState.OpsTemplate template) {
127 mTemplate = template;
351 AppOpsState.OpsTemplate template = null; local
353 template = (AppOpsState.OpsTemplate)fargs.getParcelable("template");
355 return new AppListLoader(getActivity(), mState, template);
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MoreKeysResources.java 88 throw new RuntimeException("Can't find java template " + JAVA_TEMPLATE);
90 throw new RuntimeException("Found multiple java template " + JAVA_TEMPLATE);
91 final String template = list.get(0); local
92 final String javaPackage = template.substring(0, template.lastIndexOf('/'));
105 lnr = new LineNumberReader(new InputStreamReader(JarUtils.openResource(template)));
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 

Completed in 2450 milliseconds

1 23 4 5 6 7