Searched defs:name (Results 151 - 175 of 3245) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciKlass.java50 public String name() { method in class:ciKlass
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DProcessInfo.java27 /** Simple wrapper class for name and process ID information.
31 public ProcessInfo(String name, int pid) { argument
32 this.name = name;
37 return name;
44 private String name; field in class:ProcessInfo
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DTenuredGeneration.java38 public String name() { method in class:TenuredGeneration
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DRBColor.java34 return name;
37 private RBColor(String name) { argument
38 this.name = name;
40 private String name; field in class:RBColor
H A DTwoOopHashtable.java35 public long computeHash(Symbol name, Oop loader) { argument
36 return ((int) name.identityHash()
40 public int indexFor(Symbol name, Oop loader) { argument
41 return hashToIndex(computeHash(name, loader));
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DObjectFactory.java37 * For example, when looking up a printer bound in the name space,
111 * name "o=wiz, c=us" at the LDAP server ldap.wiz.com. This context can
129 * The <tt>name</tt> and <tt>environment</tt> parameters
136 * <a name=NAMECTX></a>
138 * The <code>name</code> and <code>nameCtx</code> parameters may
139 * optionally be used to specify the name of the object being created.
140 * <code>name</code> is the name of the object, relative to context
146 * If <code>nameCtx</code> is null, <code>name</code> is relative
147 * to the default initial context. If no name i
171 getObjectInstance(Object obj, Name name, Context nameCtx, Hashtable<?,?> environment) argument
[all...]
H A DStateFactory.java36 * For example, when looking up a printer bound in the name space,
104 * The <code>name</code> and <code>nameCtx</code> parameters may
105 * optionally be used to specify the name of the object being created.
113 * The <tt>name</tt> and <tt>environment</tt> parameters
119 * @param name The name of this object relative to <code>nameCtx</code>,
120 * or null if no name is specified.
121 * @param nameCtx The context relative to which the <code>name</code>
122 * parameter is specified, or null if <code>name</code> is
135 public Object getStateToBind(Object obj, Name name, Contex argument
[all...]
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLSessionBindingEvent.java38 * event of this type. The event's <code>name</code> field is the
55 * @serial The name to which the object is being bound or unbound
57 private String name; field in class:SSLSessionBindingEvent
63 * @param name the name to which the object is being bound or unbound
66 public SSLSessionBindingEvent(SSLSession session, String name) argument
69 this.name = name;
73 * Returns the name to which the object is being bound, or the name
[all...]
/openjdk7/jdk/src/share/classes/javax/script/
H A DInvocable.java41 * @param name The name of the procedure to be called.
55 * @throws NoSuchMethodException if method with given name or matching argument types cannot be found.
56 * @throws NullPointerException if the method name is null.
60 public Object invokeMethod(Object thiz, String name, Object... args) argument
70 * @throws NoSuchMethodException if method with given name or matching argument types cannot be found.
71 * @throws NullPointerException if method name is null.
73 public Object invokeFunction(String name, Object... args) argument
/openjdk7/jdk/src/share/classes/javax/security/auth/login/
H A DConfigurationSpi.java47 * Retrieve the AppConfigurationEntries for the specified <i>name</i>.
51 * @param name the name used to index the Configuration.
54 * <i>name</i>, or null if there are no entries.
57 (String name);
56 engineGetAppConfigurationEntry(String name) argument
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DInstrument.java68 * @param name the name of this instrument
73 protected Instrument(Soundbank soundbank, Patch patch, String name, Class<?> dataClass) { argument
75 super(soundbank, name, dataClass);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DFontUIResource.java52 public FontUIResource(String name, int style, int size) { argument
53 super(name, style, size);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPosition.java84 return name;
87 private Bias(String name) { argument
88 this.name = name;
91 private String name; field in class:Position.Bias
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DResourceLoader.java45 ResourceLoader(String name) { argument
46 this.name = name;
50 Object o = HTMLEditorKit.class.getResourceAsStream(name);
54 public static InputStream getResourceAsStream(String name) { argument
55 java.security.PrivilegedAction a = new ResourceLoader(name);
59 private String name; field in class:ResourceLoader
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DResourceLoader.java45 ResourceLoader(String name) { argument
46 this.name = name;
50 Object o = ParserDelegator.class.getResourceAsStream(name);
54 public static InputStream getResourceAsStream(String name) { argument
55 java.security.PrivilegedAction a = new ResourceLoader(name);
59 private String name; field in class:ResourceLoader
/openjdk7/jdk/src/share/classes/java/nio/
H A DByteOrder.java39 private String name; field in class:ByteOrder
41 private ByteOrder(String name) { argument
42 this.name = name;
86 return name;
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCodingErrorAction.java45 private String name; field in class:CodingErrorAction
47 private CodingErrorAction(String name) { argument
48 this.name = name;
81 return name;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DLinkPermission.java37 * summary="Table shows permission target name, what the permission allows, and associated risks">
68 private void checkName(String name) { argument
69 if (!name.equals("hard") && !name.equals("symbolic")) {
70 throw new IllegalArgumentException("name: " + name);
75 * Constructs a {@code LinkPermission} with the specified name.
77 * @param name
78 * the name of the permission. It must be "hard" or "symbolic".
81 * if name i
83 LinkPermission(String name) argument
100 LinkPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DAclFileAttributeView.java57 * <a name="interop"><h4>Interoperability</h4></a>
127 * FileAttribute#name name} {@code "acl:acl"} and a {@link FileAttribute#value
144 * Returns the name of the attribute view. Attribute views of this type
145 * have the name {@code "acl"}.
148 String name(); method in interface:AclFileAttributeView
H A DFileOwnerAttributeView.java43 * identified by the name {@code "owner"}, and the value of the attribute is
53 * Returns the name of the attribute view. Attribute views of this type
54 * have the name {@code "owner"}.
57 String name(); method in interface:FileOwnerAttributeView
H A DUserPrincipalLookupService.java31 * An object to lookup user and group principals by name. A {@link UserPrincipal}
35 * name or group name (which are typically user or account names). Whether names
62 * Lookup a user principal by name.
64 * @param name
77 public abstract UserPrincipal lookupPrincipalByName(String name) argument
81 * Lookup a group principal by group name.
H A DUserPrincipalNotFoundException.java42 private final String name; field in class:UserPrincipalNotFoundException
47 * @param name
48 * the principal name; may be {@code null}
50 public UserPrincipalNotFoundException(String name) { argument
52 this.name = name;
56 * Returns the user principal name if this exception was created with the
57 * user principal name that was not found, otherwise <tt>null</tt>.
59 * @return the user principal name or {@code null}
62 return name;
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DLoaderHandler.java51 * @param name the name of the class to load
63 Class<?> loadClass(String name) argument
70 * @param name the name of the class to load
82 Class<?> loadClass(URL codebase, String name) argument
/openjdk7/jdk/src/share/classes/java/sql/
H A DDriverPropertyInfo.java40 * name and value. The <code>description</code> and <code>choices</code>
44 * @param name the name of the property
47 public DriverPropertyInfo(String name, String value) { argument
48 this.name = name;
53 * The name of the property.
55 public String name; field in class:DriverPropertyInfo
/openjdk7/jdk/src/share/classes/javax/management/
H A DInstanceOfQueryExp.java41 * @serial The {@link StringValueExp} returning the name of the class
47 * Creates a new InstanceOfExp with a specific class name.
48 * @param classNameValue The {@link StringValueExp} returning the name of
54 // instance evaluating the class name from an AttributeValueExp.
60 throw new IllegalArgumentException("Null class name.");
67 * Returns the class name.
68 * @returns The {@link StringValueExp} returning the name of
78 * @param name The name of the MBean on which the InstanceOf will be applied.
80 * @return True if the MBean specified by the name i
86 apply(ObjectName name) argument
[all...]

Completed in 65 milliseconds

1234567891011>>