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

1 2 3 4 5 6 7 8

  /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/
INetworkStatsService.aidl 26 /** Return historical network layer stats for traffic that matches template. */
27 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields);
28 /** Return historical network layer stats for specific UID traffic that matches template. */
29 NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int fields);
31 /** Return network layer usage summary for traffic that matches template. */
32 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end);
33 /** Return network layer usage summary per UID for traffic that matches template. */
34 NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includeTags);
NetworkPolicy.java 37 public final NetworkTemplate template; field in class:NetworkPolicy
45 public NetworkPolicy(NetworkTemplate template, int cycleDay, long warningBytes, long limitBytes,
47 this.template = checkNotNull(template, "missing NetworkTemplate");
55 template = in.readParcelable(null);
64 dest.writeParcelable(template, flags);
102 return Objects.hashCode(template, cycleDay, warningBytes, limitBytes, lastSnooze);
109 return Objects.equal(template, other.template) && cycleDay == other.cycleDay
118 return "NetworkPolicy[" + template + "]: cycleDay=" + cycleDay + ", warningBytes=
    [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...]
  /packages/apps/Settings/src/com/android/settings/net/
NetworkPolicyEditor.java 82 if (policy.template.getMatchRule() == MATCH_WIFI) {
119 public boolean hasLimitedPolicy(NetworkTemplate template) {
120 final NetworkPolicy policy = getPolicy(template);
124 public NetworkPolicy getOrCreatePolicy(NetworkTemplate template) {
125 NetworkPolicy policy = getPolicy(template);
127 policy = buildDefaultPolicy(template);
133 public NetworkPolicy getPolicy(NetworkTemplate template) {
135 if (policy.template.equals(template)) {
142 private static NetworkPolicy buildDefaultPolicy(NetworkTemplate template) {
205 final NetworkTemplate template = policy.template; local
    [all...]
ChartDataLoader.java 37 private static final String KEY_TEMPLATE = "template";
44 public static Bundle buildArgs(NetworkTemplate template, int[] uids) {
45 return buildArgs(template, uids, FIELD_RX_BYTES | FIELD_TX_BYTES);
48 public static Bundle buildArgs(NetworkTemplate template, int[] uids, int fields) {
50 args.putParcelable(KEY_TEMPLATE, template);
70 final NetworkTemplate template = mArgs.getParcelable(KEY_TEMPLATE); local
75 return loadInBackground(template, uids, fields);
83 private ChartData loadInBackground(NetworkTemplate template, int[] uids, int fields)
86 data.network = mStatsService.getHistoryForNetwork(template, fields);
92 // load stats for current uid and template
    [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...]
  /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/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);
  /frameworks/base/tests/DataIdleTest/src/com/android/tests/dataidle/
DataIdleTest.java 55 NetworkTemplate template = NetworkTemplate.buildTemplateWifi(); local
56 fetchStats(template);
64 NetworkTemplate template = NetworkTemplate.buildTemplateMobileAll(subscriberId); local
65 fetchStats(template);
71 * @param template {link {@link NetworkTemplate} to match.
73 private void fetchStats(NetworkTemplate template) {
76 NetworkStats stats = mStatsService.getSummaryForAllUid(template, Long.MIN_VALUE,
  /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 262 milliseconds

1 2 3 4 5 6 7 8