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

1 2 3 4 5 6 7 8 910

  /external/libvpx/examples/
gen_example_text.sh 51 read -r template < "$txt"
52 case "$template" in
53 @TEMPLATE*) template=${txt%/*}/${template##@TEMPLATE } ;;
54 *) die "Failed to parse template name from '$template'" ;;
63 @TEMPLATE*)
64 template=${template##@TEMPLATE
    [all...]
gen_example_code.sh 45 include_block $show_bar < "${template%.c}.txt"
71 read -r template < "$txt"
72 case "$template" in
73 @TEMPLATE*) template=${txt%/*}/${template##@TEMPLATE } ;;
74 *) die "Failed to parse template name from '$template'" ;;
80 || include_block < "${template%.c}.txt"
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DelegatingTemplateLoader.java 17 package com.google.clearsilver.jsilver.template;
Macro.java 17 package com.google.clearsilver.jsilver.template;
22 * An executable macro. This exhibits all the same characteristics of a Template.
24 public interface Macro extends Template {
  /external/astl/include/
limits 47 // Template to return the number of decimal digits in a number
50 template<typename T, T bits, bool is_signed> struct digits10 {
56 template<> struct digits10<int, 8, false> { static const int value = 3; };
57 template<> struct digits10<int, 8, true> { static const int value = 3; };
58 template<> struct digits10<int, 16, false> { static const int value = 5; };
59 template<> struct digits10<int, 16, true> { static const int value = 5; };
60 template<> struct digits10<int, 32, false> { static const int value = 10; };
61 template<> struct digits10<int, 32, true> { static const int value = 10; };
62 template<> struct digits10<int, 64, false> { static const int value = 20; };
63 template<> struct digits10<int, 64, true> { static const int value = 19; }
    [all...]
algorithm 43 // This file contains the following template functions:
52 template<typename _T> inline const _T& min(const _T& left, const _T& right)
58 template<typename _T> inline const _T& max(const _T& left, const _T& right)
64 template<typename _T> inline void swap(_T& left, _T& right)
75 template<typename _Category>
77 template<typename _InputIterator, typename _OutputIterator>
89 template<>
91 template<typename _InputIterator, typename _OutputIterator>
116 template<typename _InputIterator, typename _OutputIterator>
135 template<bool> struct __fil
    [all...]
functional 40 template <class _Arg, class _Result>
46 template <class _Arg1, class _Arg2, class _Result>
56 template <typename _T> \
memory 57 template<bool, typename _InputIteratorTag, typename _ForwardIteratorTag>
60 template<typename _InputIterator, typename _ForwardIterator>
75 template<>
80 template<typename _InputIterator, typename _ForwardIterator>
109 template<> struct __uninitialized_copy<true,
113 template<typename _InputIterator, typename _ForwardIterator>
125 template<typename _InputIterator, typename _ForwardIterator>
149 template<bool> struct __uninitialized_fill
151 template<typename _ForwardIterator, typename _T>
161 template<> struct __uninitialized_fill<true
    [all...]
  /frameworks/base/core/java/android/net/
INetworkStatsSession.aidl 26 /** Return network layer usage summary for traffic that matches template. */
27 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
28 /** Return historical network layer stats for traffic that matches template. */
29 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields);
31 /** Return network layer usage summary per UID for traffic that matches template. */
32 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
33 /** Return historical network layer stats for specific UID traffic that matches template. */
34 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
NetworkPolicy.java 38 public final 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.hashCode(template, cycleDay, cycleTimezone, warningBytes, limitBytes,
163 && Objects.equal(template, other.template)
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
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());
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/webkit/Tools/RebaselineQueueServer/handlers/
pages.py 30 from google.appengine.ext.webapp import template namespace
39 template.render("templates/home.html", {
47 template.render("templates/builder-picker.html", {}))
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 186 // Template to store custom topics in a table.
187 var template = [];
192 template.push('<tr style = "height: 22px;">');
193 template.push('<td id = "keyword_value" class = "cusTopicsClass">');
194 template.push('<textarea class="noborder" readonly>');
195 template.push(keywords[i]);
196 template.push('</textarea>');
197 template.push('<td class = "suppr" onclick = "delCusTopic(this)" ');
198 template.push('title="');
199 template.push(title)
    [all...]
  /packages/apps/Settings/src/com/android/settings/net/
NetworkPolicyEditor.java 105 public boolean hasLimitedPolicy(NetworkTemplate template) {
106 final NetworkPolicy policy = getPolicy(template);
110 public NetworkPolicy getOrCreatePolicy(NetworkTemplate template) {
111 NetworkPolicy policy = getPolicy(template);
113 policy = buildDefaultPolicy(template);
119 public NetworkPolicy getPolicy(NetworkTemplate template) {
121 if (policy.template.equals(template)) {
129 private static NetworkPolicy buildDefaultPolicy(NetworkTemplate template) {
135 if (template.getMatchRule() == MATCH_WIFI)
248 final NetworkTemplate template = policy.template; local
    [all...]
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...]
  /dalvik/vm/compiler/template/
rebuild.sh 22 for arch in ia32 armv5te armv5te-vfp armv7-a armv7-a-neon; do TARGET_ARCH_EXT=$arch make -f Makefile-template; done
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 41 * Format the template with args, only supports the placeholder
44 static String format(String template, Object... args) {
45 return String.format(template, args);
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 643 * HTML templates. The template is edited in place. I.e. in order to
644 * instantiate a template, clone it from the DOM first, and then
645 * process the cloned template. This allows for updating of templates:
659 * fragment that is used as template.
729 * @param {Element} template DOM node of the template.
733 JsExprContext.prototype.jseval = function(expr, template) {
739 }).call(template);
753 * object in a list for which a template is instantiated multiply.
793 * function will be inserted into the template instance bein
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/
X500NameBuilder.java 10 private X500NameStyle template; field in class:X500NameBuilder
13 public X500NameBuilder(X500NameStyle template)
15 this.template = template;
20 this.addRDN(oid, template.stringToValue(oid, value));
45 vals[i] = template.stringToValue(oids[i], values[i]);
79 return new X500Name(template, vals);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
jstemplate.js 18 * HTML templates. The template is edited in place. I.e. in order to
19 * instantiate a template, clone it from the DOM first, and then
20 * process the cloned template. This allows for updating of templates:
34 * fragment that is used as template.
49 * template processing attribute values on a template node.
55 * Name of the property that caches the parsed template processing
56 * attribute values on a template node.
82 * HTML template processor. Data values are bound to HTML templates
84 * jsvalues. The template is modifed in place. The values of those
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
jstemplate.js 18 * HTML templates. The template is edited in place. I.e. in order to
19 * instantiate a template, clone it from the DOM first, and then
20 * process the cloned template. This allows for updating of templates:
34 * fragment that is used as template.
49 * template processing attribute values on a template node.
55 * Name of the property that caches the parsed template processing
56 * attribute values on a template node.
82 * HTML template processor. Data values are bound to HTML templates
84 * jsvalues. The template is modifed in place. The values of thos
    [all...]
  /external/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);
  /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);

Completed in 655 milliseconds

1 2 3 4 5 6 7 8 910