Searched refs:property (Results 1 - 25 of 142) sorted by relevance

123456

/openjdk7/jdk/test/java/beans/XMLEncoder/4741757/
H A DTestStackOverflow.java37 * The name of this field is the same as the name of property.
41 private int property; field in class:TestStackOverflow
44 this.property = value;
48 return this.property;
54 return test.property == this.property;
H A DTestFieldAccess.java37 * The name of this field is the same as the name of property.
41 private int property; field in class:TestFieldAccess
44 this.property = value;
48 return this.property;
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLLayer.h48 @property (nonatomic, retain) JNFJObjectWrapper *javaLayer;
49 @property (readwrite, assign) GLuint textureID;
50 @property (readwrite, assign) GLenum target;
51 @property (readwrite, assign) float textureWidth;
52 @property (readwrite, assign) float textureHeight;
55 @property (nonatomic, retain) CGLLayer *parentLayer;
56 @property (nonatomic, retain) CGLLayer *remoteLayer;
57 @property (nonatomic, retain) NSObject<JRSRemoteLayer> *jrsRemoteLayer;
/openjdk7/jdk/src/macosx/bundle/JavaAppLauncher/src/
H A DJVMArgs.h47 @property (retain, nonatomic) NSBundle *jreBundle;
48 @property (nonatomic) char *preferredJVMLib;
49 @property (nonatomic) JavaVMInitArgs vm_args;
50 @property (nonatomic) BOOL startOnFirstThread;
51 @property (nonatomic) BOOL debug;
53 @property (retain, nonatomic) NSDictionary *appInfo;
54 @property (retain, nonatomic) NSMutableDictionary *jvmInfo;
56 @property (retain, nonatomic) NSString *userHome;
57 @property (retain, nonatomic) NSString *appPackage;
58 @property (retai
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DMessages.java38 public static String format( String property ) {
39 return format( property, null );
42 public static String format( String property, Object arg1 ) { argument
43 return format( property, new Object[]{arg1} );
46 public static String format( String property, Object arg1, Object arg2 ) { argument
47 return format( property, new Object[]{arg1,arg2} );
50 public static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
51 return format( property, new Object[]{arg1,arg2,arg3} );
57 static String format( String property, Object[] args ) { argument
58 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/unmarshaller/
H A DMessages.java38 public static String format( String property ) {
39 return format( property, null );
42 public static String format( String property, Object arg1 ) { argument
43 return format( property, new Object[]{arg1} );
46 public static String format( String property, Object arg1, Object arg2 ) { argument
47 return format( property, new Object[]{arg1,arg2} );
50 public static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
51 return format( property, new Object[]{arg1,arg2,arg3} );
57 public static String format( String property, Object[] args ) { argument
58 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/util/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetMetaData.java64 * @param property <code>true</code> if the column is automatically
69 void setAutoIncrement(int columnIndex, boolean property) throws SQLException; argument
76 * @param property <code>true</code> if the column is case sensitive;
81 void setCaseSensitive(int columnIndex, boolean property) throws SQLException; argument
88 * @param property <code>true</code> if the column can be used in a
93 void setSearchable(int columnIndex, boolean property) throws SQLException; argument
100 * @param property <code>true</code> if the column is a cash value;
105 void setCurrency(int columnIndex, boolean property) throws SQLException; argument
113 * @param property one of the following constants:
120 void setNullable(int columnIndex, int property) throw argument
132 setSigned(int columnIndex, boolean property) argument
[all...]
/openjdk7/jdk/src/macosx/native/apple/applescript/
H A DAppleScriptExecutionContext.h37 @property (nonatomic, retain) NSString *source;
38 @property (nonatomic, retain) NSDictionary *context;
39 @property (nonatomic, retain) NSDictionary *error;
40 @property (nonatomic, retain) id returnValue;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DApplicationDelegate.h47 @property (nonatomic, retain) NSMenuItem *fPreferencesMenu;
48 @property (nonatomic, retain) NSMenuItem *fAboutMenu;
50 @property (nonatomic, retain) NSMenu *fDockMenu;
51 @property (nonatomic, retain) CMenuBar *fDefaultMenuBar;
H A DAWTWindow.h51 @property (nonatomic, retain) NSWindow *nsWindow;
53 @property (nonatomic, retain) JNFWeakJObjectWrapper *javaPlatformWindow;
54 @property (nonatomic, retain) CMenuBar *javaMenuBar;
55 @property (nonatomic, retain) NSWindow *growBoxWindow;
56 @property (nonatomic) NSSize javaMinSize;
57 @property (nonatomic) NSSize javaMaxSize;
58 @property (nonatomic) jint styleBits;
59 @property (nonatomic) BOOL isEnabled;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptionProperties.java75 * @param property.
77 void addEncryptionProperty(EncryptionProperty property); argument
82 * @param property.
84 void removeEncryptionProperty(EncryptionProperty property); argument
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4984912.java27 * @summary Tests property descriptors without getter and setter
47 private int property; field in class:Test4984912.SimpleBean
50 return this.property;
53 public void setProperty(int property) { argument
54 this.property = property;
61 PropertyDescriptor pdProperty = new PropertyDescriptor("property", SimpleBean.class, "getProperty", "setProperty");
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A Dhelper.js30 function colorize(property, regexp, color) {
32 f.addRule(new ColorFilter.ColorRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp)), color));
36 function remove(property, regexp) {
38 f.addRule(new RemoveFilter.RemoveRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp)), false, false));
42 function split(property, regexp) {
43 var f = new SplitFilter("", new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp)));
47 function removeInputs(property, regexp, from, to) {
50 f.addRule(new RemoveInputsFilter.RemoveInputsRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp))));
52 f.addRule(new RemoveInputsFilter.RemoveInputsRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regexp)), from));
54 f.addRule(new RemoveInputsFilter.RemoveInputsRule(new MatcherSelector(new Properties.RegexpPropertyMatcher(property, regex
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/windows/
H A DThemeReader.java56 public static Color getColor(String widget, int part, int state, int property) { argument
60 public static int getInt(String widget, int part, int state, int property) { argument
64 public static int getEnum(String widget, int part, int state, int property) { argument
68 public static boolean getBoolean(String widget, int part, int state, int property) { argument
72 public static boolean getSysBoolean(String widget, int property) { argument
76 public static Point getPoint(String widget, int part, int state, int property) { argument
80 public static Dimension getPosition(String widget, int part, int state, int property) { argument
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestMethods.java46 private static final String NAME = "property";
72 public void firePropertyChange(String property, Object oldValue, Object newValue) { argument
77 super.firePropertyChange(property, oldValue, newValue);
81 public void firePropertyChange(String property, int oldValue, int newValue) { argument
86 super.firePropertyChange(property, oldValue, newValue);
90 public void firePropertyChange(String property, boolean oldValue, boolean newValue) { argument
95 super.firePropertyChange(property, oldValue, newValue);
108 public void fireIndexedPropertyChange(String property, int index, Object oldValue, Object newValue) { argument
113 super.fireIndexedPropertyChange(property, index, oldValue, newValue);
117 public void fireIndexedPropertyChange(String property, in argument
126 fireIndexedPropertyChange(String property, int index, boolean oldValue, boolean newValue) argument
[all...]
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DJdkFinder.java33 private static String getExecutable(String executable, String property) { argument
34 String binPath = System.getProperty(property);
37 "System property '" + property + "' not set");
47 * property.
59 * property. Depending on value of {@code stableJdk} the method will look for
62 * set this property using '-Dtest.jdk=/path/to/jdk'.
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DWindowPropertyGetter.java39 private final XAtom property; field in class:WindowPropertyGetter
45 public WindowPropertyGetter(long window, XAtom property, long offset, argument
48 if (property.getAtom() == 0) {
49 throw new IllegalArgumentException("Property ATOM should be initialized first:" + property);
59 this.property = property;
70 public WindowPropertyGetter(long window, XAtom property, long offset, argument
73 this(window, property, offset, length, auto_delete, type.getAtom());
105 int status = XlibWrapper.XGetWindowProperty(XToolkit.getDisplay(), window, property.getAtom(),
109 if (isCachingSupported() && status == XConstants.Success && getData() != 0 && isCacheableProperty(property)) {
192 isCacheableProperty(XAtom property) argument
[all...]
H A DXPropertyCache.java31 * Implements abstract X window property caching mechanism. The
80 public static boolean isCached(long window, XAtom property) { argument
83 return entryMap.containsKey(property);
89 public static PropertyCacheEntry getCacheEntry(long window, XAtom property) { argument
92 return entryMap.get(property);
98 public static void storeCache(PropertyCacheEntry entry, long window, XAtom property) { argument
104 entryMap.put(property, entry);
111 public static void clearCache(long window, XAtom property) { argument
114 entryMap.remove(property);
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DQueuingApplicationDelegate.h45 @property(retain) id <NSApplicationDelegate> realDelegate;
47 @property(retain) NSMutableArray* queue;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
H A DMessages.java37 static String format( String property, Object... args ) { argument
38 String text = ResourceBundle.getBundle(Messages.class.getPackage().getName() + ".MessageBundle").getString(property);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DMessages.java37 static String format( String property, Object... args ) { argument
38 String text = ResourceBundle.getBundle(Messages.class.getPackage().getName() +".MessageBundle").getString(property);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DThemeReader.java149 int property);
151 public static Color getColor(String widget, int part, int state, int property) { argument
154 return getColor(getTheme(widget), part, state, property);
161 int property);
163 public static int getInt(String widget, int part, int state, int property) { argument
166 return getInt(getTheme(widget), part, state, property);
173 int property);
175 public static int getEnum(String widget, int part, int state, int property) { argument
178 return getEnum(getTheme(widget), part, state, property);
185 int property);
148 getColor(long theme, int part, int state, int property) argument
160 getInt(long theme, int part, int state, int property) argument
172 getEnum(long theme, int part, int state, int property) argument
184 getBoolean(long theme, int part, int state, int property) argument
187 getBoolean(String widget, int part, int state, int property) argument
197 getSysBoolean(long theme, int property) argument
199 getSysBoolean(String widget, int property) argument
208 getPoint(long theme, int part, int state, int property) argument
211 getPoint(String widget, int part, int state, int property) argument
220 getPosition(long theme, int part, int state, int property) argument
223 getPosition(String widget, int part, int state, int property) argument
[all...]

Completed in 414 milliseconds

123456