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

1 2 3

  /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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
widen_1.pass.cpp 16 // charT widen(char c) const;
36 assert(f.widen(' ') == L' ');
37 assert(f.widen('A') == L'A');
38 assert(f.widen('\x07') == L'\x07');
39 assert(f.widen('.') == L'.');
40 assert(f.widen('a') == L'a');
41 assert(f.widen('1') == L'1');
42 assert(f.widen(char(-5)) == wchar_t(-1));
52 assert(f.widen(' ') == L' ');
53 assert(f.widen('A') == L'A')
    [all...]
widen_many.pass.cpp 16 // const char* widen(const char* low, const char* high, charT* to) const;
38 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
57 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
widen_1.pass.cpp 16 // charT widen(char c) const;
36 assert(f.widen(' ') == L' ');
37 assert(f.widen('A') == L'A');
38 assert(f.widen('\x07') == L'\x07');
39 assert(f.widen('.') == L'.');
40 assert(f.widen('a') == L'a');
41 assert(f.widen('1') == L'1');
42 assert(f.widen(char(-5)) == wchar_t(-1));
52 assert(f.widen(' ') == L' ');
53 assert(f.widen('A') == L'A')
    [all...]
widen_many.pass.cpp 16 // const char* widen(const char* low, const char* high, charT* to) const;
38 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size());
57 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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /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');
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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');
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
AnyScriptTest.java 107 Transliterator widen = Transliterator.getInstance("halfwidth-fullwidth"); local
113 String wideLettersAndSpace = widen.transform(lettersAndSpace);
114 String widePunctOnly = widen.transform(punctOnly);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
AnyScriptTest.java 104 Transliterator widen = Transliterator.getInstance("halfwidth-fullwidth"); local
110 String wideLettersAndSpace = widen.transform(lettersAndSpace);
111 String widePunctOnly = widen.transform(punctOnly);
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
clang-include-fixer.el 98 (widen)
206 (widen)
210 (widen)
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
clang-include-fixer.el 98 (widen)
206 (widen)
210 (widen)
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/clang/
clang-include-fixer.el 103 (widen)
211 (widen)
215 (widen)
  /prebuilts/clang/host/darwin-x86/clang-4630689/share/clang/
clang-include-fixer.el 103 (widen)
211 (widen)
215 (widen)
  /prebuilts/clang/host/darwin-x86/clang-4639204/share/clang/
clang-include-fixer.el 103 (widen)
211 (widen)
215 (widen)

Completed in 739 milliseconds

1 2 3