Searched refs:fmt (Results 1 - 25 of 566) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dwrite_fmt_trim.f907 write(*,fmt=trim(format)) "A" ! Problem arose when trim was included here
H A Dfmt_t_1.f904 write (10, fmt='(a)') '001 1 2 3 4 5 6'
5 write (10, fmt='(a)') '000000 7 8 9101112'
6 write (10, fmt='(a)') '000000131415'
8 read (10, fmt='(i6, (t7, 6i2))') nrow, (vec(i), i=1,15)
H A Dfmt_t_3.f906 character(len=40) :: fmt variable in program:t
10 fmt = '(a,1x,(t7, 3a))'
11 write(10, fmt) 'xxxx', (y(i), i = 1,n)
13 read(10, '(a)') fmt
14 if (fmt.ne."xxxx a a a") call abort()
H A Derror_format_2.f906 subroutine s(fmt)
7 character (*) :: fmt local in subroutine:s
10 write (c, fmt, iostat=i) 42
13 write (c, fmt, err=100) 42
H A Darray_constructor_37.f9022 character(20) fmt
24 write(fmt,'(a,i0,a)') '(a,t19,',size(SENSOR_CHANNEL),'(i3:","))'
25 write(*,fmt) 'SENSOR_CHANNEL = ',SENSOR_CHANNEL
26 write(fmt,'(a,i0,a)') '(a,t19,',size(NLTE_CHANNEL),'(i3:","))'
27 write(*,fmt) 'NLTE_CHANNEL = ',NLTE_CHANNEL
30 write(fmt,'(a,i0,a)') '(a,t19,',size(C_INDEX),'(i3:","))'
31 write(*,fmt) 'C_INDEX = ',C_INDEX
H A Dnegative-z-descriptor.f906 character(len=20) fmt variable in program:main
7 write(unit=line,fmt='(Z4)') -1_1
9 write(unit=line,fmt='(Z5)') -1_2
11 write(unit=line,fmt='(Z9)') -1_4
13 write(unit=line,fmt='(Z17)') -2_8
15 write(unit=line,fmt='(Z2)') 10_8
18 write(unit=line,fmt='(Z8)') -43_8
21 write(unit=line,fmt='(B65)') -1_8
25 write(unit=line,fmt='(O4)') -2_1
H A Dio_real_boz.f9011 character(len=100) :: str,fmt variable in program:real_boz
19 write(fmt,'(a,i0,a)') '(b',len_trim(str),')'
20 read(str,fmt) i2
24 write(fmt,'(a,i0,a)') '(o',len_trim(str),')'
25 read(str,fmt) i2
29 write(fmt,'(a,i0,a)') '(z',len_trim(str),')'
30 read(str,fmt) i2
35 write(fmt,'(a,i0,a)') '(b',len_trim(str),')'
36 read(str,fmt) r2
40 write(fmt,'(
[all...]
H A Danyallcount_1.f9018 write (unit=res,fmt=f) any(m1,dim=1)
20 write (unit=res,fmt=f) any(m2,dim=1)
22 write (unit=res,fmt=f) any(m4,dim=1)
24 write (unit=res,fmt=f) any(m8,dim=1)
26 write (unit=res,fmt=f) any(m1,dim=2)
28 write (unit=res,fmt=f) any(m2,dim=2)
30 write (unit=res,fmt=f) any(m4,dim=2)
32 write (unit=res,fmt=f) any(m8,dim=2)
35 write (unit=res,fmt=f) all(m1,dim=1)
37 write (unit=res,fmt
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/format/
H A Dnul-1.c12 static char const fmt[] = "x%s\0%s\n\0abc"; local
13 printf (fmt+4, fmt+8); /* { dg-bogus "embedded.*in format" "bogus embed warning" } */
H A Dnul-2.c14 static char const fmt[] = "x%s\0%s\n\0abc"; local
15 printf (fmt+4, fmt+8);
H A Dms_nul-1.c13 static char const fmt[] = "x%s\0%s\n\0abc"; local
14 printf (fmt+4, fmt+8); /* { dg-bogus "embedded.*in format" "bogus embed warning" } */
H A Dms_nul-2.c15 static char const fmt[] = "x%s\0%s\n\0abc"; local
16 printf (fmt+4, fmt+8);
H A Dmiss-1.c9 foo (const char *fmt, ...) argument
12 va_start (ap, fmt);
13 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
18 bar (const char *fmt, ...) argument
21 va_start (ap, fmt);
22 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" } */
27 foo2 (const char *fmt, ...) argument
30 va_start (ap, fmt);
31 vprintf (fmt, ap);
36 vfoo (const char *fmt, va_lis argument
[all...]
H A Dms_miss-1.c10 foo (const char *fmt, ...) argument
13 va_start (ap, fmt);
14 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
19 bar (const char *fmt, ...) argument
22 va_start (ap, fmt);
23 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" } */
28 foo2 (const char *fmt, ...) argument
31 va_start (ap, fmt);
32 vprintf (fmt, ap);
37 vfoo (const char *fmt, va_lis argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/execute/
H A Dnan_inf_fmt.f905 character*12 fmt variable
17 fmt = '(F0.0)'
18 write(l,fmt=fmt)pos_inf
20 write(l,fmt=fmt)neg_inf
22 write(l,fmt=fmt)nan
26 fmt = '(F2.0)'
27 write(l,fmt
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20000112-1.c4 special_format (fmt)
5 const char *fmt;
7 return (strchr (fmt, '*') != 0
8 || strchr (fmt, 'V') != 0
9 || strchr (fmt, 'S') != 0
10 || strchr (fmt, 'n') != 0);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr34127.c6 void prepare_s(const char *fmt) argument
8 whichtable((char **)&fmt);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A D20031002-1.c4 void generic_sendmsg (char *fmt, ...) argument
6 __builtin_next_arg(fmt);
H A Dwarn-nsstring.c4 extern void NSLog (void *fmt, ...) __attribute__((format(__NSString__, 1, 2))); /* { dg-warning "is only allowed in Objective-C dialects" } */
5 extern void NSLog1 (void *fmt, ...) __attribute__((format(NSString, 1, 2))); /* { dg-warning "is only allowed in Objective-C dialects" } */
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/warn/
H A Dmiss-format-1.C13 foo (const char *fmt, ...) argument
16 va_start (ap, fmt);
17 vprintf (fmt, ap); /* { dg-warning "candidate" "printf attribute warning" } */
22 bar (const char *fmt, ...) argument
25 va_start (ap, fmt);
26 vscanf (fmt, ap); /* { dg-warning "candidate" "scanf attribute warning" { xfail *-*-vxworks* } } */
31 foo2 (const char *fmt, ...) argument
34 va_start (ap, fmt);
35 vprintf (fmt, ap);
40 vfoo (const char *fmt, va_lis argument
[all...]
/haiku-buildtools/binutils/libiberty/
H A Dasprintf.c47 asprintf (char **buf, const char *fmt, ...) argument
51 va_start (ap, fmt);
52 status = vasprintf (buf, fmt, ap);
H A Dxasprintf.c42 xasprintf (const char *fmt, ...) argument
46 va_start (ap, fmt);
47 buf = xvasprintf (fmt, ap);
/haiku-buildtools/gcc/libiberty/
H A Dxasprintf.c42 xasprintf (const char *fmt, ...) argument
46 va_start (ap, fmt);
47 buf = xvasprintf (fmt, ap);
H A Dasprintf.c47 asprintf (char **buf, const char *fmt, ...) argument
51 va_start (ap, fmt);
52 status = vasprintf (buf, fmt, ap);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/abi/
H A Dnoreturn1.C4 void baz (const char *fmt, ...);
7 void bar (void (*baz) (const char *fmt, ...)

Completed in 280 milliseconds

1234567891011>>