/external/stlport/src/ |
locale_impl.h | 33 //If we are using pointer specialization, vector<locale::facet*> will use 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; 39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > [all...] |
dll_main.cpp | 137 template class _STLP_CLASS_DECLSPEC allocator<locale::facet*>; 140 template class _STLP_CLASS_DECLSPEC _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 141 template class _STLP_CLASS_DECLSPEC _Vector_base<locale::facet*, allocator<locale::facet*> >; 148 template class _STLP_CLASS_DECLSPEC __construct_checker<_STLP_PRIV _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 149 template class _STLP_CLASS_DECLSPEC _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; [all...] |
locale_impl.cpp | 36 locale::facet * _STLP_CALL _get_facet(locale::facet *f) 43 void _STLP_CALL _release_facet(locale::facet *&f) 110 //facets with a reference counter telling to _release_facet when the facet can be 126 locale::facet* _Locale_impl::insert(locale::facet *f, const locale::id& n) { 163 locale::facet* ct = 0; 164 locale::facet* cvt = 0; 166 locale::facet* wct = 0; 167 locale::facet* wcvt = 0 [all...] |
locale.cpp | 42 locale::facet::~facet() {} 61 string what = "Unable to find facet"; 69 const char* name, const char* facet) { 74 what += facet; 75 what += " facet category, unable to create facet for "; 86 what = "Unable to create facet "; 87 what += facet; 127 void locale::_M_insert(facet* f, locale::id& n) [all...] |
monetary.cpp | 48 moneypunct<char, true>::moneypunct(size_t __refs) : locale::facet(__refs) 62 moneypunct<char, false>::moneypunct(size_t __refs) : locale::facet(__refs) 78 moneypunct<wchar_t, true>::moneypunct(size_t __refs) : locale::facet(__refs) 98 moneypunct<wchar_t, false>::moneypunct(size_t __refs) : locale::facet(__refs)
|
message_facets.h | 31 // a message string is always a char*. We need a ctype facet to convert 33 // a facet when calling open().
|
messages.cpp | 32 // Don't bother to do anything unless we're using a non-default ctype facet 189 : locale::facet(refs) {} 218 : locale::facet(refs) {}
|
/external/libxml2/include/libxml/ |
xmlschemastypes.h | 51 xmlSchemaFacetPtr facet, 55 xmlSchemaValidateFacetWhtsp (xmlSchemaFacetPtr facet, 66 xmlSchemaCheckFacet (xmlSchemaFacetPtr facet, 71 xmlSchemaFreeFacet (xmlSchemaFacetPtr facet); 78 xmlSchemaValidateListSimpleTypeFacet (xmlSchemaFacetPtr facet, 92 xmlSchemaGetFacetValueAsULong (xmlSchemaFacetPtr facet); 95 xmlSchemaFacetPtr facet, 100 xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet,
|
schemasInternals.h | 399 struct _xmlSchemaFacetLink *next;/* the next facet link ... */ 400 xmlSchemaFacetPtr facet;/* the linked facet */ member in struct:_xmlSchemaFacetLink 549 * a whitespace-facet value of "preserve" 555 * a whitespace-facet value of "replace" 561 * a whitespace-facet value of "collapse" 799 * unknown facet handling 805 * preserve the type of the facet 811 * replace the type of the facet 817 * collapse the types of the facet [all...] |
/external/stlport/stlport/stl/ |
_locale.h | 78 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base { class in class:locale 82 * have lower sizeof and generate roll issues. 1 is enough to keep the facet 84 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {} function in class:locale::facet 85 virtual ~facet(); 88 friend facet * _STLP_CALL _get_facet( facet * ); 89 friend void _STLP_CALL _release_facet( facet *& ); 92 facet(const facet& ) /* : _Refcount_Base(1) {} */; 93 void operator=(const facet&) [all...] |
_collate.h | 43 class _STLP_CLASS_DECLSPEC collate<char> : public locale::facet { 48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} 79 class _STLP_CLASS_DECLSPEC collate<wchar_t> : public locale::facet { 84 explicit collate(size_t __refs = 0) : locale::facet(__refs) {}
|
_numpunct.h | 48 class _STLP_CLASS_DECLSPEC numpunct<char> : public locale::facet { 54 : locale::facet(__refs) {} 77 class _STLP_CLASS_DECLSPEC numpunct<wchar_t> : public locale::facet { 83 : locale::facet(__refs) {}
|
_time_facets.h | 131 class time_get : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> { 136 explicit time_get(size_t __refs = 0) : locale::facet(__refs) 160 : locale::facet(__refs), _STLP_PRIV time_init<_Ch>(__name) 221 // time_put facet 248 class time_put : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> { 253 explicit time_put(size_t __refs = 0) : locale::facet(__refs) 268 : locale::facet(__refs), _STLP_PRIV time_init<_Ch>(__name)
|
_monetary.h | 54 class money_get : public locale::facet { 60 explicit money_get(size_t __refs = 0) : locale::facet(__refs) {} 86 class _STLP_CLASS_DECLSPEC moneypunct<char, true> : public locale::facet, public money_base { 125 class _STLP_CLASS_DECLSPEC moneypunct<char, false> : public locale::facet, public money_base { 168 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, true> : public locale::facet, public money_base { 207 class _STLP_CLASS_DECLSPEC moneypunct<wchar_t, false> : public locale::facet, public money_base { 388 class money_put : public locale::facet { 394 explicit money_put(size_t __refs = 0) : locale::facet(__refs) {}
|
_codecvt.h | 46 class codecvt : public locale::facet, public codecvt_base { 53 /* For the moment VC6 do not support this facet default implementation 60 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} 174 : public locale::facet, public codecvt_base { 180 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} 271 : public locale::facet, public codecvt_base { 277 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {}
|
_messages_facets.h | 55 class _STLP_CLASS_DECLSPEC messages<char> : public locale::facet, public messages_base { 88 class _STLP_CLASS_DECLSPEC messages<wchar_t> : public locale::facet, public messages_base {
|
_num_put.h | 49 // num_put facet 52 class num_put: public locale::facet { 57 explicit num_put(size_t __refs = 0) : locale::facet(__refs) {}
|
_ctype.h | 64 class _STLP_CLASS_DECLSPEC ctype<char> : public locale::facet, public ctype_base { 177 class _STLP_CLASS_DECLSPEC ctype<wchar_t> : public locale::facet, public ctype_base { 181 explicit ctype(size_t __refs = 0) : locale::facet(__refs) {}
|
/external/stlport/doc/ |
README.utf8 | 3 the C++ Standard library is handle by the codecvt locale facet which is part 23 is to specifically signal that the codecvt facet should be based on utf8 35 You can also access the facet directly to perform utf8 encoding/decoding operations:
|
README.borland | 123 1. If you extend a locale facet based on a Standard facet definition you will 124 have to grant your own facet id defition. Ex extracted from 143 // Mandatory locale facet id definition:
|
/external/stlport/stlport/using/ |
locale | 28 // _lib.category.ctype_ and _lib.facet.ctype.special_, ctype: 36 // _lib.category.numeric_ and _lib.facet.numpunct_, numeric:
|
/external/libxml2/ |
xmlschemastypes.c | 647 * @facetType: the facet type 649 * Evaluates if a specific facet can be 652 * Returns 1 if the facet can be used with the given built-in type, [all...] |
xmlschemas.c | 1783 xmlSchemaFacetPtr facet; local 3949 xmlSchemaFacetPtr facet, next; local 6614 xmlSchemaFacetPtr facet; local 11627 xmlSchemaFacetPtr facet, lastfacet = NULL; local 15204 xmlSchemaFacetPtr facet; local 15280 xmlSchemaFacetPtr facet; local 15391 xmlSchemaFacetPtr facet; local 15579 xmlSchemaFacetPtr facet; local 17125 xmlSchemaFacetPtr facet, bfacet, local 18748 xmlSchemaFacetPtr facet = typeDecl->facets; local 18762 facet = facet->next; local 24063 xmlSchemaFacetPtr facet; local [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
DOMSerializer.java | 30 * The DOMSerializer is a facet of a serializer and is obtained from the
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/sdk/ |
TestLayoutDevicesXsd.java | 259 "cvc-minInclusive-valid: Value '0' is not facet-valid with respect to minInclusive '1'.*");
276 "cvc-minInclusive-valid: Value '-5' is not facet-valid with respect to minInclusive '1'.*");
293 "cvc-minExclusive-valid: Value '0' is not facet-valid with respect to minExclusive '0.0E1'.*");
311 "cvc-minExclusive-valid: Value '-3.1415926538' is not facet-valid with respect to minExclusive '0.0E1'.*");
|