Searched refs:ctype (Results 1 - 25 of 753) sorted by relevance

1234567891011>>

/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/
H A Dtypes.pass.cpp13 // class ctype<char>
29 assert(std::has_facet<std::ctype<char> >(l));
30 const std::ctype<char>& f = std::use_facet<std::ctype<char> >(l);
32 (void)std::ctype<char>::id;
34 static_assert((std::is_same<std::ctype<char>::char_type, char>::value), "");
35 static_assert((std::is_base_of<std::ctype_base, std::ctype<char> >::value), "");
36 static_assert((std::is_base_of<std::locale::facet, std::ctype<char> >::value), "");
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/
H A Dtypes.pass.cpp13 // class ctype
29 assert(std::has_facet<std::ctype<wchar_t> >(l));
30 const std::ctype<wchar_t>& f = std::use_facet<std::ctype<wchar_t> >(l);
32 (void)std::ctype<wchar_t>::id;
34 static_assert((std::is_same<std::ctype<wchar_t>::char_type, wchar_t>::value), "");
35 static_assert((std::is_base_of<std::ctype_base, std::ctype<wchar_t> >::value), "");
36 static_assert((std::is_base_of<std::locale::facet, std::ctype<wchar_t> >::value), "");
H A Dctor.pass.cpp12 // template <class charT> class ctype;
14 // explicit ctype(size_t refs = 0);
21 : public std::ctype<C>
27 : std::ctype<C>(refs) {++count;}
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
H A Ddtor.pass.cpp12 // template <> class ctype<char>
14 // ~ctype();
24 std::locale l(std::locale::classic(), new std::ctype<char>); member in class:std
29 std::ctype<char>::mask table[256];
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
36 new std::ctype<char>(new std::ctype<char>::mask[256], true));
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
H A Dtable.pass.cpp12 // template <> class ctype<char>
21 typedef std::ctype<char> F;
23 std::locale l(std::locale::classic(), new std::ctype<char>); member in class:std
28 std::ctype<char>::mask table[256];
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
H A Dctor.pass.cpp12 // template <class charT> class ctype;
14 // explicit ctype(const mask* tbl = 0, bool del = false, size_t refs = 0);
20 : public std::ctype<char>
26 : std::ctype<char>(tbl, del, refs) {++count;}
H A Dnarrow_1.pass.cpp12 // template <> class ctype<char>;
23 typedef std::ctype<char> F;
H A Dtolower_1.pass.cpp12 // template <> class ctype<char>;
23 typedef std::ctype<char> F;
H A Dtoupper_1.pass.cpp12 // template <> class ctype<char>;
23 typedef std::ctype<char> F;
H A Dwiden_1.pass.cpp12 // template <> class ctype<char>;
23 typedef std::ctype<char> F;
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
H A Dtypes.pass.cpp14 // : public ctype<CharT>
36 assert(&std::use_facet<std::ctype<char> >(l)
41 assert(&std::use_facet<std::ctype<wchar_t> >(l)
49 assert(&std::use_facet<std::ctype<char> >(l)
54 assert(&std::use_facet<std::ctype<wchar_t> >(l)
62 assert(&std::use_facet<std::ctype<char> >(l)
67 assert(&std::use_facet<std::ctype<wchar_t> >(l)
/external/opencv3/modules/java/generator/
H A Dgen_java.py512 # { class : { func : { arg_name : {"ctype" : ctype, "attrib" : [attrib]} } } }
515 'randu' : { 'low' : {"ctype" : 'double'},
516 'high' : {"ctype" : 'double'} },
517 'randn' : { 'mean' : {"ctype" : 'double'},
518 'stddev' : {"ctype" : 'double'} },
519 'inRange' : { 'lowerb' : {"ctype" : 'Scalar'},
520 'upperb' : {"ctype" : 'Scalar'} },
521 'goodFeaturesToTrack' : { 'corners' : {"ctype" : 'vector_Point'} },
522 'findFundamentalMat' : { 'points1' : {"ctype"
[all...]
/external/srtp/crypto/kernel/
H A Dcrypto_kernel.c178 kernel_cipher_type_t *ctype = crypto_kernel.cipher_type_list; local
193 while(ctype != NULL) {
194 printf("cipher: %s\n", ctype->cipher_type->description);
195 printf(" instance count: %d\n", ctype->cipher_type->ref_count);
197 status = cipher_type_self_test(ctype->cipher_type);
203 ctype = ctype->next;
262 kernel_cipher_type_t *ctype = crypto_kernel.cipher_type_list; local
263 crypto_kernel.cipher_type_list = ctype->next;
266 ctype
302 kernel_cipher_type_t *ctype, *new_ctype; local
394 kernel_cipher_type_t *ctype; local
[all...]
/external/fio/lib/
H A Dstrcasestr.c1 #include <ctype.h>
/external/libcxx/test/std/localization/locales/locale/locale.types/locale.category/
H A Dcategory.pass.cpp32 assert(std::locale::ctype);
38 & std::locale::ctype
44 | std::locale::ctype
53 test(std::locale::ctype);
/external/srtp/doc/
H A Dcrypto_kernel.txt28 cipher_type_alloc(cipher_type_t *ctype, cipher_t **cipher,
/external/e2fsprogs/lib/ext2fs/
H A Dversion.c17 #include <ctype.h>
/external/libcxx/test/std/localization/locales/locale.global.templates/
H A Dhas_facet.pass.cpp28 assert(std::has_facet<std::ctype<char> >(loc));
/external/opencv3/modules/imgcodecs/
H A Dprecomp.hpp57 #include <ctype.h>
/external/opencv3/modules/imgcodecs/src/
H A Dprecomp.hpp57 #include <ctype.h>
/external/opencv3/modules/core/src/
H A Dpca.cpp97 int ctype = std::max(CV_32F, data.depth()); local
98 mean.create( mean_sz, ctype );
100 Mat covar( count, count, ctype );
105 _mean.convertTo(mean, ctype);
109 calcCovarMatrix( data, covar, mean, covar_flags, ctype );
117 if( data.type() != ctype || tmp_mean.data == mean.data )
119 data.convertTo( tmp_data, ctype );
128 Mat evects1(count, len, ctype);
234 int ctype = std::max(CV_32F, data.depth()); local
235 mean.create( mean_sz, ctype );
298 int ctype = mean.type(); local
[all...]
/external/opencv3/3rdparty/libwebp/enc/
H A Dcost.c358 int ctype, band, ctx; local
362 for (ctype = 0; ctype < NUM_TYPES; ++ctype) {
365 const uint8_t* const p = proba->coeffs_[ctype][band][ctx];
366 uint16_t* const table = proba->level_cost_[ctype][band][ctx];
/external/v8/src/wasm/
H A Dwasm-interpreter.h54 #define DECLARE_FIELD(field, localtype, ctype) ctype field;
61 #define DECLARE_CONSTRUCTOR(field, localtype, ctype) \
62 explicit WasmVal(ctype v) : type(localtype) { val.field = v; }
72 #define DECLARE_CAST(field, localtype, ctype) \
74 inline ctype WasmVal::to() { \
/external/cblas/src/
H A Dxerbla.c2 #include <ctype.h>
/external/e2fsprogs/lib/blkid/
H A Dversion.c17 #include <ctype.h>

Completed in 621 milliseconds

1234567891011>>