Searched refs:message (Results 1 - 25 of 249) sorted by relevance

12345678910

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpragma-message.c1 /* Test that #pragma message "..." writes compiler messages. */
3 #pragma message /* { dg-warning "expected a string" } */
4 #pragma message 0 /* { dg-warning "expected a string" } */
5 #pragma message id /* { dg-warning "expected a string" } */
6 #pragma message ( /* { dg-warning "expected a string" } */
7 #pragma message (0 /* { dg-warning "expected a string" } */
8 #pragma message (id /* { dg-warning "expected a string" } */
9 #pragma message () /* { dg-warning "expected a string" } */
10 #pragma message (0) /* { dg-warning "expected a string" } */
11 #pragma message (i
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr23237.c7 static __attribute__ ((__section__ (".init.data"))) char *message; variable
11 while (!message)
/haiku-buildtools/legacy/binutils/ld/testsuite/ld-cdtest/
H A Dcdtest-foo.cc33 strncpy (message, "default-foo", len);
44 strncpy( message, msg, len);
46 printf ( "Constructing Foo(%d) \"%s\" at %08x\n", i, message, this);
48 printf ( "Constructing Foo(%d) \"%s\"\n", i, message);
58 i, foo.message, this, foo.i, &foo);
60 printf ("Initializing Foo(%d) \"%s\" with Foo(%d)\n",i, foo.message, foo.i);
62 for ( int k = 0; k < FOO_MSG_LEN; k++) message[k] = foo.message[k];
70 foo.i, foo.message, &foo, i, this);
72 printf ("Copying Foo(%d) \"%s\" to Foo(%d)\n", foo.i, foo.message,
[all...]
H A Dcdtest-foo.h15 char message[len]; member in class:Foo
20 Foo(const char* message);
/haiku-buildtools/binutils/ld/testsuite/ld-cdtest/
H A Dcdtest-foo.cc33 strncpy (message, "default-foo", len);
44 strncpy( message, msg, len);
46 printf ( "Constructing Foo(%d) \"%s\" at %08x\n", i, message, this);
48 printf ( "Constructing Foo(%d) \"%s\"\n", i, message);
58 i, foo.message, this, foo.i, &foo);
60 printf ("Initializing Foo(%d) \"%s\" with Foo(%d)\n",i, foo.message, foo.i);
62 for ( int k = 0; k < FOO_MSG_LEN; k++) message[k] = foo.message[k];
70 foo.i, foo.message, &foo, i, this);
72 printf ("Copying Foo(%d) \"%s\" to Foo(%d)\n", foo.i, foo.message,
[all...]
H A Dcdtest-foo.h15 char message[len]; member in class:Foo
20 Foo(const char* message);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/plugin/
H A Dpragma_plugin.c22 /* handler of #pragma GCCPLUGIN sayhello "message" is quite similar to
23 handler of #pragma GCC message...*/
28 tree message = 0; local
29 if (pragma_lex (&message) != CPP_STRING)
34 if (TREE_STRING_LENGTH (message) > 1)
38 cfun->decl, TREE_STRING_POINTER (message));
42 TREE_STRING_POINTER (message));
/haiku-buildtools/gcc/gcc/testsuite/obj-c++.dg/attributes/
H A Dmethod-format-1.mm12 + (void) log: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2, 3)));
13 - (void) log: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2, 3)));
19 - (void) log2: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2))); /* { dg-error "wrong" } */
28 [object log: 2 message: "attribute only applies to variadic functions"];
29 [object log: 2 message: "attribute %s only applies to variadic functions", "'format'"];
30 [object log: 2 message: "attribute %s only applies to variadic functions"]; /* { dg-warning "expects a matching" } */
36 [LogObject log: 2 message: "attribute only applies to variadic functions"];
37 [LogObject log: 2 message: "attribute %s only applies to variadic functions", "'format'"];
38 [LogObject log: 2 message: "attribute %s only applies to variadic functions"]; /* { dg-warning "expects a matching" } */
/haiku-buildtools/gcc/gcc/testsuite/objc.dg/attributes/
H A Dmethod-format-1.m12 + (void) log: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2, 3)));
13 - (void) log: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2, 3)));
19 - (void) log2: (int)level message: (const char *) my_format, ... __attribute__ ((format (printf, 2))); /* { dg-error "wrong" } */
28 [object log: 2 message: "attribute only applies to variadic functions"];
29 [object log: 2 message: "attribute %s only applies to variadic functions", "'format'"];
30 [object log: 2 message: "attribute %s only applies to variadic functions"]; /* { dg-warning "expects a matching" } */
36 [LogObject log: 2 message: "attribute only applies to variadic functions"];
37 [LogObject log: 2 message: "attribute %s only applies to variadic functions", "'format'"];
38 [LogObject log: 2 message: "attribute %s only applies to variadic functions"]; /* { dg-warning "expects a matching" } */
/haiku-buildtools/binutils/ld/testsuite/ld-srec/
H A Dsr3.cc9 char message[len]; member in class:Foo
14 Foo(const char* message);
105 message[k] = foo.message[k];
111 message[k] = foo.message[k];
/haiku-buildtools/legacy/binutils/ld/testsuite/ld-srec/
H A Dsr3.cc9 char message[len]; member in class:Foo
14 Foo(const char* message);
105 message[k] = foo.message[k];
111 message[k] = foo.message[k];
/haiku-buildtools/binutils/gas/testsuite/gas/mt/
H A Dbadinsn1.s1 ; Extra operand should generate and error message.
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/mt/
H A Dbadinsn1.s1 ; Extra operand should generate and error message.
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Doverload2.C32 char *message; variable
38 derived_object.method (message);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dnamelist_59.f9015 character(len=255) :: message local in subroutine:process
23 read(lines,nml=cmd,iostat=ios,iomsg=message)
/haiku-buildtools/gcc/libcilkrts/runtime/
H A Dbug.cpp63 char message[256]; variable
67 _vsnprintf_s(message, 256, _TRUNCATE, fmt, l);
70 message); /* widen */
88 before the system-generated error message. */
121 char message[2048]; local
128 _vsnprintf_s(message, 2048, _TRUNCATE, fmt, l);
130 OutputDebugStringA (message);
/haiku-buildtools/legacy/gcc/texinfo/emacs/
H A Ddetexinfo.el117 (message "Done...removed Texinfo commands from buffer. You may save it.")))
155 (message "Removing commands such as @enumerate...with their arguments...")
172 (message "Removing commands such as @cindex...with their arguments...")
192 (message "Removing commands such as @chapter...but not their arguments...")
217 (message "Removing commands such as @example...that lack arguments...")
230 (message "Removing within line commands such as @result...")
245 (message
/haiku-buildtools/binutils/gas/testsuite/gas/all/
H A Derr-1.s3 .error "an error message" ;# { dg-error "Error: an error message" }
4 .error an error message ;# { dg-error "Error: .error argument must be a string" }
H A Dwarn-1.s3 .warning "a warning message" ;# { dg-warning "Warning: a warning message" }
4 .warning a warning message ;# { dg-error "Error: .warning argument must be a string" }
/haiku-buildtools/binutils/gas/testsuite/gas/cris/
H A Dmulbug-err-1.s1 ; Test error message for mul insns at locations likely to trig
/haiku-buildtools/legacy/binutils/gas/
H A Dlisting.h45 void listing_error (const char *message);
57 void listing_warning (const char *message);
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/all/
H A Derr-1.s3 .error "an error message" ;# { dg-error "Error: an error message" }
4 .error an error message ;# { dg-error "Error: .error argument must be a string" }
H A Dwarn-1.s3 .warning "a warning message" ;# { dg-warning "Warning: a warning message" }
4 .warning a warning message ;# { dg-error "Error: .warning argument must be a string" }
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/cris/
H A Dmulbug-err-1.s1 ; Test error message for mul insns at locations likely to trig
/haiku-buildtools/gcc/gcc/testsuite/obj-c++.dg/property/
H A Dat-property-21.mm7 - (void) message;
17 /* { dg-message ".assign. can be unsafe for Objective-C objects" "" { target *-*-* } 16 } */
20 /* { dg-message ".assign. can be unsafe for Objective-C objects" "" { target *-*-* } 19 } */

Completed in 440 milliseconds

12345678910