Searched defs:Name (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jdk/test/java/util/jar/Attributes/
H A DName.java33 public class Name { class
36 Attributes.Name name = new Attributes.Name("");
/openjdk7/jdk/test/javax/management/Introspector/annot/
H A DName.java30 public @interface Name { interface
/openjdk7/hotspot/src/share/vm/memory/
H A DgenRemSet.hpp44 enum Name { enum in class:GenRemSet
52 virtual Name rs_kind() = 0;
98 static uintx max_alignment_constraint(Name nm);
H A DpermGen.hpp65 enum Name { enum in class:PermGen
H A DbarrierSet.hpp37 enum Name { enum in class:BarrierSet
53 Name _kind;
59 BarrierSet::Name kind() { return _kind; }
60 virtual bool is_a(BarrierSet::Name bsn) = 0;
H A DcollectorPolicy.hpp70 void initialize_perm_generation(PermGen::Name pgnm);
116 enum Name { enum in class:CollectorPolicy
163 virtual BarrierSet::Name barrier_set_name() = 0;
164 virtual GenRemSet::Name rem_set_name() = 0;
193 virtual CollectorPolicy::Name kind() {
318 BarrierSet::Name barrier_set_name() { return BarrierSet::CardTableModRef; }
319 GenRemSet::Name rem_set_name() { return GenRemSet::CardTable; }
321 virtual CollectorPolicy::Name kind() {
H A Dgeneration.hpp134 enum Name { enum in class:Generation
160 virtual Generation::Name kind() { return Generation::Other; }
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DName.java40 * shows what the methods in the <code>Name</code> interface will return.
52 * <code>Name</code> objects are created using the method
54 * One method creates <code>Name</code> objects with
56 * and the second creates <code>Name</code> objects with just a local name.
59 * <code>Name</code> object with all three.
61 * Name name = se.createName("GetLastTradePrice", "WOMBAT",
64 * The following line of code gives an example of how a <code>Name</code> object
72 * The <code>Name</code> interface may be deprecated in a future release of SAAJ
77 public interface Name { interface
79 * Gets the local name part of the XML name that this <code>Name</cod
[all...]
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DName.java32 * with each other. Therefore, {@code Name} objects from the same
33 * implementation are usable in collections while {@code Name}s from
36 * <p>An empty {@code Name} has a length of zero.
53 public interface Name extends CharSequence { interface in inherits:CharSequence
58 * <p>Note that the identity of a {@code Name} is a function both
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcStats.hpp39 enum Name { enum in class:GCStats
44 virtual Name kind() {
65 virtual Name kind() {
H A DgcPolicyCounters.hpp51 enum Name { enum in class:GCPolicyCounters
73 virtual GCPolicyCounters::Name kind() const {
/openjdk7/hotspot/src/share/vm/opto/
H A DadlcVMDeps.hpp45 // Mirror of OptoReg::Name names
46 enum Name { enum in class:AdlcVMDeps
H A Doptoreg.hpp42 // Note that Name is not enum. C++ standard defines that the range of enum
45 // if the value is outside the enumeration's valid range. OptoReg::Name is
52 typedef int Name; typedef in class:VALUE_OBJ_CLASS_SPEC
64 static Name vm2opto[ConcreteRegisterImpl::number_of_registers];
69 static OptoReg::Name c_frame_pointer;
74 // "for ( OptoReg::Name i; i=Control; i = add(i,1) ) ..."
75 static Name add( Name x, int y ) { return Name(x+y); }
82 // Get the stack slot number of an OptoReg::Name
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DNameContext.java49 * Get a context for the given name. Name may be null, in
146 Name value = (Name) table.get(key);
175 table.put(key,new Name(name,false));
187 Name it = (Name) table.get(name.toLowerCase());
223 public class Name { class in class:NameContext
227 public Name (String name, boolean collisions) { method in class:NameContext.Name
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DName.java37 * {@link Name}s are ordered lexicographically (nsUri first, local name next.)
42 public final class Name implements Comparable<Name> { class in inherits:Comparable
60 * Index of the Name for an EII or AII
65 * Specifies if the Name is associated with an EII or AII
69 Name(int qNameIndex, int nsUriIndex, String nsUri, int localIndex, String localName, boolean isAttribute) { method in class:Name
93 public int compareTo(Name that) {
/openjdk7/jdk/src/share/classes/javax/naming/
H A DName.java31 * The <tt>Name</tt> interface represents a generic name -- an ordered
36 * <p> There can be different implementations of <tt>Name</tt>; for example,
49 * <p> An instance of a <tt>Name</tt> may not be synchronized against
58 public interface Name interface in inherits:Cloneable,java.io.Serializable,Comparable
96 * @throws ClassCastException if obj is not a <tt>Name</tt> of a
153 public Name getPrefix(int posn);
169 public Name getSuffix(int posn);
180 public boolean startsWith(Name n);
191 public boolean endsWith(Name n);
204 public Name addAl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/
H A DXmlToken.java38 Name("Name", false), enum constant in enum:XmlToken
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DGeneration.java61 // constants from Name enum
87 // constants from Generation::Name
99 public static class Name { class in class:Generation
100 public static final Name DEF_NEW = new Name("DefNew");
101 public static final Name PAR_NEW = new Name("ParNew");
102 public static final Name MARK_SWEEP_COMPACT = new Name("MarkSweepCompact");
103 public static final Name CONCURRENT_MARK_SWEE
106 private Name(String value) { method in class:Generation.Name
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DNode.java190 public String Name() { method in class:Node
216 out.print(Name());
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DAttributes.java107 * return (String)get(new Attributes.Name((String)name));
116 return (String)get(new Attributes.Name(name));
120 * Returns the value of the specified Attributes.Name, or null if the
128 * @param name the Attributes.Name object
129 * @return the String value of the specified Attribute.Name, or null if
132 public String getValue(Name name) {
144 * @exception ClassCastException if the name is not a Attributes.Name
148 return map.put((Attributes.Name)name, (String)value);
159 * return (String)put(new Attributes.Name(name), value);
168 return (String)put(new Name(nam
447 public static class Name { class in class:Attributes
459 public Name(String name) { method in class:Attributes.Name
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java29 * Utf8 format. Names are stored in a Name.Table, and are unique within
37 public abstract class Name implements javax.lang.model.element.Name { class in inherits:javax.lang.model.element.Name
41 protected Name(Table table) { method in class:Name
75 public Name append(Name n) {
86 public Name append(char c, Name n) {
97 public int compareTo(Name other) {
119 public boolean startsWith(Name prefi
[all...]
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp206 enum Name { enum in class:CollectedHeap
218 virtual CollectedHeap::Name kind() const { return CollectedHeap::Abstract; }
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryManager.hpp56 enum Name { enum in class:MemoryManager
82 virtual MemoryManager::Name kind() { return MemoryManager::Abstract; }
107 MemoryManager::Name kind() { return MemoryManager::CodeCache; }
195 virtual MemoryManager::Name kind() = 0;
206 MemoryManager::Name kind() { return MemoryManager::Copy; }
215 MemoryManager::Name kind() { return MemoryManager::MarkSweepCompact; }
225 MemoryManager::Name kind() { return MemoryManager::ParNew; }
235 MemoryManager::Name kind() { return MemoryManager::ConcurrentMarkSweep; }
245 MemoryManager::Name kind() { return MemoryManager::PSScavenge; }
255 MemoryManager::Name kin
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsnamed.c560 const char* Name,
577 if (Name != NULL) {
579 strncpy(NamedColorList ->List[NamedColorList ->nColors].Name, Name,
580 sizeof(NamedColorList ->List[NamedColorList ->nColors].Name) - 1);
583 Name[sizeof(NamedColorList ->List[NamedColorList ->nColors].Name) - 1] = 0;
587 NamedColorList ->List[NamedColorList ->nColors].Name[0] = 0;
603 char* Name,
613 if (Name) strcp
559 cmsAppendNamedColor(cmsNAMEDCOLORLIST* NamedColorList, const char* Name, cmsUInt16Number PCS[3], cmsUInt16Number Colorant[cmsMAXCHANNELS]) argument
602 cmsNamedColorInfo(const cmsNAMEDCOLORLIST* NamedColorList, cmsUInt32Number nColor, char* Name, char* Prefix, char* Suffix, cmsUInt16Number* PCS, cmsUInt16Number* Colorant) argument
628 cmsNamedColorIndex(const cmsNAMEDCOLORLIST* NamedColorList, const char* Name) argument
866 cmsDictAddEntry(cmsHANDLE hDict, const wchar_t* Name, const wchar_t* Value, const cmsMLU *DisplayName, const cmsMLU *DisplayValue) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java77 * Arguments and return values must exactly match when their "Name" types are
86 * <li>V = void: a function result may be void if and only if its Name is of type "V"
123 final Name[] names;
134 int arity, Name[] names, int result) {
144 int arity, Name[] names) {
150 Name[] formals, Name[] temps, Name result) {
155 private static Name[] buildNames(Name[] formal
1266 static final class Name { class in class:LambdaForm
1272 private Name(int index, char type, NamedFunction function, Object[] arguments) { method in class:LambdaForm.Name
1279 Name(MethodHandle function, Object... arguments) { method in class:LambdaForm.Name
1282 Name(MemberName function, Object... arguments) { method in class:LambdaForm.Name
1285 Name(NamedFunction function, Object... arguments) { method in class:LambdaForm.Name
1291 Name(int index, char type) { method in class:LambdaForm.Name
1294 Name(char type) { method in class:LambdaForm.Name
[all...]

Completed in 135 milliseconds

12