/src/tests/usr.bin/xlint/lint1/ |
msg_175.c | 4 // Test for message: initialization of incomplete type '%s' [175] 8 /* expect+1: warning: struct 'incomplete' never defined [233] */ 9 struct incomplete; 11 /* expect+1: error: initialization of incomplete type 'incomplete struct incomplete' [175] */ 12 struct incomplete incomplete = { variable in typeref:struct:incomplete 15 /* expect-1: error: 'incomplete' has incomplete type 'incomplete struct incomplete' [31] * [all...] |
msg_301.c | 4 // Test for message: array of incomplete type [301] 10 /* expect+1: warning: struct 'incomplete' never defined [233] */ 11 struct incomplete; 13 /* expect+1: error: 'var' has incomplete type 'incomplete struct incomplete' [31] */ 14 struct incomplete var[3]; 16 /* expect+1: error: cannot take size/alignment of incomplete type [143] */ 17 unsigned long sizeof_3 = sizeof(struct incomplete[3]);
|
msg_143.c | 4 // Test for message: cannot take size/alignment of incomplete type [143] 8 /* expect+1: warning: struct 'incomplete' never defined [233] */ 9 struct incomplete; 14 /* expect+1: error: cannot take size/alignment of incomplete type [143] */ 15 return sizeof(struct incomplete);
|
msg_067.c | 4 // Test for message: cannot return incomplete type [67] 8 /* expect+1: warning: struct 'incomplete' never defined [233] */ 9 struct incomplete; 11 struct incomplete function_declaration(void); 13 struct incomplete 15 /* expect+1: error: cannot return incomplete type [67] */ 17 /* expect+1: error: 'r' has incomplete type 'incomplete struct incomplete' [31] */ 18 struct incomplete r [all...] |
msg_152.c | 8 /* expect+1: warning: struct 'incomplete' never defined [233] */ 9 struct incomplete; 11 /* expect+1: error: '<unnamed>' has incomplete type 'incomplete struct incomplete' [31] */ 12 void callee(struct incomplete); 17 /* expect+1: error: 'local_var' has incomplete type 'incomplete struct incomplete' [31] */ 18 struct incomplete local_var [all...] |
msg_136.c | 8 /* expect+1: warning: struct 'incomplete' never defined [233] */ 9 struct incomplete; 11 const struct incomplete * 12 example(const struct incomplete *ptr)
|
msg_138.c | 8 struct incomplete; 15 function(_Bool cond, struct incomplete *i1, struct incomplete *i2) 17 /* expect+2: error: cannot initialize 'incomplete struct incomplete' from 'pointer to incomplete struct incomplete' [185] */ 18 /* expect+1: error: 'local' has incomplete type 'incomplete struct incomplete' [31] * [all...] |
msg_031.c | 4 // Test for message: '%s' has incomplete type '%s' [31] 12 /* expect+1: warning: struct 'incomplete' never defined [233] */ 13 struct incomplete; 18 /* expect+1: error: 'incomplete_var' has incomplete type 'incomplete struct incomplete' [31] */ 19 struct incomplete incomplete_var; 22 /* expect+1: error: '<unnamed>' has incomplete type 'incomplete struct incomplete' [31] * [all...] |
msg_135.c | 21 /* expect+1: warning: struct 'incomplete' never defined [233] */ 22 struct incomplete; 30 * from the publicly visible, incomplete 'struct lhash_st' to a private 40 pointer_to_structs(struct incomplete *incomplete) 44 complete = (struct complete *)incomplete;
|
/src/usr.bin/make/unit-tests/ |
suff-incomplete.exp | 1 Parsing suff-incomplete.mk:9: .SUFFIXES: 4 Parsing suff-incomplete.mk:11: .SUFFIXES: .a .b .c 9 Parsing suff-incomplete.mk:17: .a.b: 14 Parsing suff-incomplete.mk:21: .a.c: ${.PREFIX}.dependency 15 deleting incomplete transformation from `.a' to `.b' 23 Parsing suff-incomplete.mk:23: .DEFAULT: 26 Parsing suff-incomplete.mk:24: : Making ${.TARGET} from ${.IMPSRC} all ${.ALLSRC} by default. 32 Wildcard expanding "suff-incomplete.c"...suffix is ".c"... 33 SuffFindDeps "suff-incomplete.c" 34 trying suff-incomplete.a...not ther [all...] |
suff-incomplete.mk | 1 # $NetBSD: suff-incomplete.mk,v 1.2 2020/11/22 11:05:49 rillig Exp $ 3 # Tests incomplete transformation rules, which are ignored. 5 all: suff-incomplete.c 13 # This rule has no commands and no dependencies, therefore it is incomplete 30 # XXX: The output of this test says "Making suff-incomplete.c from 31 # suff-incomplete.c". It doesn't make sense to make something out of itself.
|
cond-op-and.mk | 85 # '&' forms the next (incomplete) token.
|
cond-op-or.mk | 85 # '|' forms the next (incomplete) token.
|
deptgt-posix.mk | 7 # that, POSIX support is still incomplete, the exact set of supported features
|
varmod-match.mk | 290 # [ Incomplete empty character list, never matches. 297 # [^ Incomplete negated empty character list, matches any single 305 # [-x1-3 Incomplete character list, matches those elements that can be 313 # *[-x1-3 Incomplete character list after a wildcard, matches those 322 # Incomplete negated character list, matches any character 330 # [\ Incomplete character list containing a single '\'. 344 # [x- Incomplete character list containing an incomplete character 352 # [^x- Incomplete negated character list containing an incomplete [all...] |
varmod-assign.mk | 107 # incomplete, make falls back to the SysV modifier.
|
Makefile | 331 TESTS+= suff-incomplete
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
bcm2837-rpi-cm3.dtsi | 15 * remove the incomplete node.
|
/src/usr.sbin/autofs/ |
automountd.c | 120 create_subtree(const struct node *node, bool incomplete) 136 if (incomplete) { 156 create_subtree(child, incomplete);
|
/src/tests/bin/sh/ |
t_here.sh | 269 atf_test_case incomplete 271 atf_set "descr" "Basic tests for incomplete here documents" 274 reset incomplete 667 atf_add_test_case incomplete # where the end marker isn't...
|
/src/share/mk/ |
bsd.lua.mk | 34 # other language support for other than C is incomplete
|
bsd.own.mk | 964 # The m68000 port is incomplete. 977 # The ia64 port is incomplete.
|
/src/distrib/syspkg/mk/ |
bsd.syspkg.mk | 447 ${ECHO_MSG} "Warning: \"$$dir\" non-existent -- @pkgdep registration incomplete" >&2; \ 456 ${ECHO_MSG} "Warning: \"$$dir\" non-existent -- @pkgdep registration incomplete" >&2; \
|
/src/usr.sbin/sysinst/ |
msg.mi.en | 699 Your installation is incomplete. 749 a recent, incomplete upgrade, you can rm -f %s/bin/X and mv
|
/src/usr.bin/xlint/lint1/ |
README.md | 42 The cleanup after handling a parse error is often incomplete.
|