Searched refs:type (Results 251 - 275 of 2756) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DMethodGen.java236 // Step 0. Print the return type and name.
237 // A return type of null indicates the "void" return type. If m is a
238 // Valuetype intitializer, it has name "init" and a null return type,
241 //if (m.type () == null)
246 if (m.type () == null)
254 //stream.print (Util.javaStatefulName (m.type ()));
255 stream.print (Util.javaName (m.type ()));
258 // If the value has an 'init' method with a return type, handle
261 // m.type ()
823 writeInsert(String indent, String target, String source, SymtabEntry type, PrintWriter stream) argument
849 writeType(String indent, String name, SymtabEntry type, PrintWriter stream) argument
881 writeExtract(String indent, String target, String source, SymtabEntry type, PrintWriter stream) argument
905 writeExtract(String source, SymtabEntry type) argument
999 writeOutputStreamWrite(String indent, String oStream, String name, SymtabEntry type, PrintWriter stream) argument
1042 writeInputStreamRead(String source, SymtabEntry type) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DGetInstance.java64 public static Service getService(String type, String algorithm) argument
67 Service s = list.getService(type, algorithm);
70 (algorithm + " " + type + " not available");
75 public static Service getService(String type, String algorithm, argument
85 Service s = p.getService(type, algorithm);
93 public static Service getService(String type, String algorithm, argument
98 Service s = provider.getService(type, algorithm);
108 * (type, algorithm). Note that the list is initialized lazily
112 public static List<Service> getServices(String type, String algorithm) { argument
114 return list.getServices(type, algorith
123 getServices(String type, List<String> algorithms) argument
152 getInstance(String type, Class clazz, String algorithm) argument
184 getInstance(String type, Class clazz, String algorithm, Object param) argument
203 getInstance(String type, Class clazz, String algorithm, String provider) argument
209 getInstance(String type, Class clazz, String algorithm, Object param, String provider) argument
215 getInstance(String type, Class clazz, String algorithm, Provider provider) argument
221 getInstance(String type, Class clazz, String algorithm, Object param, Provider provider) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DNamedAndTyped.java62 * Denote entity that has both name and type. This is true for local variables,
71 public void setType(Type type); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLConfigurationException.java45 /** Exception type. */
56 * Constructs a configuration exception with the specified type
59 * @param type The type of the exception.
62 public XMLConfigurationException(Status type, String identifier) { argument
64 fType = type;
69 * Constructs a configuration exception with the specified type,
72 * @param type The type of the exception.
76 public XMLConfigurationException(Status type, Strin argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoredAttributeInfo.java75 public Class type(); method in interface:MonitoredAttributeInfo
H A DMonitoredAttributeInfoFactory.java35 * type Monitored Attribute, they can use this factory to build the meta
46 Class type, boolean isWritable, boolean isStatistic );
45 createMonitoredAttributeInfo( String description, Class type, boolean isWritable, boolean isStatistic ) argument
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DIDLTypeOperations.java37 org.omg.CORBA.TypeCode type (); method in interface:IDLTypeOperations
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DValueContainer.java32 * more common code for type checking. In the future we could use it for
36 Type type() throws ClassNotLoadedException; method in interface:ValueContainer
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DFreeList.java44 Type type = db.lookupType("FreeList");
45 sizeField = type.getCIntegerField("_size");
46 countField = type.getCIntegerField("_count");
47 headerSize = type.getSize();
H A DGenerationSpec.java47 Type type = db.lookupType("GenerationSpec");
49 nameField = type.getCIntegerField("_name");
50 initSizeField = type.getCIntegerField("_init_size");
51 maxSizeField = type.getCIntegerField("_max_size");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock_Array.java43 Type type = db.lookupType("Block_Array");
44 sizeField = new CIntField(type.getCIntegerField("_size"), 0);
45 blocksField = type.getAddressField("_blocks");
46 arenaField = type.getAddressField("_arena");
H A DNode_Array.java43 Type type = db.lookupType("Node_Array");
44 maxField = new CIntField(type.getCIntegerField("_max"), 0);
45 nodesField = type.getAddressField("_nodes");
46 aField = type.getAddressField("_a");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DArgumentSizeComputer.java32 protected void set(int size, int type) { if (!isReturnType()) this.size += size; } argument
H A DBasicObjectLock.java42 Type type = db.lookupType("BasicObjectLock");
43 lockField = type.getField("_lock");
44 objField = type.getOopField("_obj");
45 size = (int) type.getSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerField.java36 public BasicCIntegerField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!(type instanceof CIntegerType)) {
44 intType = (CIntegerType) type;
51 /** The field must be nonstatic and of integer type, or a
57 /** The field must be static and of integer type, or a
H A DBasicNarrowOopField.java42 public BasicNarrowOopField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
44 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
47 System.out.println(" name " + name + " type " + type + " isStatic " + isStatic + " offset " + offset + " static addr " + staticFieldAddress);
49 if (!type.isOopType()) {
50 throw new WrongTypeException("Type of a BasicOopField must be an oop type");
54 /** The field must be nonstatic and the type of the field must be a
60 /** The field must be static and the type of the field must be a
H A DVtblAccess.java37 polymorphic C++ type. This value will be used when searching
40 available for the given type, which might indicate that the type
44 public Address getVtblForType(Type type); argument
48 that reason the default implementation memoizes type-to-vtbl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DGenericGrowableArray.java43 Type type = db.lookupType("GenericGrowableArray");
44 _arena_field = type.getAddressField("_arena");
45 _max_field = new CIntField(type.getCIntegerField("_max"), 0);
46 _len_field = new CIntField(type.getCIntegerField("_len"), 0);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DBooleanControl.java72 * @param type the type of control represented this float control object
79 protected BooleanControl(Type type, boolean initialValue, String trueStateLabel, String falseStateLabel) { argument
81 super(type);
93 * @param type the type of control represented by this float control object
96 protected BooleanControl(Type type, boolean initialValue) { argument
97 this(type, initialValue, "true", "false");
185 * Constructs a new boolean control type.
186 * @param name the name of the new boolean control type
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DNotification.java79 new ObjectStreamField("type", String.class),
90 new ObjectStreamField("type", String.class),
97 * @serialField type String The notification type.
99 * An example of a notification type is network.alarm.router
133 * @serial The notification type.
135 * An example of a notification type is network.alarm.router
137 private String type; field in class:Notification
178 * @param type The notification type
183 Notification(String type, Object source, long sequenceNumber) argument
201 Notification(String type, Object source, long sequenceNumber, String message) argument
219 Notification(String type, Object source, long sequenceNumber, long timeStamp) argument
237 Notification(String type, Object source, long sequenceNumber, long timeStamp, String message) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java44 * Returns a text representation of the type
46 * Where the type is the type specified in the declaration
49 * This type name is always available even if
50 * the type has not yet been created or loaded.
53 * type of this field.
58 * Returns the type of this field.
59 * Where the type is the type specified in the declaration
72 * to mirror the corresponding fields, then <CODE>sField.type()</COD
97 Type type() throws ClassNotLoadedException; method in interface:Field
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpPduTrap.java85 * <BR><CODE>type</CODE> and <CODE>version</CODE> fields are initialized with
90 type = pduV1TrapPdu ;
/openjdk7/jdk/src/share/classes/com/sun/security/jgss/
H A DExtendedGSSContext.java37 * Return the mechanism-specific attribute associated with {@code type}.
39 * For each supported attribute type, the type for the output are
66 * with the name {@code type.mech} must be granted. Otherwise, this could
84 * @param type the type of the attribute requested
91 * type specified is not supported,
100 public Object inquireSecContext(InquireType type) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueContainer.java33 * more common code for type checking. In the future we could use it for
37 Type type() throws ClassNotLoadedException; method in interface:ValueContainer
/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DTypeResolver.java52 * Replaces the given {@code type} in an inherited method
53 * with the actual type it has in the given {@code inClass}.
55 * <p>Although type parameters are not inherited by subclasses in the Java
64 * like put(K,V) even though StringToIntMap has no type parameters. The K
74 * @param type the type to resolve
75 * @return a resolved type
80 public static Type resolveInClass(Class<?> inClass, Type type) { argument
81 return resolve(getActualType(inClass), type);
100 * Replaces type variable
232 erase(Type type) argument
293 prepare(Map<Type, Type> map, Type type) argument
342 fixGenericArray(Type type) argument
[all...]

Completed in 266 milliseconds

<<11121314151617181920>>