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

1 2 3 4

  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
widen_1.pass.cpp 14 // char widen(char c) const;
26 assert(f.widen(' ') == ' ');
27 assert(f.widen('A') == 'A');
28 assert(f.widen('\x07') == '\x07');
29 assert(f.widen('.') == '.');
30 assert(f.widen('a') == 'a');
31 assert(f.widen('1') == '1');
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, char* to) const;
30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
widen_1.pass.cpp 14 // char widen(char c) const;
26 assert(f.widen(' ') == ' ');
27 assert(f.widen('A') == 'A');
28 assert(f.widen('\x07') == '\x07');
29 assert(f.widen('.') == '.');
30 assert(f.widen('a') == 'a');
31 assert(f.widen('1') == '1');
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, char* to) const;
30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
widen_1.pass.cpp 14 // charT widen(char c) const;
34 assert(f.widen(' ') == L' ');
35 assert(f.widen('A') == L'A');
36 assert(f.widen('\x07') == L'\x07');
37 assert(f.widen('.') == L'.');
38 assert(f.widen('a') == L'a');
39 assert(f.widen('1') == L'1');
40 assert(f.widen(char(-5)) == wchar_t(-1));
49 assert(f.widen(' ') == L' ');
50 assert(f.widen('A') == L'A')
    [all...]
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, charT* to) const;
37 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
55 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/
widen_1.pass.cpp 14 // charT widen(char c) const;
32 assert(f.widen(' ') == L' ');
33 assert(f.widen('A') == L'A');
34 assert(f.widen('\x07') == L'\x07');
35 assert(f.widen('.') == L'.');
36 assert(f.widen('a') == L'a');
37 assert(f.widen('1') == L'1');
38 assert(f.widen(char(-5)) == wchar_t(-1));
47 assert(f.widen(' ') == L' ');
48 assert(f.widen('A') == L'A')
    [all...]
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, charT* to) const;
35 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
53 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
widen_1.pass.cpp 14 // charT widen(char c) const;
26 assert(f.widen(' ') == L' ');
27 assert(f.widen('A') == L'A');
28 assert(f.widen('\x07') == L'\x07');
29 assert(f.widen('.') == L'.');
30 assert(f.widen('a') == L'a');
31 assert(f.widen('1') == L'1');
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, charT* to) const;
30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
widen_1.pass.cpp 14 // charT widen(char c) const;
26 assert(f.widen(' ') == L' ');
27 assert(f.widen('A') == L'A');
28 assert(f.widen('\x07') == L'\x07');
29 assert(f.widen('.') == L'.');
30 assert(f.widen('a') == L'a');
31 assert(f.widen('1') == L'1');
widen_many.pass.cpp 14 // const char* widen(const char* low, const char* high, charT* to) const;
30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
widen.pass.cpp 14 // char_type widen(char c) const;
22 assert(ios.widen('c') == 'c');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
widen.pass.cpp 14 // char_type widen(char c) const;
22 assert(ios.widen('c') == 'c');
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
regex_compiler.h 183 else if (_M_state & _S_state_at_start && __c == _M_ctype.widen('^'))
189 else if (__c == _M_ctype.widen('$'))
196 else if (__c == _M_ctype.widen('.'))
202 else if (__c == _M_ctype.widen('*'))
208 else if (__c == _M_ctype.widen('+'))
214 else if (__c == _M_ctype.widen('|'))
220 else if (__c == _M_ctype.widen('['))
227 else if (__c == _M_ctype.widen('\\'))
234 if (__c == _M_ctype.widen('('))
240 else if (__c == _M_ctype.widen(')'))
    [all...]
basic_ios.h 368 _M_fill = this->widen(' ');
429 * @param __c The character to widen.
436 * std::use_facet<ctype<char_type> >(getloc()).widen(c)
443 widen(char __c) const function in class:basic_ios
444 { return __check_facet(_M_ctype).widen(__c); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex_compiler.h 183 else if (_M_state & _S_state_at_start && __c == _M_ctype.widen('^'))
189 else if (__c == _M_ctype.widen('$'))
196 else if (__c == _M_ctype.widen('.'))
202 else if (__c == _M_ctype.widen('*'))
208 else if (__c == _M_ctype.widen('+'))
214 else if (__c == _M_ctype.widen('|'))
220 else if (__c == _M_ctype.widen('['))
227 else if (__c == _M_ctype.widen('\\'))
234 if (__c == _M_ctype.widen('('))
240 else if (__c == _M_ctype.widen(')'))
    [all...]
basic_ios.h 368 _M_fill = this->widen(' ');
429 * @param __c The character to widen.
436 * std::use_facet<ctype<char_type> >(getloc()).widen(c)
443 widen(char __c) const function in class:basic_ios
444 { return __check_facet(_M_ctype).widen(__c); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_compiler.h 183 else if (_M_state & _S_state_at_start && __c == _M_ctype.widen('^'))
189 else if (__c == _M_ctype.widen('$'))
196 else if (__c == _M_ctype.widen('.'))
202 else if (__c == _M_ctype.widen('*'))
208 else if (__c == _M_ctype.widen('+'))
214 else if (__c == _M_ctype.widen('|'))
220 else if (__c == _M_ctype.widen('['))
227 else if (__c == _M_ctype.widen('\\'))
234 if (__c == _M_ctype.widen('('))
240 else if (__c == _M_ctype.widen(')'))
    [all...]
basic_ios.h 368 _M_fill = this->widen(' ');
429 * @param __c The character to widen.
436 * std::use_facet<ctype<char_type> >(getloc()).widen(c)
443 widen(char __c) const function in class:basic_ios
444 { return __check_facet(_M_ctype).widen(__c); }
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/avian/
Utf8.java 57 buf = widen(buf, j, length - 1);
64 buf = widen(buf, j, length - 2);
79 return (char[])widen(decoded, length, length);
89 private static Object widen (Object data, int length, int capacity) { method in class:Utf8
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios.h 107 inline _CharT widen(char) const;
150 basic_ios<_CharT, _Traits>::widen(char __c) const function in class:basic_ios
151 { return _M_ctype_facet()->widen(__c); }
163 basic_ios<char, char_traits<char> >::widen(char __c) const function in class:basic_ios
_num_put.c 85 __sep, __ct.widen('+'), __ct.widen('-'), 0);
89 __f.flags(), __f.width(0), __fill, __ct.widen('+'), __ct.widen('-'));
198 wchar_t __xplus = __ct.widen('+');
199 wchar_t __xminus = __ct.widen('-');
202 __ct.widen(__buf, __iend, __wbuf);
489 __s++ = __c_type.widen( '0' );
490 __s++ = __c_type.widen( __table_ptr[16] );
503 _STLP_PRIV __do_put_integer(__s, __f, __c_type.widen('0'), __REINTERPRET_CAST(unsigned long,__val)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_ios.h 107 inline _CharT widen(char) const;
150 basic_ios<_CharT, _Traits>::widen(char __c) const function in class:basic_ios
151 { return _M_ctype_facet()->widen(__c); }
163 basic_ios<char, char_traits<char> >::widen(char __c) const function in class:basic_ios
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_ios.h 368 _M_fill = this->widen(' ');
429 * @param __c The character to widen.
436 * std::use_facet<ctype<char_type> >(getloc()).widen(c)
443 widen(char __c) const function in class:basic_ios
444 { return __check_facet(_M_ctype).widen(__c); }

Completed in 727 milliseconds

1 2 3 4