Searched defs:data (Results 151 - 175 of 871) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormSubmitEvent.java60 * @param data the form submission data
64 MethodType method, String data) {
67 this.data = data;
82 * Gets the form submission data.
84 * @return the string representing the form submission data.
87 return data;
91 private String data; field in class:FormSubmitEvent
62 FormSubmitEvent(Object source, EventType type, URL targetURL, Element sourceElement, String targetFrame, MethodType method, String data) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DEntity.java47 public char data[]; field in class:Entity
53 * @param data the char array of data
55 public Entity(String name, int type, char data[]) { argument
58 this.data = data;
94 * Returns the <code>data</code>.
95 * @return the <code>data</code>
98 return data;
102 * Returns the data a
[all...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DOid.java105 * @param data byte array containing the DER encoded oid
109 public Oid(byte [] data) throws GSSException { argument
111 DerValue derVal = new DerValue(data);
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMCanonicalizationMethod.java78 * Canonicalizes the specified data using the underlying canonicalization
82 * @param data the data to be canonicalized
85 * @return the canonicalized data
86 * @throws NullPointerException if <code>data</code> is <code>null</code>
88 * canonicalizing the data
90 public Data canonicalize(Data data, XMLCryptoContext xc) argument
92 return transform(data, xc);
95 public Data canonicalize(Data data, XMLCryptoContext xc, OutputStream os) argument
97 return transform(data, x
[all...]
H A DDOMExcC14NMethod.java132 public Data transform(Data data, XMLCryptoContext xc) argument
138 if (data instanceof DOMSubTreeData) {
139 DOMSubTreeData subTree = (DOMSubTreeData) data;
153 return canonicalize(data, xc);
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DClipboardTransferable.java40 * Reads all of the data from the system Clipboard which the data transfer
41 * subsystem knows how to translate. This includes all text data, File Lists,
43 * data as InputStreams. The data is stored in byte format until requested
44 * by client code. At that point, the data is converted, if necessary, into
49 * its formats before requesting data in a particular format, while avoiding
50 * the overhead of fully rendering all data ahead of time.
63 final byte[] data; field in class:ClipboardTransferable.DataFactory
64 DataFactory(long format, byte[] data) { argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBufferByte.java41 * This class extends <CODE>DataBuffer</CODE> and stores data internally as bytes.
47 * if they can maintain control over how the data for an image is
51 * to that data.
53 * data in locations other than a Java array.
62 /** The default data bank. */
63 byte data[]; field in class:DataBufferByte
65 /** All data banks */
76 data = new byte[size];
78 bankdata[0] = data;
94 data
[all...]
H A DDataBufferInt.java41 * This class extends <CODE>DataBuffer</CODE> and stores data internally
46 * if they can maintain control over how the data for an image is
50 * to that data.
52 * data in locations other than a Java array.
61 /** The default data bank. */
62 int data[]; field in class:DataBufferInt
64 /** All data banks */
75 data = new int[size];
77 bankdata[0] = data;
93 data
[all...]
H A DDataBufferShort.java41 * This class extends <CODE>DataBuffer</CODE> and stores data internally as shorts.
45 * if they can maintain control over how the data for an image is
49 * to that data.
51 * data in locations other than a Java array.
60 /** The default data bank. */
61 short data[]; field in class:DataBufferShort
63 /** All data banks */
74 data = new short[size];
76 bankdata[0] = data;
92 data
[all...]
H A DDataBufferUShort.java41 * This class extends <CODE>DataBuffer</CODE> and stores data internally as
47 * if they can maintain control over how the data for an image is
51 * to that data.
53 * data in locations other than a Java array.
62 /** The default data bank. */
63 short data[]; field in class:DataBufferUShort
65 /** All data banks */
76 data = new short[size];
78 bankdata[0] = data;
94 data
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationDesc.java40 * initialization data. </ul>
70 * @serial the object's initialization data
72 private MarshalledObject<?> data; field in class:ActivationDesc
86 * information is <code>data</code>. If this form of the constructor
105 * @param data the object's initialization (activation) data contained
112 MarshalledObject<?> data)
116 className, location, data, false);
123 * information is <code>data</code>. If this form of the constructor
136 * @param data th
110 ActivationDesc(String className, String location, MarshalledObject<?> data) argument
147 ActivationDesc(String className, String location, MarshalledObject<?> data, boolean restart) argument
181 ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data) argument
213 ActivationDesc(ActivationGroupID groupID, String className, String location, MarshalledObject<?> data, boolean restart) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPath.java308 private byte[] data; field in class:CertPath.CertPathRep
315 * @param data the encoded form of the certification path
317 protected CertPathRep(String type, byte[] data) { argument
319 this.data = data;
323 * Returns a <code>CertPath</code> constructed from the type and data.
333 return cf.generateCertPath(new ByteArrayInputStream(data));
H A DCertificate.java212 private byte[] data; field in class:Certificate.CertificateRep
222 * @param data the Certificate data.
224 protected CertificateRep(String type, byte[] data) { argument
226 this.data = data;
243 (new java.io.ByteArrayInputStream(data));
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DDigraphNode.java35 * <code>Object</code> containing user data associated with the node,
44 /** The data associated with this node. */
45 protected Object data; field in class:DigraphNode
62 public DigraphNode(Object data) { argument
63 this.data = data;
68 return data;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftInstrument.java39 private final Object data; field in class:SoftInstrument
45 data = ins.getData();
54 data = ins.getData();
76 return data;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DGraphDocument.java24 package com.sun.hotspot.igv.data;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DPrinter.java24 package com.sun.hotspot.igv.data.serialization;
26 import com.sun.hotspot.igv.data.GraphDocument;
27 import com.sun.hotspot.igv.data.Group;
28 import com.sun.hotspot.igv.data.InputBlock;
29 import com.sun.hotspot.igv.data.InputBytecode;
30 import com.sun.hotspot.igv.data.InputEdge;
31 import com.sun.hotspot.igv.data.InputGraph;
32 import com.sun.hotspot.igv.data.InputMethod;
33 import com.sun.hotspot.igv.data.InputNode;
34 import com.sun.hotspot.igv.data
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DEdge.java32 private E data; field in class:Edge
36 protected Edge(Graph<N, E> graph, Node<N, E> source, Node<N, E> dest, E data) { argument
37 setData(data);
56 return data;
60 data = e;
87 return "Edge (" + source + " -- " + dest + "): " + data;
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDInputStream.java77 char data[] = {(char)ch};
78 push(new CharArrayReader(data));
85 public void push(char data[]) throws IOException { argument
86 if (data.length > 0) {
87 push(new CharArrayReader(data));
152 error("entity data not found: " + ent + ", " + ent.getString());
186 * Return the data as a stream.
201 return new CharArrayReader(ent.data);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DIntegerNIORaster.java35 protected IntBuffer data; field in class:IntegerNIORaster
57 this.data = ((DataBufferNIOInt)dataBuffer).getBuffer();
88 return data;
/openjdk7/jdk/src/share/back/
H A DoutStream.h39 jbyte *data; member in struct:PacketData
/openjdk7/jaxp/src/org/xml/sax/
H A DDocumentHandler.java51 * example, all of an element's content (character data, processing
178 * Receive notification of character data.
181 * character data. SAX parsers may return all contiguous character
182 * data in a single chunk, or they may split it into several
246 * @param data The processing instruction data, or null if
251 public abstract void processingInstruction (String target, String data) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DProcessingInstructionEvent.java43 public ProcessingInstructionEvent(String targetName, String data) { argument
45 _data = data;
61 public void setData(String data) { argument
62 _data = data;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DEncodingAlgorithm.java41 public void encodeToOutputStream(Object data, OutputStream s) throws EncodingAlgorithmException, IOException; argument
46 public void convertToCharacters(Object data, StringBuffer s) throws EncodingAlgorithmException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMemoryData.java35 * Keeps the Part's partial content data in memory.
43 private final byte[] data; field in class:MemoryData
48 data = buf.array();
61 return data;
66 return file.writeTo(data, 0, len);
93 long pointer = c.data.writeTo(dataHead.dataFile);
94 c.data = new FileData(dataHead.dataFile, pointer, len);

Completed in 42 milliseconds

1234567891011>>