Home | History | Annotate | Download | only in locale.codecvt.members

Lines Matching defs:from

14 // int length(stateT& state, const externT* from, const externT* from_end, size_t max) const;
26 const char* from = "123467890";
27 assert(f.length(mbs, from, from+10, 0) == 0);
28 assert(f.length(mbs, from, from+10, 9) == 9);
29 assert(f.length(mbs, from, from+10, 10) == 10);
30 assert(f.length(mbs, from, from+10, 11) == 10);
31 assert(f.length(mbs, from, from+10, 100) == 10);