代码搜索结果

找到约 820,005 项符合 if 的代码

if-old.test

# Commands covered: if # # This file contains the original set of tests for Tcl's if command. # Since the if command is now compiled, a new set of tests covering # the new implementation is in the fi

if.h

/* if.h - network interface header file */ /* Copyright 2001 - 2005 Wind River Systems, Inc. */ /* * Copyright (c) 1982, 1986, 1989, 1993 * The Regents of the University of California. All rights

if.h

/* net/if.h -- declarations for inquiring about network interfaces Copyright (C) 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free softwar

if.h

/* net/if.h -- declarations for inquiring about network interfaces Copyright (C) 1997,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library

if.c

/* if.c - network interface utility routines */ /* Copyright 1984 - 2002 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* $NetBSD: if.c,v 1.18 1994/10/30 21:48:46 cgd Exp $ */ /* * Copyri

if.c

/* if.c - network interface utility routines */ /* Copyright 1984 - 2002 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* $NetBSD: if.c,v 1.18 1994/10/30 21:48:46 cgd Exp $ */ /* * Copyri

if.c

/* if.c - network interface utility routines */ /* Copyright 1984 - 2002 Wind River Systems, Inc. */ #include "copyright_wrs.h" /* $NetBSD: if.c,v 1.18 1994/10/30 21:48:46 cgd Exp $ */ /* * Copyri

if.js

// create two variables var msg, num; num = 7; // test if the number is not exactly divisible by 2 if ( num % 2 != 0 ) { msg = num + " is an odd number."; alert( msg ); }

if-else.js

var num = 2, bool = false; // is the number 1 and the boolean value true ? if(num == 1 && bool == 1) alert("TEST1 bool: " + bool); else // is the number 2 and the boolean value true ? if(num ==

if-prompt.js

// initialize a variable with a null value var username = null; if ( username == null ) { // ask the user for their name username = prompt( "Please Enter Your Name", "" ); // ... or gree