| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | temp_arg_string_printing.cpp | 51 // CHECK{LITERAL}: ASCII<{"print more characters as string"}> in narrow() 52 new ASCII<"print more characters as string">; in narrow() 53 // CHECK{LITERAL}: ASCII<{"print more characters as string, no uplimit"}> in narrow() 54 new ASCII<"print more characters as string, no uplimit">; in narrow() 97 // CHECK{LITERAL}: ASCII<{u8"print more characters as string, no uplimit"}> in utf8() 98 new ASCII<u8"print more characters as string, no uplimit">; in utf8() 127 // CHECK{LITERAL}: ASCII<{U"print more characters as string, no uplimit"}> 128 new ASCII<U"print more characters as string, no uplimit">;
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | malloc.mm | 290 unichar *characters = (unichar*)malloc(12); 292 if (!string) free(characters); // no-warning 296 unichar *characters = (unichar*)malloc(12); 301 unichar *characters = (unichar*)malloc(12); 306 void test12365078_no_malloc(unichar *characters) { 308 if (!string) {free(characters);} 311 NSString *test12365078_no_malloc_returnValue(unichar *characters) { 319 void test12365078_nocheck_nomalloc(unichar *characters) { 324 void test12365078_nested(unichar *characters) { 333 free(characters); [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/ |
| H A D | malformed-archives.test | 16 # BOGUS1: '[[FILE]]': truncated or malformed archive (characters in size field in archive member he… 48 ## Check we report an error when the terminator characters of an archive member header are not the … 54 # BOGUS4: '[[FILE]]': truncated or malformed archive (terminator characters in archive member "@\n"… 74 ## Check we report an error when a member's long name length characters after 81 # BOGUS6: '[[FILE]]': truncated or malformed archive (long name length characters after the #1/ are… 87 ## Check we report an error when a member's long name length characters extend past the end of the … 99 ## Check we report an error when members long name length characters after 125 ## Check we report an error when the characters in the UID field of a member header are not all dec… 138 ## Check we report an error when the characters in the GID field of a member header are not all dec… 151 ## Check we report an error when the characters in the AccessMode field of a member header are not … [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ELF/ |
| H A D | wildcard-syntax.test | 6 ## * matches all characters. 36 ## [a-z] matches a range of characters. 41 ## [^a-z] or [!a-z] match a negated range of characters. 62 ## Use a separate test file with special characters for the following tests. 66 ## \ escapes wildcard characters. 76 ## Special characters are not treated like regular expression characters. 82 ## Special characters in character classes are treated literally.
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | signed-char-misuse.rst | 11 store the non-ASCII characters as negative values. This behavior can cause a 20 ``unsigned char`` first, which stores all the characters in the positive [0..255] 29 For ``signed char``, the non-ASCII characters are stored as a value in [-128..-1] 30 interval, while the same characters are stored in the [128..255] interval for 43 `STR34-C. Cast characters to unsigned char before converting to larger integer sizes 44 <https://wiki.sei.cmu.edu/confluence/display/c/STR34-C.+Cast+characters+to+unsigned+char+before+con… 47 read from a file that might contain non-ASCII characters. The problem comes
|
| H A D | string-constructor.rst | 17 suspicious and adds extra random characters to the string. 23 std::string("test", 200); // Will include random characters after "test".
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/ |
| H A D | symbolize-filter-markup-tag.test | 5 CHECK: error: tags must be all lowercase characters 6 CHECK: error: tags must be all lowercase characters
|
| /llvm-project-15.0.7/llvm/test/MC/AsmParser/ |
| H A D | non-english-characters.s | 2 # RUN: %S/Inputs/non-english-characters-comments.s 7 # RUN: %S/Inputs/non-english-characters-section-name.s 2>&1 | \
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/ |
| H A D | file-sections-reading.test | 13 # CHECK: FileName: first-section-has-eighteen-characters.asm 32 File: first-section-has-eighteen-characters.asm
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/misc/ |
| H A D | throw-by-value-catch-by-reference.cpp | 36 const char *characters = 0; in testThrowFunc() local 37 throw characters; in testThrowFunc()
|
| /llvm-project-15.0.7/llvm/test/Other/ |
| H A D | ResponseFile.ll | 4 ; On Windows, paths contain \ characters, which are escape characters in
|
| /llvm-project-15.0.7/llvm/test/FileCheck/comment/ |
| H A D | bad-comment-prefix.txt | 18 # Check invalid characters in comment prefix. 25 … comment prefix must start with a letter and contain only alphanumeric characters, hyphens, and un… 26 … comment prefix must start with a letter and contain only alphanumeric characters, hyphens, and un…
|
| /llvm-project-15.0.7/flang/unittests/Runtime/ |
| H A D | Namelist.cpp | 58 std::vector<std::string> characters; in TEST() local 59 characters.emplace_back("aBcDeFgHiJkLmNoPqRsTuVwXyZ"); in TEST() 60 characters.emplace_back("0123456789'\".............."); in TEST() 75 std::vector<int>{2}, std::move(characters), characters[0].size())}; in TEST()
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | descriptor.cpp | 67 void Descriptor::Establish(int characterKind, std::size_t characters, void *p, in Establish() argument 71 characterKind * characters, p, rank, extent, attribute, addendum); in Establish() 102 SubscriptValue characters, void *p, int rank, const SubscriptValue *extent, in Create() argument 105 characterKind * characters, p, rank, extent, attribute); in Create()
|
| /llvm-project-15.0.7/clang/tools/clang-format/ |
| H A D | clang-format-bbedit.applescript | 24 select characters 1 thru currentLength of text document 1 26 select characters selectionOffset thru (selectionOffset + selectionLength - 1) of text document 1
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | formatting.rst | 52 text, control characters and variables that have access to the current program 55 Normal characters are any text that doesn't contain a ``{``, ``}``, ``$``, or 163 Control characters include ``{``, ``}``, and ``\``. 166 you to desensitize control characters and also emit non-printable characters. 172 ``\b``, ``\f``, ``\n``, ``\r``, ``\t``, ``\v``, ``\\``, characters and along 173 with the standard octal representation ``\0123`` and hex ``\xAB`` characters. 174 This allows you to enter escape characters into your format strings and will
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | raw-string-literal.rst | 6 This check selectively replaces string literals containing escaped characters 37 and octal or hexadecimal escapes for printable ASCII characters.
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/ |
| H A D | utf8_command.txt | 1 # Run a command including UTF-8 characters.
|
| H A D | fail_with_control_chars.txt | 1 # Run a command that fails and prints control characters on stdout.
|
| /llvm-project-15.0.7/llvm/test/YAMLParser/ |
| H A D | spec-05-13.test | 5 tab characters"
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | long-section-name.test | 12 # WARN: warning: section name .data_long_section_name is longer than 8 characters and will use a no… 13 # WARN: warning: section name .text_long_section_name is longer than 8 characters and will use a no…
|
| /llvm-project-15.0.7/llvm/test/Assembler/ |
| H A D | invalid-datalayout11.ll | 3 ; CHECK: Unexpected trailing characters after mangling specifier in datalayout string
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-cxxfilt.rst | 21 line is split on characters that are not part of valid Itanium name manglings, 22 i.e. characters that are not alphanumeric, '.', '$', or '_'. Separators between
|
| /llvm-project-15.0.7/llvm/test/Demangle/ |
| H A D | warn-trailing.test | 6 ; CHECK-NEXT: warning: trailing characters: asdf
|
| /llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/ |
| H A D | stdout-encoding.txt | 1 # Check that lit doesn't fail when printing special characters in its test
|