代码搜索结果

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

generic.t

#! #! This is a tmake template for building Win32 applications or libraries. #! #${ if ( Config("qt") ) { if ( !(Project("DEFINES") =~ /QT_NODLL/) && ((Project("DEFINES") =~ /QT_(?:MAKE)?DL

generic.t

#! #! This is a tmake template for building Win32 applications or libraries. #! #${ if ( Config("qt") ) { if ( $ENV{"QT_DLL"} && !$ENV{"QT_NODLL"} ) { Project('TMAKE_QT_DLL = 1'); if (

generic.t

#! #! This is a tmake template for building Win32 applications or libraries. #! #${ if ( Config("qt") ) { if ( $ENV{"QT_DLL"} && !$ENV{"QT_NODLL"} ) { Project('TMAKE_QT_DLL = 1'); if (

generic.t

#! #! This is a tmake template for building Win32 applications or libraries. #! #${ if ( Config("qt") ) { if ( !(Project("DEFINES") =~ /QT_NODLL/) && ((Project("DEFINES") =~ /QT_(?:MAKE)?DL

generic.t

#! #! This is a tmake template for building Win32 applications or libraries. #! #${ if ( Config("qt") ) { if ( !(Project("DEFINES") =~ /QT_NODLL/) && ((Project("DEFINES") =~ /QT_(?:MA

js.js

function Num(){ var berr=false; if (!(event.keyCode>=48 && event.keyCode

system.cpp

#include "rar.hpp" #ifndef _WIN_CE static int SleepTime=0; void InitSystemOptions(int SleepTime) { ::SleepTime=SleepTime; } #endif #if !defined(SFX_MODULE) && !defined(_WIN_CE) #if defined(_WIN

lisperror.java

package net.sf.yacas; class LispError { static String ErrorString(int aError) throws Exception { LISPASSERT(aError>=0 && aError < KLispNrErrors); // switch (aError) { if (aError

pppgetpass.sh

#!/bin/sh if [ -z "$DISPLAY" ]; then exec pppgetpass.vt "$@" else exec pppgetpass.gtk "$@" fi

maxofthree.java

//MaxOfThree.java //求三个数中的最大者 public class MaxOfThree { public static void main(String args[]) { int a=5; int b=6; int c=7; if(a>b) if(a>c) { System.out.pr