HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 26 - 50 of 605) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/winsys/sw/wrapper/
Makefile 12 include ../../../Makefile.template
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
FmExtractLettersMethod.java 18 import freemarker.template.SimpleScalar;
19 import freemarker.template.TemplateMethodModel;
20 import freemarker.template.TemplateModel;
21 import freemarker.template.TemplateModelException;
  /external/jetty/src/java/org/eclipse/jetty/webapp/
CloneConfiguration.java 25 CloneConfiguration(WebAppContext template)
27 _template=template;
AbstractConfiguration.java 43 public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception
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;
  /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());
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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500NameBuilder.java 11 private X500NameStyle template; field in class:X500NameBuilder
19 public X500NameBuilder(X500NameStyle template)
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/
Platform.java 46 static String format(String template, Object... args) {
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/
Platform.java 44 static String format(String template, Object... args) {
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));
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /frameworks/base/core/java/android/net/
NetworkPolicy.java 38 public NetworkTemplate template; field in class:NetworkPolicy
51 public NetworkPolicy(NetworkTemplate template, int cycleDay, String cycleTimezone,
53 this(template, cycleDay, cycleTimezone, warningBytes, limitBytes, SNOOZE_NEVER,
57 public NetworkPolicy(NetworkTemplate template, int cycleDay, String cycleTimezone,
60 this.template = checkNotNull(template, "missing NetworkTemplate");
72 template = in.readParcelable(null);
85 dest.writeParcelable(template, flags);
149 return Objects.hash(template, cycleDay, cycleTimezone, warningBytes, limitBytes,
163 && Objects.equals(template, other.template)
    [all...]
  /packages/apps/Settings/src/com/android/settings/net/
ChartDataLoader.java 40 private static final String KEY_TEMPLATE = "template";
47 public static Bundle buildArgs(NetworkTemplate template, AppItem app) {
48 return buildArgs(template, app, FIELD_RX_BYTES | FIELD_TX_BYTES);
51 public static Bundle buildArgs(NetworkTemplate template, AppItem app, int fields) {
53 args.putParcelable(KEY_TEMPLATE, template);
73 final NetworkTemplate template = mArgs.getParcelable(KEY_TEMPLATE); local
78 return loadInBackground(template, app, fields);
86 private ChartData loadInBackground(NetworkTemplate template, AppItem app, int fields)
89 data.network = mSession.getHistoryForNetwork(template, fields);
92 // load stats for current uid and template
    [all...]
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
routes.py 77 The template follows the same syntax used by :class:`webapp2.Route` and
84 def __init__(self, template, routes):
87 :param template:
88 A route template to match against ``environ['SERVER_NAME']``.
94 self.template = template
113 webapp2._parse_route_template(self.template,
194 _attr = 'template'
233 def __init__(self, template, handler=None, name=None, defaults=None,
275 template, handler=handler, name=name, defaults=defaults
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Platform.java 50 static String format(String template, Object... args) {
51 return String.format(template, args);
  /ndk/sources/cxx-stl/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
memory 75 template<class T> class shared_ptr;
76 template<class T> class weak_ptr;
77 template<class T> class enable_shared_from_this;
78 template<class D, class T> D * get_deleter(shared_ptr<T> const & p);
79 template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r);
80 template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r);
81 template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r);
82 template<class T> void swap(weak_ptr<T> & a, weak_ptr<T> & b);
83 template<class T> void swap(shared_ptr<T> & a, shared_ptr<T> & b);
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
template-output.rb 24 out = @parser.send( rule ).template
29 ANTLR3::Template::Group.parse( source.fixed_indent( 0 ) )
38 output = template;
42 -> template(id={$ID.text}, int={$INT.text})
54 example 'external template' do
55 templates = ANTLR3::Template::Group.new do
65 output = template;
71 arg: ID -> template(t={$ID.text}) "<%= @t %>";
81 example "empty template" do
86 output=template;
    [all...]
  /external/apache-xml/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(),
  /external/jsilver/src/com/google/clearsilver/jsilver/
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
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
Makefile 18 include ../../Makefile.template

Completed in 8439 milliseconds

12 3 4 5 6 7 8 91011>>