代码搜索:Invoke

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

代码结果 4,823
www.eeworm.com/read/233448/4687765

c invoke.c

#include JNIEXPORT jint JNICALL Java_invoke_val (JNIEnv *env, jclass klass) { return 23; }
www.eeworm.com/read/233448/4687775

out invoke.out

trying... loaded 23
www.eeworm.com/read/221464/4829866

hpp invoke.hpp

#if !defined(BOOST_PP_IS_ITERATING) // Copyright David Abrahams 2002. Permission to copy, use, // modify, sell and distribute this software is granted provided this // copyright notice appears in
www.eeworm.com/read/216802/4881817

rbuild invoke.rbuild

file1.c
www.eeworm.com/read/215493/4902708

java invoke.java

/* * Bytecode Analysis Framework * Copyright (C) 2003,2004 University of Maryland * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser
www.eeworm.com/read/205824/5016663

rbuild invoke.rbuild

file1.c
www.eeworm.com/read/190666/5180634

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/190666/5180649

c invoke.c

#include jint Java_invoke_val (JNIEnv *env, jclass klass) { return 23; }
www.eeworm.com/read/190666/5180656

out invoke.out

trying... loaded 23
www.eeworm.com/read/174538/5360732

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