| /src/usr.bin/make/unit-tests/ |
| directive-elifdef.mk | 1 # $NetBSD: directive-elifdef.mk,v 1.4 2022/02/09 21:09:24 rillig Exp $ 3 # Tests for the .elifdef directive, which is seldom used. Instead of writing 4 # '.elifdef VAR', the usual form is the more general '.elif defined(VAR)'. 8 .elifdef VAR 16 .elifdef VAR
|
| Makefile | 174 TESTS+= directive-elifdef
|
| /src/tests/usr.bin/indent/ |
| lsym_preprocessing.c | 289 #elifdef var 299 #elifdef var 307 // error: Standard Input:3: Unmatched #elifdef
|
| /src/sbin/init/ |
| Makefile | 12 .elifdef SMALLPROG
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++23/ |
| print.cc | 41 #elifdef _GLIBCXX_HAVE_UNISTD_H 342 #elifdef _GLIBCXX_HAVE_UNISTD_H
|
| /src/usr.bin/config/ |
| scan.l | 230 <*>{WS}elifdef[ \t]+{WORD}{RESTOFLINE} { 232 IDS_ENTER(elifdef, st); 234 yyerror("mismatched elifdef"); 244 IDS_EXIT(elifdef, st);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_internal_defs.h | 194 #elifdef __SIZE_TYPE__
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_internal_defs.h | 189 #elifdef __SIZE_TYPE__
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_platform_linux.cpp | 426 # elifdef __aarch64__
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_platform_linux.cpp | 411 # elifdef __aarch64__
|
| /src/share/mk/ |
| bsd.kmodule.mk | 99 . elifdef PPC_BOOKE
|
| /src/external/gpl3/gcc/dist/libcpp/ |
| directives.cc | 74 ELIFDEF is set on directives that are only handled for standards with the 75 #elifdef / #elifndef feature. */ 82 #define ELIFDEF (1 << 6) 157 D(elifdef, T_ELIFDEF, STDC23, COND | ELIFDEF) \ 158 D(elifndef, T_ELIFNDEF, STDC23, COND | ELIFDEF) \ 465 if ((dir->flags & ELIFDEF) 466 && !CPP_OPTION (pfile, elifdef) 467 /* For -std=gnu* modes elifdef is supported with 2126 /* Handle a #elif, #elifdef or #elifndef directive by not changing if_stac [all...] |
| /src/external/gpl3/gcc.old/dist/libcpp/ |
| directives.cc | 74 ELIFDEF is set on directives that are only handled for standards with the 75 #elifdef / #elifndef feature. */ 82 #define ELIFDEF (1 << 6) 157 D(elifdef, T_ELIFDEF, STDC2X, COND | ELIFDEF) \ 158 D(elifndef, T_ELIFNDEF, STDC2X, COND | ELIFDEF) \ 450 if ((dir->flags & ELIFDEF) 451 && !CPP_OPTION (pfile, elifdef) 452 /* For -std=gnu* modes elifdef is supported with 2100 /* Handle a #elif, #elifdef or #elifndef directive by not changing if_stac [all...] |
| /src/external/gpl3/gcc/dist/libcpp/include/ |
| cpplib.h | 529 /* Nonzero for the '#elifdef' and '#elifndef' directives. */ 530 unsigned char elifdef; member in struct:cpp_options
|
| /src/external/gpl3/gcc.old/dist/libcpp/include/ |
| cpplib.h | 514 /* Nonzero for the '#elifdef' and '#elifndef' directives. */ 515 unsigned char elifdef; member in struct:cpp_options
|