代码搜索:Local

找到约 10,000 项符合「Local」的源代码

代码结果 10,000
www.eeworm.com/read/128068/7787528

asm toolbar.asm

; ######################################################################## Do_ToolBar PROTO :DWORD SetBmpColor PROTO :DWORD include tbmacros.asm .data hTbBmp
www.eeworm.com/read/434781/7801971

java foreign.java

// TIJ4 chapter Access, Exercise 9, page 233 /* Create in access/local directory in your CLASSPATH: * // access/local/PackagedClass.java * package access.local; * * class PackagedClass { * publi
www.eeworm.com/read/199890/7814845

c deadlinewddemo.c

/*deadlineWdDemo.c - Demo for invoking deadline handlers using watchdog timers*/ /* Copyright 1992 Wind River Systems, Inc. */ /* modification history -------------------- 01b,30oct02,brk fi
www.eeworm.com/read/199568/7844800

java scope.java

// Fig. 6.11: Scope.java // Scope class demonstrates field and local variable scopes. public class Scope { // field that is accessible to all methods of this class private int x = 1;
www.eeworm.com/read/199431/7859582

cpp symbol.cpp

#include #include #include int NUMBER; int main(void) { int NUMBER; clrscr(); NUMBER=1; printf("\n-*-*-*- Before changing the NUMBER -*-*-*-"); printf
www.eeworm.com/read/299228/7872465

pl rmold.pl

#! /usr/bin/perl -w # Copyright (C) 1995, 1996, 1997, 2007, 2008 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU
www.eeworm.com/read/199264/7873137

cpp symbol.cpp

#include #include #include int NUMBER; int main(void) { int NUMBER; clrscr(); NUMBER=1; printf("\n-*-*-*- Before changing the NUMBER -*-*-*-"); printf
www.eeworm.com/read/299064/7894471

install

### This is the INSTALL script for the the stuff in the linux directory. ### (2-22-98) DIR=$PWD cp -p modemu /usr/bin cp -p mtelnet /usr/bin cp -p lrz /usr/bin cp -p lsz /usr/bin if [ -d /usr/man/
www.eeworm.com/read/398754/7925333

lua strict.lua

-- -- strict.lua -- checks uses of undeclared global variables -- All global variables must be 'declared' through a regular assignment -- (even assigning nil will do) in a main chunk before being used
www.eeworm.com/read/398754/7925771

lua table.lua

-- make table, grouping all data for the same item -- input is 2 columns (item, data) local A while 1 do local l=io.read() if l==nil then break end local _,_,a,b=string.find(l,'"?([_%w]+)"?%s*(.*)