/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
|
/packages/apps/Music/src/com/android/music/ |
CreatePlaylist.java | 130 String template = getString(R.string.new_playlist_name_template); local 147 suggestedname = String.format(template, num++); 161 suggestedname = String.format(template, num++);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
timeit.py | 77 # Don't change the indentation of the template; the reindent() calls 80 template = """ 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()'} 163 in the compiled template will be displayed. 248 (including the template compilation) are not caught.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
timeit.py | 77 # Don't change the indentation of the template; the reindent() calls 80 template = """ 129 src = template % {'stmt': stmt, 'setup': setup} 131 src = template % {'stmt': stmt, 'setup': '_setup()'} 163 in the compiled template will be displayed. 248 (including the template compilation) are not caught.
|
/system/media/camera/docs/ |
metadata_parser_xml.py | 21 over a Mako template. 24 metadata_parser_xml.py <filename.xml> <template.mako> [<output_file>] 25 - outputs the resulting template to output_file (stdout if none specified) 34 Mako - a template engine for Python, available to download from 45 from mako.template import Template 58 Mako template. 243 def render(self, template, output_name=None): 245 Render the metadata model using a Mako template as the view. 247 The template gets the metadata as an argument, as well as al [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewTemplatePage.java | 95 * First wizard page in the "New Project From Template" wizard (which is parameterized 96 * via template.xml files) 168 TemplateMetadata template = mValues.getTemplateHandler().getTemplate(); local 169 if (template == mShowingTemplate) { 172 mShowingTemplate = template; 215 if (template != null) { 216 thumb = template.getThumbnailPath(); 217 String title = template.getTitle(); 221 String description = template.getDescription(); 232 List<Parameter> parameters = template.getParameters() 758 TemplateMetadata template = mValues.getTemplateHandler().getTemplate(); local 770 TemplateMetadata template = mValues.getTemplateHandler().getTemplate(); local [all...] |
TemplateHandler.java | 54 import freemarker.template.Configuration; 55 import freemarker.template.DefaultObjectWrapper; 56 import freemarker.template.Template; 57 import freemarker.template.TemplateException; 134 * where all template specific resources are found 139 * Directory within the template which contains the resources referenced 140 * from the template.xml file 150 /** Reserved filename which describes each template */ 151 static final String TEMPLATE_XML = "template.xml"; //$NON-NLS-1 667 Template template = freemarker.getTemplate(from.getName()); local 899 Template template = freemarker.getTemplate(from.getName()); local 1128 TemplateMetadata template = getTemplate(); local [all...] |
InstallDependencyPage.java | 50 * template will be flagged as a validation error (and the user encouraged 69 void setTemplate(TemplateMetadata template) { 70 if (template != mTemplate) { 71 mTemplate = template; 99 dependLabel.setText("This template depends on the Android Support library, which is " + 100 "either not installed, or the template depends on a more recent version than " + 244 "Unsupported template dependency: Upgrade your Android Eclipse plugin");
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerImpl.java | 188 * so a tool can discover the calling template. Note the use of an array 202 * so a tool can discover the matched template 322 * A stack of current template modes. [all...] |
/development/build/ |
sdk.atree | 148 development/tools/templates/AndroidManifest.template platforms/${PLATFORM_NAME}/templates/AndroidManifest.template 149 development/tools/templates/AndroidManifest.tests.template platforms/${PLATFORM_NAME}/templates/AndroidManifest.tests.template 150 development/tools/templates/java_file.template platforms/${PLATFORM_NAME}/templates/java_file.template 151 development/tools/templates/java_tests_file.template platforms/${PLATFORM_NAME}/templates/java_tests_file.template 152 development/tools/templates/layout.template platforms/${PLATFORM_NAME}/templates/layout.template [all...] |
/external/chromium_org/chrome/browser/resources/ |
flags.js | 6 * This variable structure is here to document the structure that the template 18 // This is the javascript code that processes the template: 60 * don't actually exist until after the template code runs; normal navigation
|
/external/chromium_org/chrome/installer/mac/ |
keystone_install.sh | 108 # Choose a template that won't be a dot directory. Make it safe by 110 local template="${ME}" 111 if [[ "${template}" =~ ^[-.]+(.*)$ ]]; then 112 template="${BASH_REMATCH[1]}" 114 if [[ -z "${template}" ]]; then 115 template="keystone_install" 118 g_temp_dir="$(mktemp -d -t "${template}")" [all...] |
/external/chromium_org/v8/src/ |
apinatives.js | 52 // Note: Do not directly use a function template as a condition, our 83 // Note: Do not directly use an object template as a condition, our 92 // Note: Do not directly use a function template as a condition, our
|
/external/v8/src/ |
apinatives.js | 52 // Note: Do not directly use a function template as a condition, our 80 // Note: Do not directly use an object template as a condition, our 89 // Note: Do not directly use a function template as a condition, our
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
generate_make.py | 147 srcpath = os.path.join(SDK_RESOURCE_DIR, 'manifest.json.template') 216 template = os.path.join(SDK_RESOURCE_DIR, 'Makefile.example.template') 218 template = os.path.join(SDK_RESOURCE_DIR, 'Makefile.library.template') 237 RunTemplateFileIfChanged(template, make_path, template_dict) 256 in_path = os.path.join(SDK_RESOURCE_DIR, 'Makefile.index.template')
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
v8_types.py | 284 def cpp_template_type(template, inner_type): 285 """Returns C++ template specialized to type, with space added if needed.""" 287 format_string = '{template}<{inner_type} >' 289 format_string = '{template}<{inner_type}>' 290 return format_string.format(template=template, inner_type=inner_type)
|
/external/chromium_org/tools/grit/grit/gather/ |
tr_html.py | 21 we want to make sure we output the TotalRecall template with as little changes 25 TotalRecall template stuff is quite brittle and can break if e.g. a tab 28 The solution, which may be applicable to some other HTML-like template 603 '''Represents a document or message in the template format used by
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
ST.stg | 28 /** Template subgroup to add template rewrite output 262 /** x+=rule when output=template */ 271 // TEMPLATE REWRITE 319 /** Invoke a template with a set of attribute name/value pairs. 320 * Set the value of the rule's template *after* having set 321 * the attributes because the rule's template might be used as 322 * an attribute to build a bigger template; you get a self-embedded 323 * template. 332 /** expr is a string expression that says what template to load * [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
jsevalcontext.js | 214 * of vars, data, and template.
219 * @param {Element} template DOM node of the template.
223 * the context of template.
225 JsEvalContext.prototype.jsexec = function(exprFunction, template) {
227 return exprFunction.call(template, this.vars_, this.data_);
229 log('jsexec EXCEPTION: ' + e + ' at ' + template +
241 * object in a list for which a template is instantiated multiply.
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
jsevalcontext.js | 214 * of vars, data, and template. 219 * @param {Element} template DOM node of the template. 223 * the context of template. 225 JsEvalContext.prototype.jsexec = function(exprFunction, template) { 227 return exprFunction.call(template, this.vars_, this.data_); 229 log('jsexec EXCEPTION: ' + e + ' at ' + template + 241 * object in a list for which a template is instantiated multiply.
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
gmock_class.py | 78 '// type has multiple template arguments. To fix it, use a',
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/jst/ |
jsevalcontext.js | 214 * of vars, data, and template. 219 * @param {Element} template DOM node of the template. 223 * the context of template. 225 JsEvalContext.prototype.jsexec = function(exprFunction, template) { 227 return exprFunction.call(template, this.vars_, this.data_); 229 log('jsexec EXCEPTION: ' + e + ' at ' + template + 241 * object in a list for which a template is instantiated multiply.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/ |
jsevalcontext.js | 214 * of vars, data, and template. 219 * @param {Element} template DOM node of the template. 223 * the context of template. 225 JsEvalContext.prototype.jsexec = function(exprFunction, template) { 227 return exprFunction.call(template, this.vars_, this.data_); 229 log('jsexec EXCEPTION: ' + e + ' at ' + template + 241 * object in a list for which a template is instantiated multiply.
|
/external/chromium_org/third_party/jstemplate/ |
jsevalcontext.js | 214 * of vars, data, and template. 219 * @param {Element} template DOM node of the template. 223 * the context of template. 225 JsEvalContext.prototype.jsexec = function(exprFunction, template) { 227 return exprFunction.call(template, this.vars_, this.data_); 229 log('jsexec EXCEPTION: ' + e + ' at ' + template + 241 * object in a list for which a template is instantiated multiply.
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
Makefile | 15 include ../../Makefile.template
|