Home
last modified time | relevance | path

Searched refs:ASCII (Results 1 – 25 of 69) sorted by relevance

123

/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_string_printing.cpp19 template <Str> class ASCII {}; class
23 new ASCII<(int[]){9, -1, 42}>; in not_string()
30 new ASCII<"">; in narrow()
67 new ASCII<L"escape\0">; in narrow()
69 new ASCII<L"escape\r\n">; in narrow()
73 new ASCII<L"escape\a\b\c">; in narrow()
75 new ASCII<L"not\x11">; in narrow()
88 new ASCII<u8"">; in utf8()
107 new ASCII<u"escape\0">; in utf8()
109 new ASCII<u"escape\r\n">; in utf8()
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-rc/Inputs/
H A Dtag-accelerators.rc6 "a", 4, ASCII
9 "A", 7, ASCII
12 "1", 10, ASCII
15 "$", 13, ASCII
17 "]", 16, ASCII
19 "^a", 19, ASCII
20 0, 37, ASCII
22 1, 40, ASCII
24 127, 43, ASCII
26 128, 46, ASCII
[all …]
H A Dparser-correct-everything.rc27 0, 0, ASCII
30 3, 3, ALT, CONTROL, SHIFT, NOINVERT, ASCII, VIRTKEY
H A Dtag-accelerators-control-nonalpha.rc2 "^5", 1, ASCII
H A Dtag-accelerators-no-caret.rc2 "XY", 1, ASCII
H A Dtag-accelerators-too-long.rc2 "Hello", 5, ASCII
H A Dparser-accelerators-no-comma.rc2 5, 10, ASCII CONTROL
H A Dtag-accelerators-ascii-alt.rc2 "A", 15, ASCII, ALT
H A Dtag-accelerators-ascii-control.rc2 "A", 15, ASCII, CONTROL
H A Dtag-accelerators-ascii-shift.rc2 "A", 15, ASCII, SHIFT
H A Dtag-accelerators-ascii-virtkey.rc2 "A", 15, ASCII, VIRTKEY
H A Dutf8-escape-narrow.rc3 // strings in UTF-8 mode, only ASCII chars can be entered via escapes.
H A Dutf8.rc3 // strings in UTF-8 mode, only ASCII chars can be entered via escapes.
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dcxx2a-nttp-printing.cpp8 template <Str V> class ASCII {}; class
10 void Foo(ASCII<"this nontype template argument is too long to print">); // expected-note {{no known…
11 void Bar(ASCII<"this nttp argument is too short">); // expected-note {{no known…
12 void Meow(ASCII<"what|">); // expected-note {{no known…
15 ASCII<"this nontype template argument" in test_ascii()
23 ASCII<"wait a s\033cond"> a; in test_non_ascii()
31 ASCII<"what??!"> a; // expected-warning {{trigraph ignored}} in test_trigraph()
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DStringPrinter.cpp136 DecodedCharBuffer GetPrintableImpl<StringElementType::ASCII>( in GetPrintableImpl()
176 return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next, in GetPrintableImpl()
225 case StringElementType::ASCII: in GetPrintable()
241 case GetPrintableElementType::ASCII: in GetDefaultEscapingHelper()
246 : StringElementType::ASCII, in GetDefaultEscapingHelper()
429 if (elem_type == StringElementType::ASCII && !options.GetSourceSize()) { in ReadEncodedBufferAndDumpToStream()
464 if (elem_type == StringElementType::ASCII) in ReadEncodedBufferAndDumpToStream()
488 ? GetPrintableElementType::ASCII in ReadEncodedBufferAndDumpToStream()
515 bool StringPrinter::ReadStringAndDumpToStream<StringElementType::ASCII>( in ReadStringAndDumpToStream()
517 return ReadEncodedBufferAndDumpToStream<char>(StringElementType::ASCII, in ReadStringAndDumpToStream()
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ELF/ARM/
H A Ddebug-vars-dwarf4.s42 # RUN: FileCheck %s --check-prefix=ASCII --strict-whitespace
131 # ASCII: 00000000 <foo>:
132 # ASCII-NEXT: |- a = R0
136 # ASCII-NEXT: 0: e0810000 add r0, r1, r0 v | | ^
137 # ASCII-NEXT: /- y = R0
138 # ASCII-NEXT: 4: e0800002 add r0, r0, r2 ^ | | v
139 # ASCII-NEXT: 8: e12fff1e bx lr v v v
140 # ASCII-EMPTY:
141 # ASCII-NEXT: 0000000c <bar>:
143 # ASCII-NEXT: c: e2800001 add r0, r0, #1 |
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/Inputs/resources/
H A Dtest_resource.rc9 "^R", 444, ASCII, NOINVERT
35 "^R", 444, ASCII, NOINVERT
/llvm-project-15.0.7/llvm/test/tools/llvm-cvtres/Inputs/
H A Dtest_resource.rc9 "^R", 444, ASCII, NOINVERT
35 "^R", 444, ASCII, NOINVERT
/llvm-project-15.0.7/lld/test/COFF/Inputs/
H A Dcombined-resources.rc9 "^R", 444, ASCII, NOINVERT
35 "^R", 444, ASCII, NOINVERT
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dsigned-char-misuse.rst11 store the non-ASCII characters as negative values. This behavior can cause a
29 For ``signed char``, the non-ASCII characters are stored as a value in [-128..-1]
47 read from a file that might contain non-ASCII characters. The problem comes
85 different signedness. Inside the non-ASCII value range this comparison between
/llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/
H A DNSString.cpp172 StringPrinter::StringElementType::ASCII>(options); in NSStringSummaryProvider()
187 StringPrinter::StringElementType::ASCII>(options); in NSStringSummaryProvider()
263 StringPrinter::StringElementType::ASCII>(options); in NSStringSummaryProvider()
280 StringPrinter::StringElementType::ASCII>(options); in NSStringSummaryProvider()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h23 enum class StringElementType { ASCII, UTF8, UTF16, UTF32 }; enumerator
25 enum class GetPrintableElementType { ASCII, UTF8 }; enumerator
/llvm-project-15.0.7/llvm/test/YAMLParser/
H A Dspec-02-13.test3 # ASCII Art
/llvm-project-15.0.7/lldb/docs/
H A Dlldb-platform-packets.txt60 // ASCII hex encoding.
74 // ASCII hex encoding.
188 // "name" ascii-hex An ASCII hex string that contains the name of
202 // "triple" ascii-hex An ASCII hex target triple string ("x86_64",
265 // Get the size of a file on the target system, filename in ASCII hex.
280 // Get the mode bits of a file on the target system, filename in ASCII hex.
369 // 1. ASCII hex encoded filename
/llvm-project-15.0.7/llvm/test/MC/AsmParser/
H A Ddirective_case_insensitive.s6 .ASCII "B"

123