Searched defs:has (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DDefaultScriptObject.java31 * false always for "has" calls. And ignores "delete" and "put"
53 public boolean has(String name) { method in class:DefaultScriptObject
57 public boolean has(int index) { method in class:DefaultScriptObject
H A DScriptObject.java73 public boolean has(String name); method in interface:ScriptObject
78 public boolean has(int index); method in interface:ScriptObject
H A DJSJavaArray.java71 public boolean has(String name) { method in class:JSJavaArray
75 return super.has(name);
79 public boolean has(int index) { method in class:JSJavaArray
83 return super.has(index);
H A DJSJavaInstance.java62 public boolean has(String name) { method in class:JSJavaInstance
66 return super.has(name);
H A DJSList.java68 public boolean has(String name) { method in class:JSList
72 return super.has(name);
76 public boolean has(int index) { method in class:JSList
80 return super.has(index);
H A DJSMap.java57 public boolean has(String name) { method in class:JSMap
61 return super.has(name);
H A DMapScriptObject.java57 if (has(name)) {
65 if (has(index)) {
81 public boolean has(String name) { method in class:MapScriptObject
85 public boolean has(int index) { method in class:MapScriptObject
H A DJSJavaField.java93 public boolean has(String name) { method in class:JSJavaField
97 return super.has(name);
H A DJSJavaFrame.java76 public boolean has(String name) { method in class:JSJavaFrame
80 return super.has(name);
H A DJSJavaHeap.java74 public boolean has(String name) { method in class:JSJavaHeap
78 return super.has(name);
H A DJSJavaMethod.java109 public boolean has(String name) { method in class:JSJavaMethod
113 return super.has(name);
H A DJSJavaVM.java97 public boolean has(String name) { method in class:JSJavaVM
101 return super.has(name);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionEntry.java157 boolean has (Expression label) method in class:UnionEntry
171 } // has
173 boolean has (TypedefEntry typedef) method in class:UnionEntry
183 } // has
/openjdk7/jdk/src/share/instrument/
H A DInstrumentationImplNativeMethods.c81 (JNIEnv * jnienv, jobject implThis, jlong agent, jboolean has) {
82 setHasRetransformableTransformers(jnienv, (JPLISAgent*)(intptr_t)agent, has);
80 Java_sun_instrument_InstrumentationImpl_setHasRetransformableTransformers(JNIEnv * jnienv, jobject implThis, jlong agent, jboolean has) argument
H A DJPLISAgent.c201 * or NULL if an error has occurred.
276 * the agent has a ref to the jvmti; make it mutual
1061 setHasRetransformableTransformers(JNIEnv * jnienv, JPLISAgent * agent, jboolean has) { argument
1068 has? JVMTI_ENABLE : JVMTI_DISABLE,
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DExternalScriptable.java142 public synchronized boolean has(String name, Scriptable start) { method in class:ExternalScriptable
159 public synchronized boolean has(int index, Scriptable start) { method in class:ExternalScriptable
H A DJSAdapter.java112 public boolean has(String name, Scriptable start) { method in class:JSAdapter
119 return start.has(name, start);
123 public boolean has(int index, Scriptable start) { method in class:JSAdapter
130 return start.has(index, start);
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DInstrumentationImpl.java249 setHasRetransformableTransformers(long nativeAgent, boolean has); argument
307 // has 1 or 2 arguments. We check in the following order:
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c530 * window id and check if that window exists and has anchor_prop(anchor_type)
829 /* Now check that this window has _DT_SM_STATE_INFO (ignore contents) */
926 /* Now check that this window has _DT_WORKSPACE_CURRENT */
1304 * Latest stable version 1.0.8-6 still has this problem.
2253 jint has = 0; /* which flags the window already has */ local
2261 DTRACE_PRINT("WM: already has ");
2267 has |= java_awt_Frame_MAXIMIZED_HORIZ;
2270 has |= java_awt_Frame_MAXIMIZED_VERT;
2274 if ((has
[all...]
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java546 * the input has the property <i>prop</i>, while <tt>\P{</tt><i>prop</i><tt>}</tt>
547 * does not match if the input has that property.
660 * the specified property has the name <tt>java<i>methodname</i></tt>.
914 /* Pattern has only two serialized components: The pattern string
994 * Index into the pattern string that keeps track of how much has been
1141 * the resulting array has just one element, namely the input sequence in
1453 // source has one character.
1627 if (has(CANON_EQ) && !has(LITERAL)) {
1651 if (! has(LITERA
1770 private boolean has(int f) { method in class:Pattern
[all...]

Completed in 76 milliseconds