Searched defs:modifiers (Results 1 - 25 of 113) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DWatchable.java52 * registration, is returned after changing the event set or modifiers to
53 * those specified by the {@code events} and {@code modifiers} parameters.
70 * @param modifiers
71 * the modifiers, if any, that modify how the object is registered
77 * if unsupported events or modifiers are specified
79 * if an invalid of combination of events are modifiers are specified
91 WatchEvent.Modifier... modifiers)
89 register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers) argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DAccessible.java43 * programming language modifiers, encoded in an integer.
49 public int modifiers(); method in interface:Accessible
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_AWTEvent.h44 jfieldID modifiers; member in struct:InputEventIDs
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DFieldInfo.java39 private int modifiers; field in class:FieldInfo
59 public int modifiers() { method in class:FieldInfo
60 return modifiers;
69 return (Modifier.isPublic(modifiers()));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DKeyStroke.java35 * KeyEvents do. In all cases, KeyStrokes can specify modifiers (alt, shift,
73 private KeyStroke(char keyChar, int keyCode, int modifiers, argument
75 super(keyChar, keyCode, modifiers, onKeyRelease);
114 * set of modifiers. Note that the first parameter is of type Character
116 * <code>getKeyStroke(int keyCode, int modifiers)</code>.
118 * The modifiers consist of any combination of following:<ul>
125 * The old modifiers listed below also can be used, but they are
126 * mapped to _DOWN_ modifiers. <ul>
133 * also can be used, but they are mapped to _DOWN_ modifiers.
137 * key. Use 0 to specify no modifiers
147 getKeyStroke(Character keyChar, int modifiers) argument
197 getKeyStroke(int keyCode, int modifiers, boolean onKeyRelease) argument
246 getKeyStroke(int keyCode, int modifiers) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DMenuKeyEvent.java62 * @param modifiers an int specifying any modifier keys held down,
71 public MenuKeyEvent(Component source, int id, long when, int modifiers, argument
74 super(source, id, when, modifiers, keyCode, keyChar);
H A DMenuDragMouseEvent.java64 * @param modifiers an int specifying any modifier keys held down,
79 int modifiers, int x, int y, int clickCount,
82 super(source, id, when, modifiers, x, y, clickCount, popupTrigger);
97 * @param modifiers an int specifying any modifier keys held down,
117 int modifiers, int x, int y, int xAbs,
121 super(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount,
78 MenuDragMouseEvent(Component source, int id, long when, int modifiers, int x, int y, int clickCount, boolean popupTrigger, MenuElement p[], MenuSelectionManager m) argument
116 MenuDragMouseEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, MenuElement p[], MenuSelectionManager m) argument
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DProgramElementDoc.java78 * Get modifiers string.
86 String modifiers(); method in interface:ProgramElementDoc
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DIdentifierToken.java43 int modifiers; field in class:IdentifierToken
59 public IdentifierToken(long where, Identifier id, int modifiers) { argument
62 this.modifiers = modifiers;
75 /** The modifiers associated with the occurrence, if any. */
77 return modifiers;
H A DBinaryMember.java50 public BinaryMember(ClassDefinition clazz, int modifiers, Type type, argument
52 super(0, clazz, modifiers, type, name, null, null);
57 this.modifiers |= M_DEPRECATED;
62 this.modifiers |= M_SYNTHETIC;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDragSourceProtocolListener.java55 * @param modifiers the keyboard modifiers state for the reply
57 void handleDragReply(int action, int x, int y, int modifiers); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DTypeComponentImpl.java59 abstract public int modifiers(); method in class:TypeComponentImpl
H A DFieldImpl.java174 public int modifiers() { method in class:FieldImpl
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWButtonPeer.java69 public void handleAction(final long when, final int modifiers) { argument
76 when, modifiers));
/openjdk7/jdk/test/javax/swing/regtesthelpers/
H A DUtil.java174 * Gets the key codes list from modifiers
175 * @param modifiers an integer combination of the modifier constants
178 public static ArrayList<Integer> getKeyCodesFromKeyMask(int modifiers) { argument
180 if ((modifiers & InputEvent.CTRL_MASK) != 0) {
183 if ((modifiers & InputEvent.ALT_MASK) != 0) {
186 if ((modifiers & InputEvent.SHIFT_MASK) != 0) {
189 if ((modifiers & InputEvent.META_MASK) != 0) {
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DAccessibleObject.java226 void checkAccess(Class<?> caller, Class<?> clazz, Object obj, int modifiers) argument
235 && Modifier.isProtected(modifiers)
253 slowCheckMemberAccess(caller, clazz, obj, modifiers, targetClass);
257 void slowCheckMemberAccess(Class<?> caller, Class<?> clazz, Object obj, int modifiers, argument
261 Reflection.ensureMemberAccess(caller, clazz, obj, modifiers);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DFieldImpl.java37 String genericSignature, int modifiers) {
39 genericSignature, modifiers);
34 FieldImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
H A DNonConcreteMethodImpl.java50 String genericSignature, int modifiers) {
54 genericSignature, modifiers);
46 NonConcreteMethodImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
H A DTypeComponentImpl.java40 private final int modifiers; field in class:TypeComponentImpl
45 String genericSignature, int modifiers) {
57 this.modifiers = modifiers;
71 public int modifiers() { method in class:TypeComponentImpl
72 return modifiers;
114 return (modifiers & compareBits) != 0;
42 TypeComponentImpl(VirtualMachine vm, ReferenceTypeImpl declaringType, long ref, String name, String signature, String genericSignature, int modifiers) argument
/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceDragEvent.java88 * The argument <code>modifiers</code> should be either a bitwise mask
93 * <code>action</code> and <code>modifiers</code>.
99 * @param modifiers the modifier keys down during event (shift, ctrl,
101 * Either extended _DOWN_MASK or old _MASK modifiers
103 * in one event. Use of the extended modifiers is
113 int action, int modifiers) {
117 gestureModifiers = modifiers;
119 if ((modifiers & ~(JDK_1_3_MODIFIERS | JDK_1_4_MODIFIERS)) != 0) {
133 * modifiers and coordinates.
137 * The argument <code>modifiers</cod
112 DragSourceDragEvent(DragSourceContext dsc, int dropAction, int action, int modifiers) argument
162 DragSourceDragEvent(DragSourceContext dsc, int dropAction, int action, int modifiers, int x, int y) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DActionEvent.java131 int modifiers; field in class:ActionEvent
177 * @param modifiers The modifier keys down during event
180 * Zero value means that no modifiers were passed
187 public ActionEvent(Object source, int id, String command, int modifiers) { argument
188 this(source, id, command, 0, modifiers);
207 * @param modifiers The modifier keys down during event
210 * Zero value means that no modifiers were passed
224 int modifiers) {
228 this.modifiers = modifiers;
223 ActionEvent(Object source, int id, String command, long when, int modifiers) argument
[all...]
H A DMouseWheelEvent.java162 * specified source component, type, modifiers, coordinates,
175 * @param modifiers the modifier keys down during event
195 public MouseWheelEvent (Component source, int id, long when, int modifiers, argument
199 this(source, id, when, modifiers, x, y, 0, 0, clickCount,
205 * specified source component, type, modifiers, coordinates,
219 * @param modifiers the modifier keys down during event
242 public MouseWheelEvent (Component source, int id, long when, int modifiers, argument
246 this(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount, popupTrigger,
254 * source component, type, modifiers, coordinates, absolute coordinates,
267 * @param modifiers th
296 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DStackFrameImpl.c381 jint modifiers; local
383 error = methodModifiers(method, &modifiers);
392 if (modifiers & (MOD_STATIC | MOD_NATIVE)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DProgramElementDocImpl.java66 private int modifiers = -1; field in class:ProgramElementDocImpl
94 if (modifiers == -1) {
95 modifiers = DocEnv.translateModifiers(getFlags());
97 return modifiers;
127 int modifiers = getModifiers();
130 return modifiers & ~Modifier.ABSTRACT;
131 return modifiers;
135 * Get modifiers string.
139 * modifiers() would return:
144 public String modifiers() { method in class:ProgramElementDocImpl
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6397044.java100 private void check(CharSequence name, ModifiersTree modifiers) { argument
101 long sysflags = ((JCModifiers) modifiers).flags;
102 System.err.println(name + ": " + modifiers.getFlags() + " | " + Flags.toString(sysflags));
105 String found = modifiers.getFlags().toString();

Completed in 76 milliseconds

12345