代码搜索:objects
找到约 10,000 项符合「objects」的源代码
代码结果 10,000
www.eeworm.com/read/113572/6127399
in makefile.in
CXX = @CXX@
CFLAGS = @JVOIP_CFLAGS@
INCLUDES = -I ../../componentframework/ -I ../../ -I ./ -I ../impl -I @JVOIP_JTHREADINCLUDES@ \
-I ../../thirdparty/gsm/inc -I ../../thirdparty/lpc
JVOIPLIBDI
www.eeworm.com/read/113536/6127871
asm glock.asm
;*
;* COW : Character Oriented Windows
;*
;* glock.asm : Global memory allocator - Locking procedures
.xlist
include kernel.inc
include galloc.inc
.list
sBegin KERNEL
assumes CS
www.eeworm.com/read/113165/6140791
lua simprag.lua
-- Set up a scene to demo the engine
------------------------------------
-- Function for adding things to the scene
function triggerScene( )
end
-- Create a new step
function createSte
www.eeworm.com/read/113165/6140792
rb boxstack.rb
# Set up a scene to demo the engine
###################
def random(x, y)
return (rand()*(y-x)+x)
end
## Function for adding things to the scene
def triggerScene( )
o = createBox( )
www.eeworm.com/read/113165/6140793
lua boxstack.lua
-- Set up a scene to demo the engine
------------------------------------
-- Function for adding things to the scene
function triggerScene( )
o = createBox( )
o:getPhysics( ):setLinearV
www.eeworm.com/read/113165/6140794
rb simprag.rb
# Set up a scene to $demo the engine
##################
def random(x, y)
return (rand()*(y-x)+x)
end
def createBox( )
newObject = $objects.createObject( $objects.getNextUniqueName( ), "bo
www.eeworm.com/read/110034/6168527
makefile
#
# linux/arch/etrax100/boot/compressed/Makefile
#
# create a compressed vmlinux image from the original vmlinux files and romfs
#
ifndef TOPDIR
TOPDIR = ../../../..
HPATH = $(TOPDIR)/include
export
www.eeworm.com/read/109236/6175709
makefile
##############################################################################
# Microwindows template Makefile
# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr
######################################
www.eeworm.com/read/109236/6175912
makefile
##############################################################################
# Microwindows template Makefile
# Copyright (c) 2000 Martin Jolicoeur, Greg Haerr
######################################
www.eeworm.com/read/108102/6186429
java prototypemanager.java
package com.javapatterns.prototype.manager;
import java.util.Vector;
public class PrototypeManager
{
public void add(Prototype object)
{
objects.add(object);
}
pu