/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | widen_1.pass.cpp | 34 assert(f.widen(' ') == L' '); in main() 35 assert(f.widen('A') == L'A'); in main() 36 assert(f.widen('\x07') == L'\x07'); in main() 37 assert(f.widen('.') == L'.'); in main() 38 assert(f.widen('a') == L'a'); in main() 39 assert(f.widen('1') == L'1'); in main() 40 assert(f.widen(char(-5)) == wchar_t(-1)); in main() 49 assert(f.widen(' ') == L' '); in main() 50 assert(f.widen('A') == L'A'); in main() 51 assert(f.widen('\x07') == L'\x07'); in main() [all …]
|
D | widen_many.pass.cpp | 37 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size()); in main() 55 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size()); in main()
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | widen_1.pass.cpp | 26 assert(f.widen(' ') == ' '); in main() 27 assert(f.widen('A') == 'A'); in main() 28 assert(f.widen('\x07') == '\x07'); in main() 29 assert(f.widen('.') == '.'); in main() 30 assert(f.widen('a') == 'a'); in main() 31 assert(f.widen('1') == '1'); in main()
|
D | widen_many.pass.cpp | 30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size()); in main()
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | widen_1.pass.cpp | 26 assert(f.widen(' ') == L' '); in main() 27 assert(f.widen('A') == L'A'); in main() 28 assert(f.widen('\x07') == L'\x07'); in main() 29 assert(f.widen('.') == L'.'); in main() 30 assert(f.widen('a') == L'a'); in main() 31 assert(f.widen('1') == L'1'); in main()
|
D | widen_many.pass.cpp | 30 assert(f.widen(&in[0], in.data() + in.size(), v.data()) == in.data() + in.size()); in main()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | AnyScriptTest.java | 98 Transliterator widen = Transliterator.getInstance("halfwidth-fullwidth"); in TestForWidth() local 104 String wideLettersAndSpace = widen.transform(lettersAndSpace); in TestForWidth() 105 String widePunctOnly = widen.transform(punctOnly); in TestForWidth()
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
D | asan-vs-gvn.ll | 14 ; Accessing bytes 4 and 6, not ok to widen to i32 if sanitize_address is set. 37 ;; Accessing bytes 4 and 5. Ok to widen to i16.
|
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/ |
D | widen.pass.cpp | 22 assert(ios.widen('c') == 'c'); in main()
|
/external/llvm/test/CodeGen/X86/ |
D | widen_extract-1.ll | 2 ; widen extract subvector
|
D | widen_arith-5.ll | 6 ; widen a v3i32 to v4i32 to do a vector multiple and a subtraction
|
D | widen_arith-6.ll | 5 ; widen a v3f32 to vfi32 to do a vector multiple and an add
|
D | widen_arith-2.ll | 5 ; widen v8i8 to v16i8 (checks even power of 2 widening with add & and)
|
/external/llvm/test/CodeGen/AArch64/ |
D | trunc-v1i64.ll | 9 ; AArch64. We change the default behaviour from be scalarized to be widen. 65 ; PR20777: v1i1 is also problematic, but we can't widen it, so we extract_elt
|
/external/llvm/test/Instrumentation/ThreadSanitizer/ |
D | tsan-vs-gvn.ll | 11 ; Accessing bytes 4 and 6, not ok to widen to i32 if sanitize_thread is set.
|
/external/llvm/test/CodeGen/ARM/ |
D | widen-vmovs.ll | 1 ; RUN: llc < %s -widen-vmovs -mcpu=cortex-a8 -verify-machineinstrs -disable-block-placement | FileC…
|
/external/llvm/test/Transforms/IndVarSimplify/NVPTX/ |
D | no-widen-expensive.ll | 8 ; Therefore, in this particular architecture, we should not widen induction
|
/external/libcxx/include/ |
D | ios | 154 char_type widen(char c) const; 627 char_type widen(char __c) const; 732 basic_ios<_CharT, _Traits>::widen(char __c) const 734 return use_facet<ctype<char_type> >(getloc()).widen(__c); 743 __fill_ = widen(' ');
|
D | ostream | 794 _CharT __c = __os.widen(__cn); 869 *__p = __os.widen(*__strn); 1034 __os.put(__os.widen('\n')); 1104 (use_facet<ctype<_CharT> >(__os.getloc()).widen('0'), 1105 use_facet<ctype<_CharT> >(__os.getloc()).widen('1'));
|
D | locale | 576 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 26, __atoms); 588 use_facet<ctype<_CharT> >(__loc).widen(__src, __src + 32, __atoms); 1164 use_facet<ctype<_CharT> >(__iob.getloc()).widen(__num_get_base::__src, 1239 __ct.widen(__nb, __ne, __ob); 1247 *__oe++ = __ct.widen(*__nf++); 1251 *__oe++ = __ct.widen(*__nf++); 1252 *__oe++ = __ct.widen(*__nf++); 1268 *__oe++ = __ct.widen(*__p); 1291 *__oe++ = __ct.widen(*__nf++); 1296 *__oe++ = __ct.widen(*__nf++); [all …]
|
D | istream | 1013 return get(__s, __n, this->widen('\n')); 1075 return get(__sb, this->widen('\n')); 1136 return getline(__s, __n, this->widen('\n')); 1652 return getline(__is, __str, __is.widen('\n')); 1672 return getline(__is, __str, __is.widen('\n')); 1692 _CharT __zero = __ct.widen('0'); 1693 _CharT __one = __ct.widen('1');
|
D | __locale | 486 char_type widen(char __c) const 492 const char* widen(const char* __low, const char* __high, char_type* __to) const 595 char_type widen(char __c) const 601 const char* widen(const char* __low, const char* __high, char_type* __to) const
|
D | random | 1985 __os.fill(__os.widen(' ')); 2455 _CharT __sp = __os.widen(' '); 2775 _CharT __sp = __os.widen(' '); 2956 _CharT __sp = __os.widen(' '); 3440 _CharT __sp = __os.widen(' '); 3663 _CharT __sp = __os.widen(' '); 3785 _CharT __sp = __os.widen(' '); 3896 _CharT __sp = __os.widen(' '); 4061 _CharT __sp = __os.widen(' '); 4333 _CharT __sp = __os.widen(' '); [all …]
|
/external/llvm/test/CodeGen/Thumb/ |
D | stack-access.ll | 59 ; Don't widen if the value needs to be zero-extended
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | elim-extend.ll | 68 ; %outercount is straightforward to widen, besides being in an outer loop.
|