Searched defs:signature (Results 1 - 25 of 259) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DType.java133 * Returns the JNI-style signature for this type.
136 * the returned signature is the signature of the corresponding primitive
137 * type; for example, "I" is returned as the signature of the class
140 * @see <a href="doc-files/signature.html">Type Signatures</a>
141 * @return the string containing the type signature.
143 String signature(); method in interface:Type
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DBooleanTypeImpl.java34 public String signature() { method in class:BooleanTypeImpl
H A DByteTypeImpl.java35 public String signature() { method in class:ByteTypeImpl
H A DCharTypeImpl.java35 public String signature() { method in class:CharTypeImpl
H A DDoubleTypeImpl.java35 public String signature() { method in class:DoubleTypeImpl
H A DFloatTypeImpl.java35 public String signature() { method in class:FloatTypeImpl
H A DIntegerTypeImpl.java34 public String signature() { method in class:IntegerTypeImpl
H A DLongTypeImpl.java35 public String signature() { method in class:LongTypeImpl
H A DShortTypeImpl.java35 public String signature() { method in class:ShortTypeImpl
H A DValueContainer.java37 Type findType(String signature) throws ClassNotLoadedException; argument
39 String signature(); method in interface:ValueContainer
H A DVoidTypeImpl.java34 public String signature() { method in class:VoidTypeImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DArgumentSizeComputer.java33 public ArgumentSizeComputer(Symbol signature) { super(signature); } argument
H A DResultTypeFinder.java33 public ResultTypeFinder(Symbol signature) { super(signature); } argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DBooleanTypeImpl.java35 public String signature() { method in class:BooleanTypeImpl
H A DByteTypeImpl.java36 public String signature() { method in class:ByteTypeImpl
H A DCharTypeImpl.java36 public String signature() { method in class:CharTypeImpl
H A DDoubleTypeImpl.java36 public String signature() { method in class:DoubleTypeImpl
H A DFloatTypeImpl.java36 public String signature() { method in class:FloatTypeImpl
H A DIntegerTypeImpl.java36 public String signature() { method in class:IntegerTypeImpl
H A DLongTypeImpl.java36 public String signature() { method in class:LongTypeImpl
H A DShortTypeImpl.java36 public String signature() { method in class:ShortTypeImpl
H A DValueContainer.java38 Type findType(String signature) throws ClassNotLoadedException; argument
40 String signature(); method in interface:ValueContainer
H A DVoidTypeImpl.java35 public String signature() { method in class:VoidTypeImpl
/openjdk7/jdk/test/java/security/Signature/
H A DByteBuffers.java52 byte[] signature = sig.sign();
63 verify(sig, signature, b2, random);
69 verify(sig, signature, b3, random);
74 verify(sig, signature, b4, random);
79 private static void verify(Signature sig, byte[] signature, ByteBuffer b, Random random) throws Exception { argument
91 if (sig.verify(signature) == false) {
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DFieldInfo.java38 private String signature; field in class:FieldInfo
55 public String signature() { method in class:FieldInfo
56 return signature;

Completed in 54 milliseconds

1234567891011