代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5523342
f90 data.f90
! Program to test data statement
program data
call sub1()
call sub2()
end
subroutine sub1()
integer i
type tmp
integer, dimens
www.eeworm.com/read/162614/5526372
f90 interface_1.f90
! { dg-do compile }
! This program would segfault without the patch for PR fortran/24005.
module y
!
! If private statement is removed, then we get a bunch of errors
!
private f
!
! If we
www.eeworm.com/read/162614/5529397
c 20020207-1.c
/* This testcase ICEd because statement expression type was set, but was not
as used. */
struct A {
unsigned int a, b, c;
};
extern void abort (void);
extern void exit (int);
struct A bar (vo
www.eeworm.com/read/340665/3272037
h elf.h
/* Definitions for embedded ia64-elf target. */
/* This macro is a C statement to print on `stderr' a string describing the
particular machine description choice. */
#define TARGET_VERSION fpri
www.eeworm.com/read/340665/3272038
h linux.h
/* Definitions for ia64-linux target. */
/* This macro is a C statement to print on `stderr' a string describing the
particular machine description choice. */
#define TARGET_VERSION fprintf (st
www.eeworm.com/read/340665/3276094
c 900205_03.c
// g++ 1.36.1 bug 900205_03
// Section 6.6.3 of the cfront 2.0 Reference Manual says "A return statement
// without an expression can be used only in functions that do not return
// a value, that is,
www.eeworm.com/read/340665/3279259
c loop-12.c
/* Checks that pure functions are not treated as const. */
char *p;
static int __attribute__ ((pure))
is_end_of_statement (void)
{
return *p == '\n' || *p == ';' || *p == '!';
}
void foo (void)
www.eeworm.com/read/340665/3280414
c 20020207-1.c
/* This testcase ICEd because statement expression type was set, but was not
as used. */
struct A {
unsigned int a, b, c;
};
extern void abort (void);
extern void exit (int);
struct A bar (vo
www.eeworm.com/read/338541/3315640
java testsql.java
package lab;
import java.sql.*;
public class TestSql {
/**
* @param args
*/
private String url = "jdbc:odbc:testSql";
private Statement stmt;
private Connection con;
public void
www.eeworm.com/read/336126/3354080
java breaktest.java
// Fig. 5.11: BreakTest.java
// Using the break statement in a for structure
import javax.swing.JOptionPane;
public class BreakTest {
public static void main( String args[] )
{
Str