/external/toybox/toys/lsb/ |
H A D | mktemp.c | 36 char *template = *toys.optargs; local 38 if (!template) template = "tmp.XXXXXX"; 43 template = strchr(template, '/') ? xstrdup(template) 44 : xmprintf("%s/%s", TT.tmpdir, template); 46 if (d_flag ? !mkdtemp(template) : mkstemp(template) == -1) { 49 d_flag ? "directory" : "file", TT.tmpdir, template); [all...] |
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
H A D | CloneConfiguration.java | 25 CloneConfiguration(WebAppContext template) argument 27 _template=template;
|
H A D | AbstractConfiguration.java | 43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception argument
|
H A D | Configuration.java | 80 * Configure an instance of a WebAppContext, based on a template WebAppContext that 82 * @param template The template context 86 public void cloneConfigure (WebAppContext template, WebAppContext context) throws Exception; argument
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
H A D | DelegatingTemplateLoader.java | 17 package com.google.clearsilver.jsilver.template;
|
H A D | Macro.java | 17 package com.google.clearsilver.jsilver.template;
|
H A D | Template.java | 17 package com.google.clearsilver.jsilver.template; 26 * Represents a template that can be rendered with data. 31 * Render the template. 33 * @param data Data to merge with template. 35 * @param resourceLoader ResourceLoader to use instead of the default template one when loading 41 * Render the template with a custom RenderingContext. 50 * @param data Data to merge with template. 57 * Name of template (e.g. mytemplate.cs). 68 * Return the EscapeMode in which this template was generated.
|
H A D | TemplateLoader.java | 17 package com.google.clearsilver.jsilver.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. 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> 45 * on templates. For each variable in the template, this will determine what type of escaping 48 * @param name A name to identify the temporary template i [all...] |
H A D | RenderingContext.java | 17 package com.google.clearsilver.jsilver.template; 27 * State that is shared across a template rendering. 76 * Push a new template onto the current execution context. This is to generate stack traces when 81 void pushExecutionContext(Template template); argument 89 * Sets the current position in the template. Used to help generate error messages. 111 * Returns the ResourceLoader object to use to fetch files needed to render the current template. 116 * Returns the configured AutoEscapeOptions to be used while rendering the current template. 121 * Push a new auto escaping mode onto the context. Any template loads via include() or 122 * evaluateVariable() will use this auto escaping mode when loading the template. 151 * Start an auto escaping context to parse and auto escape template content [all...] |
/external/mesa3d/src/gallium/drivers/i915/ |
H A D | i915_resource.c | 10 const struct pipe_resource *template) 12 if (template->target == PIPE_BUFFER) 13 return i915_buffer_create(screen, template); 15 return i915_texture_create(screen, template, FALSE); 21 const struct pipe_resource *template, 24 if (template->target == PIPE_BUFFER) 27 return i915_texture_from_handle(screen, template, whandle); 9 i915_resource_create(struct pipe_screen *screen, const struct pipe_resource *template) argument 20 i915_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *template, struct winsys_handle *whandle) argument
|
/external/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_resource.c | 37 const struct pipe_resource *template) 39 if (template->target == PIPE_BUFFER) 40 return svga_buffer_create(screen, template); 42 return svga_texture_create(screen, template); 48 const struct pipe_resource *template, 51 if (template->target == PIPE_BUFFER) 54 return svga_texture_from_handle(screen, template, whandle); 36 svga_resource_create(struct pipe_screen *screen, const struct pipe_resource *template) argument 47 svga_resource_from_handle(struct pipe_screen * screen, const struct pipe_resource *template, struct winsys_handle *whandle) argument
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
H A D | dottreegen.py | 52 template=( variable in class:DOTTreeGenerator 65 template="$name$ [label=\"$text$\"];\n" 69 template="$parent$ -> $child$ // \"$parentText$\" -> \"$childText$\"\n" variable in class:DOTTreeGenerator
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/ |
H A D | X500NameBuilder.java | 11 private X500NameStyle template; field in class:X500NameBuilder 19 public X500NameBuilder(X500NameStyle template) argument 21 this.template = template; 26 this.addRDN(oid, template.stringToValue(oid, value)); 51 vals[i] = template.stringToValue(oids[i], values[i]); 85 return new X500Name(template, vals);
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/ |
H A D | Platform.java | 46 static String format(String template, Object... args) { argument 49 template.length() + 16 * args.length); 53 int placeholderStart = template.indexOf("%s", templateStart); 57 builder.append(template.substring(templateStart, placeholderStart)); 61 builder.append(template.substring(templateStart));
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
H A D | Platform.java | 44 static String format(String template, Object... args) { argument 47 template.length() + 16 * args.length); 51 int placeholderStart = template.indexOf("%s", templateStart); 55 builder.append(template.substring(templateStart, placeholderStart)); 59 builder.append(template.substring(templateStart));
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
H A D | Platform.java | 50 static String format(String template, Object... args) { argument 51 return String.format(template, args);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
H A D | Platform.java | 30 * Format the template with args, only supports the placeholder 33 static String format(String template, Object... args) { argument 34 return String.format(template, args);
|
/external/jsilver/src/com/google/clearsilver/jsilver/ |
H A D | TemplateRenderer.java | 22 import com.google.clearsilver.jsilver.template.Template; 27 * Renders a template. 32 * Renders a given template and provided data, writing to an arbitrary output. 34 * @param templateName Name of template to load (e.g. "things/blah.cs"). 35 * @param data Data to be used in template. 36 * @param output Where template should be rendered to. This can be a Writer, PrintStream, 52 * Same as {@link #render(String, Data, Appendable)}, except returns rendered template as a 58 * Renders a given template and provided data, writing to an arbitrary output. 60 * @param template Template to render. 61 * @param data Data to be used in template 68 render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) argument 75 render(Template template, Data data, Appendable output) argument 81 render(Template template, Data data) argument [all...] |
/external/lldb/test/ |
H A D | dosep.ty | 10 # Command template of the invocation of the test driver. 11 template = '%s/dotest.py %s -p %s %s' variable 29 command = template % (test_root, dotest_options if dotest_options else "", name, root)
|
/external/jsilver/src/com/google/clearsilver/jsilver/compatibility/ |
H A D | ClearsilverRenderer.java | 20 import com.google.clearsilver.jsilver.template.Template; 100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader) argument 103 + "template names, not Templates"); 107 public void render(Template template, Data data, Appendable output) throws IOException, argument 109 render(template, data, output, defaultResourceLoader); 113 public String render(Template template, Data data) throws IOException, JSilverException { argument 115 render(template, data, output);
|
/external/lldb/utils/test/ |
H A D | run-dis.py | 27 # Command template of the invocation of lldb disassembler. 28 template = '%s/lldb-disasm.py -C "platform select remote-ios" -o "-n" -q -e %s -n %s' variable 63 command = template % (scriptPath, path, num_symbols if num_symbols > 0 else 1000)
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_staging.c | 33 util_staging_resource_template(struct pipe_resource *pt, unsigned width, unsigned height, unsigned depth, struct pipe_resource *template) argument 35 memset(template, 0, sizeof(struct pipe_resource)); 37 template->target = PIPE_TEXTURE_RECT; 39 template->target = pt->target; 40 template->format = pt->format; 41 template->width0 = width; 42 template->height0 = height; 43 template->depth0 = depth; 44 template->array_size = 1; 45 template [all...] |
/external/mesa3d/src/mapi/glapi/ |
H A D | glapi_entrypoint.c | 140 static const unsigned int template[] = { local 206 code[0] = template[0] | (dispatch >> 10); 207 code[1] = template[1]; 209 code[2] = template[2] | (dispatch & 0x3ff); 210 code[3] = template[3]; 212 code[4] = template[4]; 213 code[5] = template[5]; 215 code[6] = template[6]; 219 code[0] = template[0] | (dispatch >> (32 + 10)); 220 code[1] = template[ 270 static const unsigned int template[] = { local [all...] |
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/ |
H A D | gen_xmlpool.py | 156 # Process the options template and generate options.h with all 158 template = file ("t_options.h", "r") variable 160 for line in template:
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowTextUtils.java | 14 public static CharSequence expandTemplate(CharSequence template, argument 16 String s = template.toString();
|