代码搜索结果
找到约 820,005 项符合
if 的代码
if-2.c
/* { dg-do preprocess } */
/* { dg-options -pedantic-errors } */
#if 'a' != 'a' || '\001' != 1 || '\x12' != 0x12
#error a,1,0x12 /* { dg-bogus "#error" "basic charconst recognition" } */
#endif
#if
if-shift.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* Test shift operators. */
#if 1 >
if-mop.c
/* Copyright (C) 2000 Free Software Foundation, Inc. */
/* { dg-do preprocess } */
/* Source: Neil Booth. */
/* Various illegal expressions with missing components. */
#if /* { dg-error "no ex
if.h
/* $USAGI: if.h,v 1.1 2001/01/22 03:46:03 yoshfuji Exp $ */
/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free softwar
if.h
/* $USAGI: if.h,v 1.3 2001/02/23 13:52:59 yoshfuji Exp $ */
/* net/if.h -- declarations for inquiring about network interfaces
Copyright (C) 1997,98,99,2000,2001 Free Software Foundation, Inc.
if.c
/***********************************************************************
*
* if.c
*
* Implementation of user-space PPPoE redirector for Linux.
*
* Functions for opening a raw socket and reading/writin
if.java
package gep.bool;
import gep.Expression;
import java.util.ArrayList;
import java.util.List;
/**
* 条件表达式
*/
public class If implements BExpression
{
public static final char code = 'F';
public s
if.cpp
/****************************/
/* FastScript v1.0 */
/* 'If' operator demo */
/****************************/
int i;
void OK(int n)
{
ShowMessage(n);
}
{
i = 10;
if.cpp
/****************************/
/* FastScript v1.0 */
/* 'If' operator demo */
/****************************/
void OK(int n)
{
ShowMessage(n);
}
{
int i = 10;
if(i
if.js
//****************************/
//* FastScript v1.0 */
//* 'If' operator demo */
//****************************/
var i = 10;
if(i == 10) { i = 1; }
if (i == 1) ShowMes