Searched refs:accessible (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCAccessible.java78 private Accessible accessible; field in class:CAccessible
80 private CAccessible(final Accessible accessible) { argument
83 if (accessible == null) throw new NullPointerException();
84 this.accessible = accessible;
86 if (accessible instanceof Component) {
87 addNotificationListeners((Component)accessible);
99 return accessible.getAccessibleContext();
149 return (a instanceof CAccessible) ? ((CAccessible)a).accessible : a;
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.hpp66 jbyte accessible; // ready to access member in struct:__anon420
154 _prologue->accessible = value;
H A DperfMemory.cpp145 _prologue->accessible = 0;
H A DvmStructs.cpp637 nonstatic_field(PerfDataPrologue, accessible, jbyte) \
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DJSnap.java35 if (prologue.accessible()) {
48 out.println("PerfMemory is not accessible");
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DJavaComponentAccessibility.h50 - (id)initWithParent:(NSObject*)parent withEnv:(JNIEnv *)env withAccessible:(jobject)accessible withIndex:(jint)index withView:(NSView *)view withJavaRole:(NSString *)javaRole;
55 - (BOOL)isAccessibleWithEnv:(JNIEnv *)env forAccessible:(jobject)accessible;
60 + (JavaComponentAccessibility *) createWithParent:(JavaComponentAccessibility *)parent accessible:(jobject)jaccessible role:(NSString *)javaRole index:(jint)index withEnv:(JNIEnv *)env withView:(NSView *)view;
H A DJavaAccessibilityUtilities.h51 jobject getAxContext(JNIEnv *env, jobject accessible, jobject component);
52 BOOL isChildSelected(JNIEnv *env, jobject accessible, jint index, jobject component);
H A DJavaAccessibilityUtilities.m101 jobject getAxContext(JNIEnv *env, jobject accessible, jobject component)
104 return JNFCallStaticObjectMethod(env, jm_getAccessibleContext, accessible, component); // AWT_THREADING Safe (AWTRunLoopMode)
107 BOOL isChildSelected(JNIEnv *env, jobject accessible, jint index, jobject component)
110 return JNFCallStaticBooleanMethod(env, jm_isAccessibleChildSelected, accessible, index, component); // AWT_THREADING Safe (AWTRunLoopMode)
H A DJavaComponentAccessibility.m102 - (id)initWithParent:(NSObject *)parent withEnv:(JNIEnv *)env withAccessible:(jobject)accessible withIndex:(jint)index withTabGroup:(jobject)tabGroup withView:(NSView *)view withJavaRole:(NSString *)javaRole;
131 - (id)initWithParent:(NSObject *)parent withEnv:(JNIEnv *)env withAccessible:(jobject)accessible withIndex:(jint)index withView:(NSView *)view withJavaRole:(NSString *)javaRole
140 fAccessible = JNFNewGlobalRef(env, accessible);
231 - (BOOL)isAccessibleWithEnv:(JNIEnv *)env forAccessible:(jobject)accessible
233 return (*env)->IsSameObject(env, fAccessible, accessible);
310 JavaComponentAccessibility *child = [self createWithParent:parent accessible:jchild role:childJavaRole index:childIndex withEnv:env withView:parent->fView];
329 return [self createWithParent:nil accessible:jaccessible role:javaRole index:index withEnv:env withView:view];
332 + (JavaComponentAccessibility *) createWithParent:(JavaComponentAccessibility *)parent accessible:(jobject)jaccessible role:(NSString *)javaRole index:(jint)index withEnv:(JNIEnv *)env withView:(NSView *)view
384 // set accessible subrole
650 // Only special-casing for Lists, for now. This allows lists to be accessible, fixin
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DSAXMessages_fr.properties50 feature-read-only = La fonctionnalit\u00E9 ''{0}''est accessible en lecture seule.
56 property-read-only = La propri\u00E9t\u00E9 ''{0}'' est accessible en lecture seule.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfDataPrologue.java58 accessibleField = type.getJByteField("accessible");
83 public boolean accessible() { method in class:PerfDataPrologue
/openjdk7/jdk/src/share/classes/sun/instrument/
H A DInstrumentationImpl.java284 private static void setAccessible(final AccessibleObject ao, final boolean accessible) { argument
287 ao.setAccessible(accessible);
375 // make it accessible so we can call it
/openjdk7/jdk/test/java/lang/invoke/
H A DAccessControlTest.java143 * protected members will not be accessible by virtue of inheritance.
144 * (Protected members may continue to be accessible because of package sharing.)
146 * than the old one, protected and default (package) members will not be accessible.
148 * as the old one, private members will not be accessible.
149 * <li>[A6] If the new lookup class is not accessible to the old lookup class,
151 * then no members, not even public members, will be accessible.
152 * [A7] (In all other cases, public members will continue to be accessible.)
168 boolean accessible = sameClass; // [A6]
169 if ((m1 & PACKAGE) != 0) accessible |= samePackage;
170 if ((m1 & PUBLIC ) != 0) accessible |
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DSecurity.java821 boolean accessible = false;
825 accessible = f.isAccessible();
829 accessible = f.isAccessible();
833 f.setAccessible(accessible);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryClass.java315 // Is the class accessible?
334 // and local classes are still not considered accessible, though
338 boolean accessible =
356 if (accessible) {
/openjdk7/hotspot/make/windows/
H A Dbuild.bat32 REM that "grep" be accessible on the PATH. An MKS install does this.
H A Dcreate.bat37 REM that "grep" be accessible on the PATH. An MKS install does this.
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java67 * The root accessible context for the document
341 * Gets the 0-based index of this object in its accessible parent.
344 * object does not have an accessible parent.
355 * Returns the number of accessible children of the object.
357 * @return the number of accessible children of the object.
1646 * Gets the 0-based index of this object in its accessible parent.
1649 * object does not have an accessible parent.
1660 * Returns the number of accessible children of the object.
1662 * @return the number of accessible children of the object.
1868 * Returns a boolean value indicating whether the accessible a
2553 private Accessible accessible; field in class:AccessibleHTML.TableElementInfo.TableCellElementInfo
[all...]

Completed in 132 milliseconds