/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...] |
iterator | 49 template<typename _Category, typename _T, typename _Distance = ptrdiff_t, 61 // template argument. 62 template<typename _Iterator> 74 template<typename _T> 84 template<typename _T> 97 template<typename _Iterator, typename _Container> 114 template<typename _Iter> 169 template<typename _IteratorL, typename _IteratorR, typename _Container> 175 template<typename _Iterator, typename _Container> 181 template<typename _IteratorL, typename _IteratorR, typename _Container [all...] |
vector | 59 template<typename _T> 89 template<typename _Iterator> 91 // Because of template matching, vector<int>(int n, int val) 94 // template parameter is an integral type and not an iterator, 193 template<typename _Iterator> 198 template<typename _InputIterator> 204 template<typename _Integral> 212 template<typename _InputIterator> 246 template<typename _T> 250 template<typename _T [all...] |
/external/opencore/oscl/oscl/osclproc/src/ |
oscl_double_list.inl | 19 template <class T> 22 template <class T> 26 template <class T> 31 template <class T> 36 template <class T> 41 template <class T> 46 template <class T> 52 template <class T> 60 template <class T> 63 template <class T [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...] |
/dalvik/vm/compiler/template/ |
rebuild.sh | 22 for arch in armv5te armv5te-vfp armv7-a armv7-a-neon; do TARGET_ARCH_EXT=$arch make -f Makefile-template; done
|
/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))
|
statusbubble.py | 30 from google.appengine.ext.webapp import template namespace 42 self.response.out.write(template.render("templates/statusbubble.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))
|
recentstatus.py | 30 from google.appengine.ext.webapp import template namespace 57 self.response.out.write(template.render("templates/recentstatus.html", template_values))
|
/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);
|
functional | 56 template<class T> class reference_wrapper; 57 template<class T> reference_wrapper<T> const ref(T &); 58 template<class T> inline reference_wrapper<T const> const cref(T const &); 60 template<typename F> struct result_of; 63 template<class R, class T> class dm; 66 template<class R, class T> _mfi::dm<R, T> mem_fn(R T::*f); 123 template<typename Signature, typename Allocator > 125 template<typename Signature, typename Allocator>
|
locale | 82 template <class _CharT> 86 template <class _CharT> 90 template <class _CharT> 94 template <class _CharT> 98 template <class _CharT> 102 template <class _CharT> 106 template <class _CharT> 110 template <class _CharT> 114 template <class _CharT> 118 template <class _CharT> [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
Format.java | 90 String convertPattern(String template, String fromChars, String toChars, 93 return template; 97 int length = template.length(); 100 char next = template.charAt(i); 111 "text.05", String.valueOf(next), template)); //$NON-NLS-1$
|
SimpleDateFormat.java | 387 * @param template 395 private void validatePattern(String template) { 399 final int patternLength = template.length(); 401 next = (template.charAt(i)); 450 * @param template 459 public SimpleDateFormat(String template, DateFormatSymbols value) { 461 validatePattern(template); 463 // icuFormat = new com.ibm.icu.text.SimpleDateFormat(template, Locale.getDefault()); 466 pattern = template; 488 * @param template [all...] |
/dalvik/libcore/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/webkit/WebKitTools/QueueStatusServer/filters/ |
webkit_extras.py | 31 from django.template.defaultfilters import stringfilter 34 register = webapp.template.create_template_register()
|
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/ |
ElemApplyTemplates.java | 48 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a> 82 * Tells if this belongs to a default template, 97 * Set if this belongs to a default template, 122 * recomposed, and allows the template to set remaining 143 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a> 237 // section of each called template. 277 ElemTemplate template = tl.getTemplateFast(xctxt, child, exNodeType, mode, local 280 // If that didn't locate a node, fall back to a default template rule [all...] |
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...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/ |
LocalizedMessage.java | 80 String template = bundle.getString(entry); local 83 return template; 87 return formatWithTimeZone(template,filteredArguments,loc,timezone); 99 String template, 106 mf.applyPattern(template);
|