HomeSort by relevance Sort by last modified time
    Searched defs:template (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/WebKitTools/QueueStatusServer/handlers/
dashboard.py 30 from google.appengine.ext.webapp import template namespace
41 self.response.out.write(template.render("templates/dashboard.html", template_values))
patch.py 30 from google.appengine.ext.webapp import template namespace
53 self.response.out.write(template.render("templates/patch.html", template_values))
statusbubble.py 30 from google.appengine.ext.webapp import template namespace
42 self.response.out.write(template.render("templates/statusbubble.html", template_values))
recentstatus.py 30 from google.appengine.ext.webapp import template namespace
57 self.response.out.write(template.render("templates/recentstatus.html", template_values))
updatestatus.py 31 from google.appengine.ext.webapp import template namespace
39 self.response.out.write(template.render("templates/updatestatus.html", None))
  /cts/tools/signature-tools/src/signature/io/html/
ApiOverviewPage.java 64 StringTemplate template = TemplateStore local
66 template.setArgumentContext(commonInfos);
67 template.setAttribute("removed_packages", removedPackages);
68 template.setAttribute("added_packages", addedPackages);
69 template.setAttribute("changed_packages", changedPackages);
70 b.append(template.toString());
PackageOverviewPage.java 64 StringTemplate template = TemplateStore.getStringTemplate(PACGE); local
65 template.setArgumentContext(commonInfos);
66 template.setAttribute("package_delta", delta);
67 template.setAttribute("removed_classes", removedClasses);
68 template.setAttribute("added_classes", addedClasses);
69 template.setAttribute("changed_classes", changedClasses);
70 b.append(template.toString());
ClassOverviewPage.java 167 StringTemplate template = TemplateStore.getStringTemplate(PAGE); local
169 template.setAttribute("class_delta", classDelta);
178 template.setAttribute("has_class_signature_delta", hasSignatureDelta);
180 template.setAttribute("removed_fields", removedFields);
181 template.setAttribute("added_fields", addedFields);
182 template.setAttribute("changed_fields", changedFields);
184 template.setAttribute("removed_annotation_fields",
186 template.setAttribute("added_annotation_fields", addedAnnotationFields);
187 template.setAttribute("changed_annotation_fields",
190 template.setAttribute("removed_enum_constants", removedEnumConstants)
    [all...]
HtmlDeltaExternalizer.java 119 StringTemplate template = TemplateStore.getStringTemplate("Styles"); local
120 template.setAttribute("version", Version.VERSION);
121 writeToFile(directory + STYLE_SHEET_NAME, template.toString());
  /dalvik/vm/compiler/codegen/arm/FP/
ThumbVFP.c 166 TemplateOpCode template; local
171 template = TEMPLATE_INT_TO_FLOAT_VFP;
176 template = TEMPLATE_FLOAT_TO_INT_VFP;
181 template = TEMPLATE_DOUBLE_TO_FLOAT_VFP;
186 template = TEMPLATE_FLOAT_TO_DOUBLE_VFP;
191 template = TEMPLATE_INT_TO_DOUBLE_VFP;
196 template = TEMPLATE_DOUBLE_TO_INT_VFP;
220 genDispatchToHandler(cUnit, template);
234 TemplateOpCode template; local
240 template = TEMPLATE_CMPL_FLOAT_VFP
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
KeyManager.java 63 ElemTemplateElement template = (ElemTemplateElement) nscontext; // yuck -sb local
65 if ((null != template)
66 && null != template.getStylesheetRoot().getKeysComposed())
100 template.getStylesheetRoot().getKeysComposed(),
  /libcore/luni/src/main/java/org/apache/xalan/templates/
TemplateList.java 41 * Encapsulates a template list, and helps locate individual templates.
58 * Add a template to the table of named templates and/or the table of templates
62 * @param template
64 public void setTemplate(ElemTemplate template)
66 XPath matchXPath = template.getMatch();
68 if (null == template.getName() && null == matchXPath)
70 template.error(XSLTErrorResources.ER_NEED_NAME_OR_MATCH_ATTRIB,
71 new Object[]{ "xsl:template" });
74 if (null != template.getName())
76 ElemTemplate existingTemplate = (ElemTemplate) m_namedTemplates.get(template.getName())
79 m_namedTemplates.put(template.getName(), template); local
89 m_namedTemplates.put(template.getName(), template); local
556 ElemTemplate template = head.getTemplate(); local
614 ElemTemplate template = head.getTemplate(); local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 26 from google.appengine.ext.webapp import template namespace
125 self.response.out.write(template.render(path, template_values))
239 self.response.out.write(template.render(path, template_values))
  /external/bluetooth/bluez/audio/
gstsbcdec.c 82 GstPadTemplate *template; local
110 template = gst_static_pad_template_get(&sbc_dec_src_factory);
113 gst_pad_template_get_caps(template));
  /external/bluetooth/glib/tests/
file-test.c 53 char template[32]; local
60 strcpy (template, "foobar");
61 fd = g_mkstemp (template);
63 g_warning ("g_mkstemp works even if template doesn't contain XXXXXX");
66 strcpy (template, "foobarXXX");
67 fd = g_mkstemp (template);
69 g_warning ("g_mkstemp works even if template contains less than six X");
72 strcpy (template, "fooXXXXXX");
73 fd = g_mkstemp (template);
74 g_assert (fd != -1 && "g_mkstemp didn't work for template fooXXXXXX")
    [all...]
  /external/e2fsprogs/tests/progs/
random_exercise.c 73 char template[16] = "EX.XXXXXX"; local
78 mktemp(template);
81 if (mkdir(template, 0700) < 0)
83 fd = open(template, O_RDONLY, 0600);
85 template, fd);
88 fd = open(template, O_CREAT|O_RDWR, 0600);
91 template, fd, size);
98 strcpy(state_array[fd].name, template);
  /external/guava/src/com/google/common/base/
Preconditions.java 95 * @param errorMessageTemplate a template for the exception message should the
97 * placeholder in the template with an argument. These are matched by
102 * template. Arguments are converted to strings using
150 * @param errorMessageTemplate a template for the exception message should the
152 * placeholder in the template with an argument. These are matched by
157 * template. Arguments are converted to strings using
209 * @param errorMessageTemplate a template for the exception message should the
211 * placeholder in the template with an argument. These are matched by
216 * template. Arguments are converted to strings using
393 * Substitutes each {@code %s} in {@code template} with an argument. Thes
    [all...]
  /development/scripts/app_engine_server/gae_shell/
shell.py 51 from google.appengine.ext.webapp import template namespace
170 """Creates a new session and renders the shell.html template.
194 rendered = webapp.template.render(template_file, vars, debug=_DEBUG)
  /external/qemu/android/utils/
tempfile.c 79 #define TEMPLATE "/tmp/.android-emulator-XXXXXX"
81 char template[512]; local
82 char *p = template, *end = p + sizeof(template);
90 D( "template: %s", template );
91 tempfd = mkstemp( template );
97 tempname = template;
  /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++);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 299 String template = context.getString(R.string.numeric_date_template); local
302 value = String.format(template, "yyyy", "MM", "dd");
304 value = String.format(template, "yyyy", "dd", "MM");
308 value = String.format(template, "MM", "dd", "yyyy");
310 value = String.format(template, "MM", "yyyy", "dd");
314 value = String.format(template, "dd", "MM", "yyyy");
316 value = String.format(template, "dd", "yyyy", "MM");
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 157 SpannableString template; local
163 template = new SpannableString("a^1b");
164 template.setSpan("before", 0, 1, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
165 template.setSpan("during", 1, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
166 template.setSpan("after", 3, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
167 template.setSpan("during+after", 1, 4, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
169 result = (Spanned) TextUtils.expandTemplate(template, "foo");
183 result = (Spanned) TextUtils.expandTemplate(template, "");
  /packages/apps/Browser/src/com/android/browser/
FindDialog.java 238 String template = mBrowserActivity.getResources(). local
242 mMatches.setText(template);
  /development/samples/AccessibilityService/src/com/example/android/clockback/
ClockBackService.java 427 // Get the announce template.
430 String template = mContext.getString(resourceId); local
432 // Format the template with the ringer percentage.
445 return String.format(template, volumePercent);
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes.c 337 XVisualInfo *vi, template; local
341 SDL_memset(&template, 0, (sizeof template));
342 template.visualid = SDL_strtol(visual_id, NULL, 0);
343 vi = XGetVisualInfo(SDL_Display, VisualIDMask, &template, &nvis);
    [all...]

Completed in 408 milliseconds

1 2