代码搜索:Check
找到约 10,000 项符合「Check」的源代码
代码结果 10,000
www.eeworm.com/read/250424/4430436
js check.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
www.eeworm.com/read/250243/4433396
check-gas
#!/bin/sh
dir=$(dirname $0)
CC=$1
OBJDUMP=$2
tmp=${TMPDIR:-/tmp}
out=$tmp/out$$.o
$CC -c $dir/check-gas-asm.S -o $out
res=$($OBJDUMP -r --section .data $out | fgrep 00004 | tr -s ' ' |cut -f3 -d' ')
r
www.eeworm.com/read/249120/4456199
js check.js
function checkValid()
{
if(document.myform.txt1.value=="")
{
alert("请输入姓名!");
}
else
{
alert("姓名:"+document.myform.txt1.value );
for(i=0;i
www.eeworm.com/read/248592/4467326
c check.c
check(char *ptr)
{
char *tptr;
while (*lineptr==' ')
lineptr++;
tptr = lineptr;
while (*ptr!='\0' && *ptr==*tptr)
{
ptr++;
tptr++;
}