Searched refs:name (Results 701 - 725 of 4739) sorted by relevance

<<21222324252627282930>>

/openjdk7/jaxp/src/org/w3c/dom/
H A DNamedNodeMap.java46 * represent collections of nodes that can be accessed by name. Note that
58 * Retrieves a node specified by name.
59 * @param name The <code>nodeName</code> of a node to retrieve.
64 public Node getNamedItem(String name); argument
68 * that name is already present in this map, it is replaced by the new
70 * <br>As the <code>nodeName</code> attribute is used to derive the name
98 * Removes a node specified by name. When this map contains the attributes
101 * default value as well as the corresponding namespace URI, local name,
103 * @param name The <code>nodeName</code> of the node to remove.
104 * @return The node removed from this map if a node with such a name
111 removeNamedItem(String name) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DInitializer.java42 public String name = null; field in class:Initializer
53 name = _name;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DTCOffsets.java59 * Return -1 if the given name is not in the list of types.
61 public int offset (String name) argument
63 Integer value = (Integer)tcs.get (name);
80 offset += alignStrLen (repID) + alignStrLen (entry.name ());
82 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 4;
84 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 12;
87 offset += alignStrLen (repID) + alignStrLen (entry.name ()) + 4;
96 offset += alignStrLen (repID) + alignStrLen (entry.name ());
122 offset += alignStrLen (entry.name ());
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DStructMember.java37 * the name of the <code>struct</code> member, the type of
48 * The name of the struct member described by
52 public String name; field in class:StructMember
77 * @param __name a <code>String</code> object with the name of the struct
85 name = __name;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCFPMoveInstruction.java32 public SPARCFPMoveInstruction(String name, int opf, SPARCFloatRegister rs, SPARCFloatRegister rd) { argument
33 super(name, opf, rs, rd);
H A DSPARCV9CasInstruction.java34 public SPARCV9CasInstruction(String name, SPARCRegisterIndirectAddress addr, argument
36 super(name, addr, rd);
H A DSPARCV9FMOVccInstruction.java34 public SPARCV9FMOVccInstruction(String name, int opf, int conditionCode, argument
37 super(name, opf, rs, rd);
H A DSPARCV9InstructionFactory.java30 public SPARCInstruction newV9BranchInstruction(String name, PCRelativeAddress addr, argument
32 public SPARCInstruction newV9RegisterBranchInstruction(String name, PCRelativeAddress addr, argument
35 public SPARCInstruction newV9CasInstruction(String name, SPARCRegisterIndirectAddress addr, argument
37 public SPARCInstruction newV9PrefetchInstruction(String name, SPARCRegisterIndirectAddress addr, argument
40 public SPARCInstruction newV9MOVccInstruction(String name, int conditionCode, int conditionFlag, argument
42 public SPARCInstruction newV9MOVrInstruction(String name, SPARCRegister rs1, argument
57 public SPARCInstruction newV9FMOVccInstruction(String name, int opf, int conditionCode, argument
60 public SPARCInstruction newV9FMOVrInstruction(String name, int opf, argument
H A DSPARCV9SpecialRegisterInstruction.java32 protected SPARCV9SpecialRegisterInstruction(String name) { argument
33 super(name);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicPointerType.java37 public BasicPointerType(BasicTypeDataBase db, String name, Type targetType) { argument
38 super(db, name, null);
/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/java/awt/im/
H A DInputSubset.java40 private InputSubset(String name) { argument
41 super(name);
/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/security/
H A DAuthProvider.java45 * Constructs a provider with the specified name, version number,
48 * @param name the provider name.
52 protected AuthProvider(String name, double version, String info) { argument
53 super(name, version, info);
66 * for the fully qualified class name of a default handler implementation.
83 * <code>SecurityPermission("authProvider.<i>name</i>")</code>,
84 * where <i>name</i> is the value returned by
96 * <code>SecurityPermission("authProvider.<i>name</i>")</code>,
97 * where <i>name</
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSearchResultWithControls.java35 public SearchResultWithControls(String name, Object obj, Attributes attrs, argument
38 super(name, obj, attrs, isRelative);
/openjdk7/jdk/src/share/classes/com/sun/management/
H A DHotSpotDiagnosticMXBean.java84 * name.
86 * @return a <tt>VMOption</tt> object for a VM option of the given name.
87 * @throws NullPointerException if name is <tt>null</tt>.
88 * @throws IllegalArgumentException if a VM option of the given name
91 public VMOption getVMOption(String name); argument
94 * Sets a VM option of the given name to the specified value.
100 * @param name Name of a VM option
103 * @throws IllegalArgumentException if the VM option of the given name
107 * @throws NullPointerException if name or value is <tt>null</tt>.
113 public void setVMOption(String name, Strin argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DAbstractGroupNode.java40 return name();
64 genJavaReadingClassBody(writer, depth, name());
68 genJavaWritingClassBody(writer, depth, name());
83 writer.print(name());
84 writer.print(" a" + name());
89 return name() + " a" + name();
110 writer.print(name());
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiIn.c43 INT32 MIDI_IN_GetDeviceName(INT32 deviceID, char *name, UINT32 nameLength) { argument
44 return MIDI_Utils_GetDeviceName(MIDI_IN, deviceID, name, nameLength);
48 INT32 MIDI_IN_GetDeviceVendor(INT32 deviceID, char *name, UINT32 nameLength) { argument
49 return MIDI_Utils_GetDeviceVendor(MIDI_IN, deviceID, name, nameLength);
53 INT32 MIDI_IN_GetDeviceDescription(INT32 deviceID, char *name, UINT32 nameLength) { argument
54 return MIDI_Utils_GetDeviceDescription(MIDI_IN, deviceID, name, nameLength);
58 INT32 MIDI_IN_GetDeviceVersion(INT32 deviceID, char *name, UINT32 nameLength) { argument
59 return MIDI_Utils_GetDeviceVersion(MIDI_IN, deviceID, name, nameLength);
/openjdk7/hotspot/src/share/vm/services/
H A DpsMemoryPool.cpp38 const char* name,
41 CollectedMemoryPool(name, type, gen->capacity_in_bytes(),
46 const char* name,
49 CollectedMemoryPool(name, type, gen->capacity_in_bytes(),
69 const char* name,
72 CollectedMemoryPool(name, type, space->capacity_in_bytes(),
92 const char* name,
95 CollectedMemoryPool(name, type, gen->from_space()->capacity_in_bytes(),
37 PSGenerationPool(PSOldGen* gen, const char* name, PoolType type, bool support_usage_threshold) argument
45 PSGenerationPool(PSPermGen* gen, const char* name, PoolType type, bool support_usage_threshold) argument
67 EdenMutableSpacePool(PSYoungGen* gen, MutableSpace* space, const char* name, PoolType type, bool support_usage_threshold) argument
91 SurvivorMutableSpacePool(PSYoungGen* gen, const char* name, PoolType type, bool support_usage_threshold) argument
/openjdk7/jaxp/src/org/xml/sax/
H A DDocumentHandler.java142 * <p>If the element name has a namespace prefix, the prefix will
147 * @param name The element type name.
154 public abstract void startElement (String name, AttributeList atts) argument
166 * <p>If the element name has a namespace prefix, the prefix will
167 * still be attached to the name.</p>
169 * @param name The element type name
173 public abstract void endElement (String name) argument
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DAttributeListImpl.java63 * public void startElement (String name, AttributeList atts)
157 * @param name The attribute name.
163 public void addAttribute (String name, String type, String value) argument
165 names.addElement(name);
182 * @param name The attribute name.
185 public void removeAttribute (String name) argument
187 int i = names.indexOf(name);
234 * Get the name o
307 getType(String name) argument
319 getValue(String name) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJBinaryFile.java45 public JBinaryFile( String name ) {
46 super(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DDuplicateEntityException.java29 * An exception signalling that an entity with the given name/id has already been defined.
49 public DuplicateEntityException(Entity entity, String name) { argument
52 entity.getElementName().getLocalPart(), name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DUtil.java54 public static String getSystemProperty(String name) { argument
56 return System.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerAdapterList.java33 protected ServerAdapter createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) { argument
34 return new ServerAdapter(name, urlPattern, endpoint, this);

Completed in 819 milliseconds

<<21222324252627282930>>