Searched refs:doc (Results 1 - 25 of 244) sorted by relevance

12345678910

/openjdk7/langtools/make/test/bootstrap/
H A Djavadoc.sh32 rm -rf doc
33 mkdir doc
34 ${TOPDIR}/dist/bootstrap/bin/javadoc -d doc "${TESTSRC}"/../HelloWorld.java
36 ( cd doc ; find . -type f -print | LANG=C sort) > javadoc.tmp
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFEditorKit.java69 * @param doc The destination for the insertion.
76 public void read(InputStream in, Document doc, int pos) throws IOException, BadLocationException { argument
78 if (doc instanceof StyledDocument) {
81 RTFReader rdr = new RTFReader((StyledDocument) doc);
86 super.read(in, doc, pos);
95 * @param doc The source for the write.
103 public void write(OutputStream out, Document doc, int pos, int len) argument
108 RTFGenerator.writeDocument(doc, out);
116 * @param doc The destination for the insertion.
123 public void read(Reader in, Document doc, in argument
149 write(Writer out, Document doc, int pos, int len) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals_extension.hpp36 #define RUNTIME_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
37 #define RUNTIME_PD_PRODUCT_FLAG_MEMBER(type, name, doc) FLAG_MEMBER(name),
38 #define RUNTIME_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
39 #define RUNTIME_EXPERIMENTAL_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
40 #define RUNTIME_MANAGEABLE_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
41 #define RUNTIME_PRODUCT_RW_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
43 #define RUNTIME_DEVELOP_FLAG_MEMBER(type, name, value, doc) /* flag is constant */
44 #define RUNTIME_PD_DEVELOP_FLAG_MEMBER(type, name, doc) /* flag is constant */
45 #define RUNTIME_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc)
47 #define RUNTIME_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBE
[all...]
H A Dglobals.cpp138 st->print("%s", doc );
182 #define RUNTIME_PRODUCT_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{product}", DEFAULT },
183 #define RUNTIME_PD_PRODUCT_FLAG_STRUCT(type, name, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{pd product}", DEFAULT },
184 #define RUNTIME_DIAGNOSTIC_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{diagnostic}", DEFAULT },
185 #define RUNTIME_EXPERIMENTAL_FLAG_STRUCT(type, name, value, doc) { #type, XSTR(name), &name, NOT_PRODUCT_ARG(doc) "{experimental}", DEFAULT },
186 #define RUNTIME_MANAGEABLE_FLAG_STRUCT(type, name, value, doc) { #typ
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterJobDialog.java36 CPrinterJobDialog(Frame parent, CPrinterJob printerJob, Pageable doc, boolean allowPrintToFile) { argument
38 fPageable = doc;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DContent.java43 * @param doc
49 final void setNext(Document doc,Content next) { argument
53 doc.run();
/openjdk7/langtools/make/test/lib/
H A Djavadoc.sh33 rm -rf doc
34 mkdir doc
38 -d doc "${TESTSRC}"/../HelloWorld.java
40 ( cd doc ; find . -type f -print | LANG=C sort ) > javadoc.tmp
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTextPane.java106 * @param doc the document model
108 public JTextPane(StyledDocument doc) { argument
110 setStyledDocument(doc);
129 * @param doc the document to display/edit
130 * @exception IllegalArgumentException if <code>doc</code> can't
134 public void setDocument(Document doc) { argument
135 if (doc instanceof StyledDocument) {
136 super.setDocument(doc);
147 * @param doc the document to display/edit
149 public void setStyledDocument(StyledDocument doc) { argument
[all...]
H A DJTextArea.java185 * @param doc the model to use
187 public JTextArea(Document doc) { argument
188 this(doc, null, 0, 0);
196 * @param doc the model to use, or create a default one if null
203 public JTextArea(Document doc, String text, int rows, int columns) { argument
207 if (doc == null) {
208 doc = createDefaultModel();
210 setDocument(doc);
267 Document doc = getDocument();
268 if (doc !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDocumentCache.java227 private synchronized void insertDocument(String uri, CachedDocument doc) { argument
240 _references.put(uri, doc);
246 private synchronized void replaceDocument(String uri, CachedDocument doc) { argument
248 if (doc == null)
249 insertDocument(uri, doc);
251 _references.put(uri, doc);
259 CachedDocument doc;
271 if ((doc = lookupDocument(uri)) == null) {
272 doc = new CachedDocument(uri);
273 if (doc
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DSchemaDocumentImpl.java88 for (SchemaDocumentImpl doc : references) {
89 if(doc.getTargetNamespace().equals(targetNamespace))
90 r.add(doc);
95 public boolean includes(SchemaDocument doc) { argument
96 if(!references.contains(doc))
98 return doc.getSchema()==schema;
101 public boolean imports(SchemaDocument doc) { argument
102 if(!references.contains(doc))
104 return doc.getSchema()!=schema;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DSignatureElementProxy.java42 * @param doc
44 public SignatureElementProxy(Document doc) { argument
45 if (doc == null) {
49 this._doc = doc;
H A DCachedXPathAPIHolder.java35 * Sets the doc for the xpath transformation. Resets the cache if needed
36 * @param doc
38 public static void setDoc(Document doc) { argument
39 if (localDoc.get()!=doc) {
44 localDoc.set(doc);
49 localDoc.set(doc);
H A DEncryptionElementProxy.java41 * @param doc
43 public EncryptionElementProxy(Document doc) { argument
44 super(doc);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DPSVIDOMImplementationImpl.java117 DocumentImpl doc = new PSVIDocumentImpl(doctype);
118 Element e = doc.createElementNS( namespaceURI, qualifiedName);
119 doc.appendChild(e);
120 return doc;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java140 * @param doc The destination for the insertion.
147 public abstract void read(InputStream in, Document doc, int pos) argument
155 * @param doc The source for the write.
163 public abstract void write(OutputStream out, Document doc, int pos, int len) argument
177 * @param doc The destination for the insertion.
184 public abstract void read(Reader in, Document doc, int pos) argument
197 * @param doc The source for the write.
205 public abstract void write(Writer out, Document doc, int pos, int len) argument
/openjdk7/jdk/src/share/classes/java/util/
H A DXMLUtils.java72 Document doc = null;
74 doc = getLoadingDoc(in);
78 Element propertiesElement = doc.getDocumentElement();
134 Document doc = db.newDocument();
136 doc.appendChild(doc.createElement("properties"));
140 doc.createElement("comment"));
141 comments.appendChild(doc.createTextNode(comment));
147 doc.createElement("entry"));
149 entry.appendChild(doc
155 emitDocument(Document doc, OutputStream os, String encoding) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/params/
H A DXPath2FilterContainer.java90 * @param doc
94 private XPath2FilterContainer(Document doc, String xpath2filter, argument
97 super(doc);
101 this._constructionElement.appendChild(doc.createTextNode(xpath2filter));
139 * @param doc
143 public static XPath2FilterContainer newInstanceIntersect(Document doc, argument
146 return new XPath2FilterContainer(doc, xpath2filter,
154 * @param doc
158 public static XPath2FilterContainer newInstanceSubtract(Document doc, argument
161 return new XPath2FilterContainer(doc, xpath2filte
173 newInstanceUnion(Document doc, String xpath2filter) argument
188 newInstances(Document doc, String[][] params) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DTagletWriter.java60 * @param doc the doc to write deprecated documentation for.
63 protected abstract TagletOutput deprecatedTagOutput(Doc doc); argument
163 * @param doc the Doc that we are print tags for.
168 public static void genTagOuput(TagletManager tagletManager, Doc doc, argument
170 tagletManager.checkTags(doc, doc.tags(), false);
171 tagletManager.checkTags(doc, doc.inlineTags(), true);
175 if (doc instanceo
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DXMLEntityResolver.java71 public Parser(SDDocumentSource doc) throws IOException, XMLStreamException { argument
72 this.systemId = doc.getSystemId();
73 this.parser = doc.read();
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DXmlSupport.java101 Document doc = createPrefsDoc("preferences");
102 Element preferences = doc.getDocumentElement() ;
105 preferences.appendChild(doc.createElement("root"));
117 e.appendChild(doc.createElement("map"));
118 e = (Element) e.appendChild(doc.createElement("node"));
121 putPreferencesInXml(e, doc, p, subTree);
123 writeDoc(doc, os);
138 private static void putPreferencesInXml(Element elt, Document doc, argument
156 Element map = (Element) elt.appendChild(doc.createElement("map"));
159 map.appendChild(doc
259 writeDoc(Document doc, OutputStream out) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DKeyValue.java49 * @param doc
52 public KeyValue(Document doc, DSAKeyValue dsaKeyValue) { argument
54 super(doc);
64 * @param doc
67 public KeyValue(Document doc, RSAKeyValue rsaKeyValue) { argument
69 super(doc);
79 * @param doc
82 public KeyValue(Document doc, Element unknownKeyValue) { argument
84 super(doc);
94 * @param doc
97 KeyValue(Document doc, PublicKey pk) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/
H A DXMLX509IssuerSerial.java61 * @param doc
65 public XMLX509IssuerSerial(Document doc, String x509IssuerName, argument
68 super(doc);
77 * @param doc
81 public XMLX509IssuerSerial(Document doc, String x509IssuerName, argument
83 this(doc, x509IssuerName, new BigInteger(x509SerialNumber));
89 * @param doc
93 public XMLX509IssuerSerial(Document doc, String x509IssuerName, argument
95 this(doc, x509IssuerName,
102 * @param doc
105 XMLX509IssuerSerial(Document doc, X509Certificate x509certificate) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DSchemaDocument.java121 boolean includes(SchemaDocument doc); argument
130 boolean imports(SchemaDocument doc); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DMemberDocImpl.java55 public MemberDocImpl(DocEnv env, Symbol sym, String doc, JCTree tree, Position.LineMap lineMap) { argument
56 super(env, sym, doc, tree, lineMap);

Completed in 88 milliseconds

12345678910