Searched defs:thiz (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/script/
H A DInvocable.java43 * @param thiz If the procedure is a member of a class
44 * defined in the script and thiz is an instance of that class
57 * @throws IllegalArgumentException if the specified thiz is null or the specified Object is
60 public Object invokeMethod(Object thiz, String name, Object... args) argument
98 * @param thiz The scripting object whose member functions are used to implement the methods of the interface.
109 public <T> T getInterface(Object thiz, Class<T> clasz); argument
/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DInterfaceImplementor.java50 private Object thiz; field in class:InterfaceImplementor.InterfaceImplementorInvocationHandler
53 public InterfaceImplementorInvocationHandler(Object thiz, argument
55 this.thiz = thiz;
68 if (thiz == null) {
71 return engine.invokeMethod(thiz, m.getName(), a);
80 public <T> T getInterface(Object thiz, Class<T> iface) argument
85 if (! isImplemented(thiz, iface)) {
91 new InterfaceImplementorInvocationHandler(thiz, accCtxt)));
94 protected boolean isImplemented(Object thiz, Clas argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoScriptEngine.java167 protected boolean isImplemented(Object thiz, Class<?> iface) {
170 if (thiz != null && !(thiz instanceof Scriptable)) {
171 thiz = cx.toObject(thiz, topLevel);
174 Scriptable localScope = (thiz != null)? (Scriptable) thiz :
261 public Object invokeMethod(Object thiz, String name, Object... args) argument
263 if (thiz == null) {
266 return invoke(thiz, nam
269 invoke(Object thiz, String name, Object... args) argument
316 getInterface(Object thiz, Class<T> clasz) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/font/
H A Dfontpath.c36 JNIEXPORT jstring JNICALL Java_sun_awt_Win32FontManager_getFontPath(JNIEnv *env, jobject thiz, jboolean noType1) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c580 (JNIEnv *env, jobject thiz, jboolean noType1) {
579 Java_sun_awt_X11FontManager_getFontPathNative(JNIEnv *env, jobject thiz, jboolean noType1) argument

Completed in 38 milliseconds