Home
last modified time | relevance | path

Searched refs:EOF (Results 1 – 25 of 178) sorted by relevance

12345678

/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/
H A Dctype.c46 i += !!isalpha(EOF); in check_ctype()
47 i += !!isascii(EOF); in check_ctype()
48 i += !!isblank(EOF); in check_ctype()
49 i += !!iscntrl(EOF); in check_ctype()
50 i += !!isdigit(EOF); in check_ctype()
51 i += !!isgraph(EOF); in check_ctype()
52 i += !!islower(EOF); in check_ctype()
53 i += !!isprint(EOF); in check_ctype()
54 i += !!ispunct(EOF); in check_ctype()
55 i += !!isspace(EOF); in check_ctype()
[all …]
/llvm-project-15.0.7/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
H A Dpbackfail.pass.cpp29 virtual int_type pbackfail(int_type c = EOF) {return base::pbackfail(c);} in pbackfail()
41 assert(sb.snextc() == EOF); in main()
43 assert(sb.pbackfail('3') == EOF); in main()
45 assert(sb.pbackfail(EOF) != EOF); in main()
46 assert(sb.pbackfail(EOF) == EOF); in main()
56 assert(sb.snextc() == EOF); in main()
59 assert(sb.pbackfail(EOF) != EOF); in main()
60 assert(sb.pbackfail(EOF) == EOF); in main()
H A Dunderflow.pass.cpp45 assert(sb.snextc() == EOF); in main()
46 assert(sb.underflow() == EOF); in main()
47 assert(sb.underflow() == EOF); in main()
/llvm-project-15.0.7/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
H A Dcp_size_cp.pass.cpp31 assert(sb.snextc() == EOF); in main()
40 assert(sb.snextc() == EOF); in main()
45 assert(sb.sgetc() == EOF); in main()
51 assert(sb.sputc('j') == EOF); in main()
57 assert(sb.snextc() == EOF); in main()
62 assert(sb.sgetc() == EOF); in main()
67 assert(sb.sputc('i') == EOF); in main()
72 assert(sb.snextc() == EOF); in main()
82 assert(sb.snextc() == EOF); in main()
89 assert(sb.sputc('j') == EOF); in main()
[all …]
H A Dscp_size_scp.pass.cpp31 assert(sb.snextc() == EOF); in main()
40 assert(sb.snextc() == EOF); in main()
45 assert(sb.sgetc() == EOF); in main()
51 assert(sb.sputc('j') == EOF); in main()
57 assert(sb.snextc() == EOF); in main()
62 assert(sb.sgetc() == EOF); in main()
67 assert(sb.sputc('i') == EOF); in main()
72 assert(sb.snextc() == EOF); in main()
82 assert(sb.snextc() == EOF); in main()
89 assert(sb.sputc('j') == EOF); in main()
[all …]
H A Ducp_size_ucp.pass.cpp31 assert(sb.snextc() == EOF); in main()
40 assert(sb.snextc() == EOF); in main()
45 assert(sb.sgetc() == EOF); in main()
51 assert(sb.sputc('j') == EOF); in main()
57 assert(sb.snextc() == EOF); in main()
62 assert(sb.sgetc() == EOF); in main()
67 assert(sb.sputc('i') == EOF); in main()
72 assert(sb.snextc() == EOF); in main()
82 assert(sb.snextc() == EOF); in main()
89 assert(sb.sputc('j') == EOF); in main()
[all …]
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/
H A Dmake-core.sh6 cat <<EOF heredoc
10 EOF
33 cat <<EOF heredoc
35 EOF
46 cat <<EOF heredoc
50 EOF
55 cat <<EOF heredoc
58 EOF
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/thread_crash/
H A Dmake-core.sh6 cat <<EOF heredoc
10 EOF
38 cat <<EOF heredoc
42 EOF
48 cat <<EOF heredoc
51 EOF
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A Dfputc_putc_putchar.cpp8 assert(fputc('a', stdout) != EOF); in main()
9 assert(putc('b', stdout) != EOF); in main()
10 assert(putchar('c') != EOF); in main()
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/elf-core/gcore/
H A Dmake-core.sh6 cat <<EOF heredoc
10 EOF
25 cat <<EOF heredoc
28 EOF
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstd-c-library-functions-arg-constraints.c26 #define EOF -1 macro
45 clang_analyzer_eval(EOF <= x && x <= 255); // \ in test_alnum_symbolic()
85 clang_analyzer_eval(EOF <= x && x <= 255); // \ in test_toupper_symbolic()
125 clang_analyzer_eval(EOF <= x && x <= 255); // \ in test_tolower_symbolic()
165 clang_analyzer_eval(EOF <= x && x <= 255); // \ in test_toascii_symbolic()
/llvm-project-15.0.7/libcxx/utils/ci/
H A Dmacos-ci-setup35 cat <<EOF > ~/Library/LaunchAgents/libcxx.buildkite-agent.plist heredoc
79 EOF
111 cat <<EOF > "$(brew --prefix)/etc/buildkite-agent/buildkite-agent.cfg" heredoc
115 EOF
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dspawnbase.py7 from .exceptions import ExceptionPexpect, EOF, TIMEOUT
53 self.delimiter = EOF
171 raise EOF('End Of File (EOF). Exception style platform.')
176 raise EOF('End Of File (EOF). Empty string style platform.')
230 elif p is EOF:
231 compiled_pattern_list.append(EOF)
397 pattern_list in (TIMEOUT, EOF)):
401 if pattern in (TIMEOUT, EOF):
H A Dexpect.py3 from .exceptions import EOF, TIMEOUT
50 spawn.after = EOF
53 spawn.match = EOF
63 raise EOF(msg)
116 except EOF as e:
152 if s is EOF:
248 if s is EOF:
/llvm-project-15.0.7/libcxx/src/
H A Dstrstream.cpp158 if (__c == EOF) in overflow()
163 return int_type(EOF); in overflow()
174 return int_type(EOF); in overflow()
203 return EOF; in pbackfail()
204 if (__c == EOF) in pbackfail()
216 return EOF; in pbackfail()
229 return EOF; in underflow()
/llvm-project-15.0.7/lldb/test/API/driver/batch_mode/
H A DTestBatchMode.py76 child.expect(pexpect.EOF)
106 child.expect(pexpect.EOF)
161 self.victim.expect(pexpect.EOF)
162 child.expect(pexpect.EOF)
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Ddynamic-malformed.test382 ## right before the EOF. No warning should be emitted.
398 # BEFORE-THE-EOF-NEXT: {{[(]?}}RPATH{{[)]?}} Library rpath: [soabc]
400 # BEFORE-THE-EOF-NEXT: {{[(]?}}NULL{{[)]?}} 0x0
408 # PAST-THE-EOF: warning: '[[FILE]]': string table was not found
409 # PAST-THE-EOF: {{[(]?}}NEEDED{{[)]?}} Shared library: [<?>]
410 # PAST-THE-EOF-NEXT: {{[(]?}}FILTER{{[)]?}} Filter library: [<?>]
411 # PAST-THE-EOF-NEXT: {{[(]?}}AUXILIARY{{[)]?}} Auxiliary library: [<?>]
413 # PAST-THE-EOF-NEXT: {{[(]?}}SONAME{{[)]?}} Library soname: [<?>]
414 # PAST-THE-EOF-NEXT: {{[(]?}}RPATH{{[)]?}} Library rpath: [<?>]
415 # PAST-THE-EOF-NEXT: {{[(]?}}RUNPATH{{[)]?}} Library runpath: [<?>]
[all …]
H A Dbroken-dynamic-reloc.test376 # RUN: FileCheck %s -DFILE=%t7 --check-prefix=PAST-EOF-LLVM
378 # RUN: FileCheck %s -DFILE=%t7 --check-prefix=PAST-EOF-GNU
380 # PAST-EOF-LLVM: Dynamic Relocations {
382 # PAST-EOF-LLVM-NEXT: 0x0 R_X86_64_NONE <corrupt> 0x0
384 # PAST-EOF-LLVM-NEXT: 0x0 R_X86_64_NONE <corrupt> 0x0
386 # PAST-EOF-LLVM-NEXT: 0x0 R_X86_64_NONE <corrupt> 0x0
387 # PAST-EOF-LLVM-NEXT: }
389 # PAST-EOF-GNU: 'RELA' relocation section at offset 0x200 contains 72 bytes:
427 ## This symbol is located right before the EOF, so we can dump it.
430 ## The next symbol, which goes past the EOF.
[all …]
/llvm-project-15.0.7/mlir/examples/toy/Ch3/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch2/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch1/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch7/include/toy/
H A DLexer.h114 return EOF; in getNextChar()
170 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
172 if (lastChar != EOF) in getTok()
177 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch5/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch4/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()
/llvm-project-15.0.7/mlir/examples/toy/Ch6/include/toy/
H A DLexer.h113 return EOF; in getNextChar()
167 } while (lastChar != EOF && lastChar != '\n' && lastChar != '\r'); in getTok()
169 if (lastChar != EOF) in getTok()
174 if (lastChar == EOF) in getTok()

12345678