Searched defs:name (Results 201 - 225 of 3245) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftControl.java35 public double[] get(int instance, String name); argument
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/
H A DNamedWeakReference.java30 * A NamedWeakReference is a WeakReference with an immutable string name.
38 private final String name; field in class:NamedWeakReference
40 NamedWeakReference(Object referent, String name) { argument
42 this.name = name;
46 return name;
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLPermission.java41 * An SSLPermission contains a name (also referred to as a "target name") but
45 * The target name is the name of the network permission (see below). The naming
48 * may appear at the end of the name, following a ".", or by itself, to
68 * an HttpsURLConnection and the common name field in
108 * Creates a new SSLPermission with the specified name.
109 * The name is the symbolic name of the SSLPermission, such as
111 * may appear at the end of the name, followin
117 SSLPermission(String name) argument
133 SSLPermission(String name, String actions) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DNTSidDomainPrincipal.java55 * @param name a string version of the Windows NT SID for this
58 * @exception NullPointerException if the <code>name</code>
61 public NTSidDomainPrincipal(String name) { argument
62 super(name);
76 ("NTSidDomainPrincipal.name",
H A DNTSidGroupPrincipal.java48 * Create an <code>NTSidGroupPrincipal</code> with a Windows NT group name.
52 * @param name the Windows NT group SID for this user. <p>
54 * @exception NullPointerException if the <code>name</code>
57 public NTSidGroupPrincipal(String name) { argument
58 super(name);
71 ("NTSidGroupPrincipal.name",
H A DNTSidPrimaryGroupPrincipal.java52 * @param name the primary Windows NT group SID for this user. <p>
54 * @exception NullPointerException if the <code>name</code>
57 public NTSidPrimaryGroupPrincipal(String name) { argument
58 super(name);
73 ("NTSidPrimaryGroupPrincipal.name",
H A DNTSidUserPrincipal.java51 * @param name a string version of the Windows NT SID for this user.<p>
53 * @exception NullPointerException if the <code>name</code>
56 public NTSidUserPrincipal(String name) { argument
57 super(name);
70 ("NTSidUserPrincipal.name",
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DAttachPermission.java36 * <p> An <code>AttachPermission</code> object contains a name (also referred
37 * to as a "target name") but no actions list; you either have the
44 * target name, what the permission allows, and associated risks">
90 * @param name Permission name. Must be either "attachVirtualMachine",
93 * @throws NullPointerException if name is <code>null</code>.
94 * @throws IllegalArgumentException if the name is invalid.
96 public AttachPermission(String name) { argument
97 super(name);
98 if (!name
115 AttachPermission(String name, String actions) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Djvm_bsd.cpp132 const char *name; member in struct:siglabel
171 JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
176 if(!strcmp(name, siglabels[i].name))
187 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
/openjdk7/hotspot/src/os/linux/vm/
H A Djvm_linux.cpp132 const char *name; member in struct:siglabel
178 JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
183 if(!strcmp(name, siglabels[i].name))
194 jio_snprintf(buf, len, "SIG%s", siglabels[i].name);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DRemoveSelfLoopsFilter.java40 private String name; field in class:RemoveSelfLoopsFilter
43 public RemoveSelfLoopsFilter(String name) { argument
44 this.name = name;
48 return name;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compiler.hpp45 virtual const char* name() { return "C1"; } function in class:Compiler
/openjdk7/hotspot/src/share/vm/ci/
H A DciArrayKlass.cpp49 ciArrayKlass::ciArrayKlass(ciSymbol* name, int dimension, ciKlass* klass) argument
50 : ciKlass(name, klass) {
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNameNode.java33 String name; field in class:NameNode
35 NameNode(String name) { argument
36 this.name = name;
40 return name;
49 return name;
H A DNameValueNode.java35 NameValueNode(String name, String val) { argument
36 super(name);
40 NameValueNode(String name, int ival) { argument
41 super(name);
50 return name + "=" + val;
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DCharElementHandler.java63 * @param name the attribute name
67 public void addAttribute(String name, String value) { argument
68 if (name.equals("code")) { // NON-NLS: the attribute name
74 super.addAttribute(name, value);
H A DVarElementHandler.java58 * @param name the attribute name
62 public void addAttribute(String name, String value) { argument
63 if (name.equals("idref")) { // NON-NLS: the attribute name
66 super.addAttribute(name, value);
78 throw new IllegalArgumentException("Variable name is not set");
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/
H A DClassFinder.java31 * to find a class with the specified name using the specified class loader.
41 * with the class or interface with the given string name,
44 * The {@code name} can denote an array class
47 * @param name fully qualified name of the desired class
58 public static Class<?> findClass(String name) throws ClassNotFoundException { argument
59 checkPackageAccess(name);
67 return Class.forName(name, false, loader);
75 return Class.forName(name);
80 * the class or interface with the given string name,
99 findClass(String name, ClassLoader loader) argument
136 resolveClass(String name) argument
168 resolveClass(String name, ClassLoader loader) argument
[all...]
H A DFieldFinder.java34 * to find a public field with specified name
48 * @param name the name of field to find
53 public static Field findField(Class<?> type, String name) throws NoSuchFieldException { argument
54 if (name == null) {
55 throw new IllegalArgumentException("Field name is not set");
57 Field field = type.getField(name);
59 throw new NoSuchFieldException("Field '" + name + "' is not public");
63 throw new NoSuchFieldException("Field '" + name + "' is not accessible");
73 * @param name th
78 findInstanceField(Class<?> type, String name) argument
96 findStaticField(Class<?> type, String name) argument
[all...]
H A DPrimitiveTypeMap.java32 * name of primitive type with appropriate class.
41 * Returns primitive type class by its name.
43 * @param name the name of primitive type
47 static Class<?> getType(String name) { argument
48 return map.get(name);
H A DPrimitiveWrapperMap.java32 * name of primitive type with appropriate wrapper.
57 * Returns wrapper for primitive type by its name.
59 * @param name the name of primitive type
63 public static Class<?> getType(String name) { argument
64 return map.get(name);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLCollection.java48 * be accessed by either ordinal index or the node's<code>name</code> or
72 * This method retrieves a <code>Node</code> using a name. It first
75 * <code>Node</code> with a matching <code>name</code> attribute, but
76 * only on those elements that are allowed a name attribute.
77 * @param name The name of the <code>Node</code> to be fetched.
78 * @return The <code>Node</code> with a <code>name</code> or
80 * string. Upon failure (e.g., no node with this name exists), returns
83 public Node namedItem(String name); argument
H A DHTMLMapElement.java55 * Names the map (for use with <code>usemap</code> ). See the name
59 public void setName(String name); argument
/openjdk7/jaxp/src/org/xml/sax/
H A DAttributeList.java64 * public void startElement (String name, AttributeList atts) {
66 * String name = atts.getName(i);
81 * public void startElement (String name, AttributeList atts) {
118 * Return the name of an attribute in this list (by position).
125 * <p>If the attribute name has a namespace prefix, the prefix
129 * @return The name of the indexed attribute, or null
183 * Return the type of an attribute in the list (by name).
188 * <p>If the attribute name has a namespace prefix in the document,
191 * @param name The name o
196 getType(String name) argument
213 getValue(String name) argument
[all...]
H A DDTDHandler.java94 * @param name The notation name.
104 public abstract void notationDecl (String name, argument
113 * <p>Note that the notation name corresponds to a notation
125 * @param name The unparsed entity's name.
129 * @param notationName The name of the associated notation.
133 public abstract void unparsedEntityDecl (String name, argument

Completed in 69 milliseconds

1234567891011>>