Searched defs:data (Results 101 - 125 of 871) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDeprecated_attribute.java52 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
53 return visitor.visitDeprecated(this, data);
H A DEnclosingMethod_attribute.java67 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
68 return visitor.visitEnclosingMethod(this, data);
H A DExceptions_attribute.java63 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
64 return visitor.visitExceptions(this, data);
H A DSignature_attribute.java62 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
63 return visitor.visitSignature(this, data);
H A DSourceDebugExtension_attribute.java66 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
67 return visitor.visitSourceDebugExtension(this, data);
H A DSourceID_attribute.java56 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
57 return visitor.visitSourceID(this, data);
H A DStackMap_attribute.java57 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
58 return visitor.visitStackMap(this, data);
H A DSynthetic_attribute.java52 public <R, D> R accept(Visitor<R, D> visitor, D data) { argument
53 return visitor.visitSynthetic(this, data);
/openjdk7/jdk/src/share/native/java/lang/reflect/
H A DProxy.c50 jbyteArray data,
59 if (data == NULL) {
79 (*env)->GetByteArrayRegion(env, data, offset, length, body);
46 Java_java_lang_reflect_Proxy_defineClass0(JNIEnv *env, jclass ignore, jobject loader, jstring name, jbyteArray data, jint offset, jint length) argument
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrio.c25 /* pngrio.c - functions for data input
53 /* Read the data from whatever input you are using. The default routine
60 png_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
65 (*(png_ptr->read_data_fn))(png_ptr, data, length);
72 /* This is the function that does the actual reading of data. If you are
79 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
89 check = fread(data, 1, length, (png_FILE_p)png_ptr->io_ptr);
97 the data.
104 png_default_read_data(png_structp png_ptr, png_bytep data, png_size_t length) argument
113 /* Check if data reall
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPOptions.java68 public APOptions(int size, byte[] data) throws Asn1Exception { argument
69 super(size, data);
70 if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.AP_OPTS_MAX + 1)) {
75 public APOptions(boolean[] data) throws Asn1Exception { argument
76 super(data);
77 if (data.length > Krb5.AP_OPTS_MAX + 1) {
91 * @param data the Der input stream value, which contains one or more marshaled value.
93 * @param optional indicate if this data field is optional.
95 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
96 * @exception IOException if an I/O error occurs while reading encoded data
99 parse(DerInputStream data, byte explicitTag, boolean optional) argument
[all...]
H A DAPRep.java68 public APRep(byte[] data) throws Asn1Exception, argument
70 init(new DerValue(data));
81 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
82 * @exception IOException if an I/O error occurs while reading encoded data.
83 * @exception KrbApErrException if the value read from the DER-encoded data
123 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
124 * @exception IOException if an I/O error occurs while reading encoded data.
H A DASRep.java53 public ASRep(byte[] data) throws Asn1Exception, argument
55 init(new DerValue(data));
H A DKRBCred.java82 public KRBCred(byte[] data) throws Asn1Exception, argument
84 init(new DerValue(data));
95 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
96 * @exception IOException if an I/O error occurs while reading encoded data.
97 * @exception KrbApErrException if the value read from the DER-encoded data
157 * @return the data of encoded EncAPRepPart object.
158 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
159 * @exception IOException if an I/O error occurs while reading encoded data.
H A DKRBPriv.java69 public KRBPriv(byte[] data) throws Asn1Exception, argument
71 init(new DerValue(data));
83 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
84 * @exception IOException if an I/O error occurs while reading encoded data.
85 * @exception KrbApErrException if the value read from the DER-encoded data
123 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
124 * @exception IOException if an I/O error occurs while reading encoded data.
H A DKRBSafe.java72 public KRBSafe(byte[] data) throws Asn1Exception, argument
74 init(new DerValue(data));
85 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
86 * @exception IOException if an I/O error occurs while reading encoded data.
88 * @exception KrbApErrException if the value read from the DER-encoded data
127 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
128 * @exception IOException if an I/O error occurs while reading encoded data.
H A DLastReq.java74 * @param encoding a Der-encoded data.
75 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
76 * @exception IOException if an I/O error occurs while reading encoded data.
96 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
97 * @exception IOException if an I/O error occurs while reading encoded data.
117 * @param data the Der input stream value, which contains one or more marshaled value.
119 * @param optional indicates if this data field is optional
124 public static LastReq parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
125 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
127 DerValue der = data
[all...]
H A DMethodData.java44 * method-data[1] OCTET STRING OPTIONAL
52 public MethodData(int type, byte[] data) { argument
54 if (data != null) {
55 methodData = data.clone();
61 * @param encoding a Der-encoded data.
62 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
63 * @exception IOException if an I/O error occurs while reading encoded data.
91 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
92 * @exception IOException if an I/O error occurs while reading encoded data.
H A DTGSRep.java54 public TGSRep(byte[] data) throws Asn1Exception, argument
56 init(new DerValue(data));
H A DTicketFlags.java69 public TicketFlags(int size, byte[] data) throws Asn1Exception { argument
70 super(size, data);
71 if ((size > data.length * BITS_PER_UNIT) || (size > Krb5.TKT_OPTS_MAX + 1))
85 * @param data the Der input stream value, which contains one or more marshaled value.
87 * @param optional indicate if this data field is optional
91 public static TicketFlags parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
92 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
94 DerValue der = data.getDerValue();
H A DTransitedEncoding.java66 * @param encoding a Der-encoded data.
67 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
68 * @exception IOException if an I/O error occurs while reading encoded data.
96 * @exception Asn1Exception if an error occurs while decoding an ASN1 encoded data.
97 * @exception IOException if an I/O error occurs while reading encoded data.
118 * @param data the Der input stream value, which contains one or more marshaled value.
120 * @param optional indicate if this data field is optional
124 public static TransitedEncoding parse(DerInputStream data, byte explicitTag, boolean optional) throws Asn1Exception, IOException { argument
125 if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag))
127 DerValue der = data
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDesCbcMd5EType.java68 * @param data the input data.
69 * @param size the length of data.
74 protected byte[] calculateChecksum(byte[] data, int size) argument
83 md5.update(data);
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java53 * @param data a sequence of bytes, most significant bytes/digits
56 public BigInt(byte[] data) { places = data.clone(); } argument
136 * Returns the data as a byte array. The most significant bit
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DEchoImpl.java80 public byte[] echoNot(byte[] data) { argument
81 byte[] result = new byte[data.length];
82 for (int i = 0; i < data.length; i++)
83 result[i] = (byte) ~data[i];
/openjdk7/jdk/test/java/text/Format/DateFormat/
H A DWeekDateTest.java91 private static void formatTest(String[][] data) throws Exception { argument
92 for (String[] dates : data) {
104 private static void parseTest(String[][] data) throws Exception { argument
105 for (String[] dates : data) {
121 private static void nonLenientTest(String[] data) { argument
123 for (String date : data) {

Completed in 108 milliseconds

1234567891011>>