代码搜索:Invoke

找到约 4,823 项符合「Invoke」的源代码

代码结果 4,823
www.eeworm.com/read/123117/6062829

c invoke.c

#include #ifdef _WIN32 #define PATH_SEPARATOR ';' #else /* UNIX */ #define PATH_SEPARATOR ':' #endif #define USER_CLASSPATH "." /* where Prog.class is */ main() { JNIEnv *env; JavaV
www.eeworm.com/read/405286/11466833

java invoke.java

//file: Invoke.java import java.lang.reflect.*; class Invoke { public static void main( String [] args ) { try { Class c = Class.forName( args[0] ); Method m = c.getMethod( args[1],
www.eeworm.com/read/123658/14616594

texi invoke.texi

@c Copyright (C) 1988, 89, 92, 93, 94, 1995 Free Software Foundation, Inc. @c This is part of the GCC manual. @c For copying conditions, see the file gcc.texi. @node Invoking GCC @chapter GNU CC Comm
www.eeworm.com/read/11175/206524

asm invoke.asm

www.eeworm.com/read/13187/269632

texi invoke.texi

@c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, @c 2000, 2001 Free Software Foundation, Inc. @c This is part of the GCC manual. @c For copying conditions, see the file
www.eeworm.com/read/482889/1285166

hpp invoke.hpp

#if !defined(BOOST_PP_IS_ITERATING) // Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http:/
www.eeworm.com/read/472524/1409556

c invoke.c

#include #ifdef _WIN32 #define PATH_SEPARATOR ';' #else /* UNIX */ #define PATH_SEPARATOR ':' #endif #define USER_CLASSPATH "." /* where Prog.class is */ main() { JNIEnv *env; JavaV
www.eeworm.com/read/472524/1409580

c invoke.c

#include #ifdef _WIN32 #define PATH_SEPARATOR ';' #else /* UNIX */ #define PATH_SEPARATOR ':' #endif #define USER_CLASSPATH "." /* where Prog.class is */ main() { JNIEnv *env; JavaV
www.eeworm.com/read/470713/1453384

java invoke.java

// Test to make sure the minimal invocation works. public class invoke { public static native int val (); static { System.out.println ("trying..."); System.loadLibrary ("invoke");
www.eeworm.com/read/470713/1453399

c invoke.c

#include JNIEXPORT jint JNICALL Java_invoke_val (JNIEnv *env, jclass klass) { return 23; }