Home
last modified time | relevance | path

Searched refs:doc (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/trunk/main/sfx2/
H A DLibrary_sfx.mk172 sfx2/source/doc/DocumentMetadataAccess \
173 sfx2/source/doc/Metadatable \
174 sfx2/source/doc/QuerySaveDocument \
175 sfx2/source/doc/SfxDocumentMetaData \
176 sfx2/source/doc/docfac \
177 sfx2/source/doc/docfile \
178 sfx2/source/doc/docfilt \
179 sfx2/source/doc/docinf \
180 sfx2/source/doc/docinsert \
181 sfx2/source/doc/docmacromode \
[all …]
/trunk/main/sysui/desktop/os2/
H A Dmakefile.mk35 $(MISC)$/ooo-base-doc.ico \
37 $(MISC)$/ooo-calc-doc.ico \
39 $(MISC)$/ooo-chart-doc.ico \
41 $(MISC)$/ooo-draw-doc.ico \
43 $(MISC)$/ooo-empty-doc.ico \
45 $(MISC)$/ooo-image-doc.ico \
47 $(MISC)$/ooo-impress-doc.ico \
49 $(MISC)$/ooo-macro-doc.ico \
51 $(MISC)$/ooo-master-doc.ico \
53 $(MISC)$/ooo-math-doc.ico \
[all …]
/trunk/main/desktop/util/
H A Dooverinfo2.rc24 ICON 2 "icons/ooo-writer-doc.ico"
26 ICON 4 "icons/ooo-calc-doc.ico"
28 ICON 6 "icons/ooo-draw-doc.ico"
30 ICON 8 "icons/ooo-impress-doc.ico"
32 ICON 10 "icons/ooo-impress-doc.ico"
33 //ICON 11 "icons/ooo-global-doc.ico"
34 //ICON 12 "icons/ooo-html-doc.ico"
35 ICON 13 "icons/ooo-chart-doc.ico"
36 ICON 14 "icons/ooo-base-doc.ico"
37 ICON 15 "icons/ooo-math-doc.ico"
[all …]
/trunk/main/sysui/desktop/icons/
H A Dmakefile.mk61 $(MISC)$/ooo-base-doc.ico \
62 $(MISC)$/ooo-calc-doc.ico \
64 $(MISC)$/ooo-chart-doc.ico \
65 $(MISC)$/ooo-draw-doc.ico \
67 $(MISC)$/ooo-empty-doc.ico \
69 $(MISC)$/ooo-image-doc.ico \
70 $(MISC)$/ooo-impress-doc.ico \
72 $(MISC)$/ooo-macro-doc.ico \
73 $(MISC)$/ooo-master-doc.ico \
74 $(MISC)$/ooo-math-doc.ico \
[all …]
/trunk/main/autodoc/inc/ary/info/
H A Ddocstore.hxx37 namespace doc namespace
53 DYN doc::Node & let_drDocu );
55 DYN doc::Node & let_drDocu );
58 DYN doc::Node & let_drDocu );
61 DYN doc::Node & let_drDocu,
64 DYN doc::Node & let_drDocu,
69 DYN doc::Node & let_drDocu ) = 0;
71 DYN doc::Node & let_drDocu ) = 0;
74 DYN doc::Node & let_drDocu ) = 0;
77 DYN doc::Node & let_drDocu,
[all …]
/trunk/main/sw/
H A DLibrary_sw.mk161 sw/source/core/doc/SwStyleNameMapper \
162 sw/source/core/doc/acmplwrd \
163 sw/source/core/doc/dbgoutsw \
164 sw/source/core/doc/doc \
165 sw/source/core/doc/docbasic \
166 sw/source/core/doc/docbm \
167 sw/source/core/doc/docchart \
168 sw/source/core/doc/doccomp \
169 sw/source/core/doc/doccorr \
170 sw/source/core/doc/docdde \
[all …]
/trunk/main/desktop/source/deployment/registry/
H A Ddp_backenddb.cxx145 const Reference<css::xml::dom::XDocument> doc = getDocument(); in removeElement() local
146 const Reference<css::xml::dom::XNode> root = doc->getFirstChild(); in removeElement()
272 const Reference<css::xml::dom::XDocument> doc = getDocument(); in getKeyElement() local
273 const Reference<css::xml::dom::XNode> root = doc->getFirstChild(); in getKeyElement()
301 const Reference<css::xml::dom::XDocument> doc = getDocument(); in writeVectorOfPair() local
302 const Reference<css::xml::dom::XNode> root = doc->getFirstChild(); in writeVectorOfPair()
305 doc->createElementNS(sNameSpace, sPrefix + sVectorTagName)); in writeVectorOfPair()
314 doc->createElementNS(sNameSpace, sPrefix + sPairTagName)); in writeVectorOfPair()
321 doc->createElementNS(sNameSpace, sPrefix + sFirstTagName)); in writeVectorOfPair()
328 doc->createTextNode( i->first)); in writeVectorOfPair()
[all …]
/trunk/main/xmerge/java/aportisdoc/src/main/java/org/openoffice/xmerge/converter/xml/sxw/aportisdoc/
H A DDocumentDeserializerImpl.java93 Document doc = null; in deserialize() local
108 doc = buildDocument(docName, text); in deserialize()
113 return doc; in deserialize()
135 org.w3c.dom.Document doc = sxwDoc.getContentDOM(); in buildDocument() local
140 NodeList list = doc.getElementsByTagName(TAG_OFFICE_BODY); in buildDocument()
154 Element paraNode = doc.createElement(TAG_PARAGRAPH); in buildDocument()
166 addTextNode(doc, paraNode, text, startIndex, i - 1); in buildDocument()
171 Element tabNode = doc.createElement(TAG_TAB_STOP); in buildDocument()
181 addTextNode(doc, paraNode, text, startIndex, i - 1); in buildDocument()
189 paraNode = doc.createElement(TAG_PARAGRAPH); in buildDocument()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DDataSheet.java38 private Document doc = null; field in DataSheet
50 doc = FileUtil.parseXML(file.getAbsolutePath()); in DataSheet()
51 if (doc != null) { in DataSheet()
52 NodeList nodes = doc.getElementsByTagName("Workbook"); in DataSheet()
60 doc = FileUtil.newXML(); in DataSheet()
61 workBookEl = doc.createElement("Workbook"); in DataSheet()
64 doc.appendChild(workBookEl); in DataSheet()
86 Element worksheetEl = doc.createElement("Worksheet"); in getTableElement()
89 Element tableEl = doc.createElement("Table"); in getTableElement()
96 Element rowEl = doc.createElement("Row"); in addRow()
[all …]
H A DXMLReporter.java49 private Document doc = null; field in XMLReporter
77 testcaseEl = doc.createElement("testcase"); in testStarted()
94 Element failureEl = doc.createElement("failure"); in testFailure()
101 Element errorEl = doc.createElement("error"); in testFailure()
121 Element ignoredEl = doc.createElement("ignored"); in testIgnored()
155 doc = FileUtil.newXML(); in startSuite()
157 testsuiteEl = doc.createElement("testsuite"); in startSuite()
160 doc.appendChild(testsuiteEl); in startSuite()
168 if (doc != null) { in store()
178 Element props = doc.createElement("properties"); in store()
[all …]
/trunk/main/wizards/com/sun/star/wizards/web/export/
H A DAbstractExporter.java96 protected Object openDocument(CGDocument doc, XMultiServiceFactory xmsf) in openDocument() argument
108 …ntime.queryInterface(XComponentLoader.class, desktop).loadComponentFromURL(doc.cp_URL, "_blank", 0… in openDocument()
116 pageCount(doc, document); in openDocument()
125 protected void closeDocument(Object doc, XMultiServiceFactory xmsf) in closeDocument() argument
132 XCloseable xc = UnoRuntime.queryInterface(XCloseable.class, doc); in closeDocument()
141 private void pageCount(CGDocument doc, Object document) in pageCount() argument
143 if (doc.appType.equals(TypeDetection.WRITER_DOC)) in pageCount()
145 doc.pages = TextDocument.getPageCount(document); in pageCount()
147 else if (doc.appType.equals(TypeDetection.IMPRESS_DOC)) in pageCount()
149 doc.pages = OfficeDocument.getSlideCount(document); in pageCount()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DSxcDocumentDeserializer.java74 private org.w3c.dom.Document doc = null; field in SxcDocumentDeserializer
172 doc = sxcDoc.getContentDOM(); in deserialize()
208 NodeList list = doc.getElementsByTagName(TAG_OFFICE_FONT_DECLS); in initFontTable()
214 Element tableElement = (Element) doc.createElement(TAG_STYLE_FONT_DECL); in initFontTable()
245 NodeList list = doc.getElementsByTagName(TAG_OFFICE_BODY); in decode()
316 Element namedExpressionsElement = (Element) doc.createElement(TAG_NAMED_EXPRESSIONS); in processNameDefinition()
321 tableEntry.writeNode(doc, namedExpressionsElement); in processNameDefinition()
346 Element tableElement = (Element) doc.createElement(TAG_TABLE); in processTable()
410 Element colElement = (Element) doc.createElement(TAG_TABLE_COLUMN); in processColumns()
491 rowElement = (Element) doc.createElement(TAG_TABLE_ROW); in processCells()
[all …]
/trunk/main/xmerge/source/wordsmith/java/org/openoffice/xmerge/converter/xml/sxw/wordsmith/
H A DDocumentDeserializerImpl.java108 Document doc = null; in deserialize() local
119 doc = buildDocument(docName, b, origDoc); in deserialize()
121 return doc; in deserialize()
303 org.w3c.dom.Document doc = sxwDoc.getContentDOM(); in buildDocument() local
308 NodeList list = doc.getElementsByTagName(TAG_OFFICE_BODY); in buildDocument()
328 currPara = doc.createElement(TAG_PARAGRAPH); in buildDocument()
394 Node trNodes[] = parseText(tr.getText(), doc); in buildDocument()
432 Element textSpanNode = doc.createElement(TAG_SPAN); in buildDocument()
452 NodeList r = doc.getElementsByTagName(TAG_OFFICE_DOCUMENT_CONTENT); in buildDocument()
470 df = doc.createDocumentFragment(); in buildDocument()
[all …]
/trunk/main/autodoc/source/parser/cpp/
H A Dsdocdist.hxx60 DYN ary::doc::Node& let_drDocu );
62 DYN ary::doc::Node& let_drDocu );
65 DYN ary::doc::Node& let_drDocu );
68 DYN ary::doc::Node& let_drDocu,
71 DYN ary::doc::Node& let_drDocu,
77 Dyn<ary::doc::Node> pLastStoredDocu;
106 S_DocuDistributor::do_Store2CurFile( DYN ary::doc::Node & let_drDocu ) in do_Store2CurFile()
114 S_DocuDistributor::do_Store2CurNamespace( DYN ary::doc::Node & let_drDocu ) in do_Store2CurNamespace()
122 S_DocuDistributor::do_Store2ConnectedDeclaration( DYN ary::doc::Node & let_drDocu ) in do_Store2ConnectedDeclaration()
132 S_DocuDistributor::do_Store2Glossary( DYN ary::doc::Node & let_drDocu, in do_Store2Glossary()
[all …]
/trunk/main/xmlsecurity/tools/standalone/csfit/
H A Dsigner.cxx77 xmlDocPtr doc ; in main() local
95 doc = NULL ; in main()
131 doc = xmlParseFile( argv[2] ) ; in main()
132 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
138 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
146 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
148 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
164 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
170 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
192 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
[all …]
H A Dverifier.cxx80 xmlDocPtr doc = NULL ; in main() local
118 doc = xmlParseFile( argv[2] ) ; in main()
119 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
125 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
132 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
134 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
150 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
156 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
178 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
319 if( doc != NULL ) in main()
[all …]
/trunk/main/wizards/com/sun/star/wizards/web/
H A DProcess.java427 Document doc = (Document) settings.cp_DefaultSession.createDOM(); in generate() local
428 generate(xmsf, layout, doc, fileAccess, targetDir, task); in generate()
498 Document doc, in generate() argument
523 doc.normalize(); in generate()
538 new DOMSource(doc), new StreamResult(oStream)); in generate()
656 private boolean export(CGDocument doc, String dir, Task task) in export() argument
660 if (!doc.valid) in export()
664 doc.validate(xmsf, null); in export()
669 error(ex, doc, ERROR_DOC_VALIDATE, ErrorHandler.ERROR_PROCESS_FATAL); in export()
674 CGExporter exporter = (CGExporter) settings.cp_Exporters.getElement(doc.cp_Exporter); in export()
[all …]
H A DWWD_Startup.java255 Object doc = OfficeDocument.createNewDocument(myFrame, "swriter", false, true); in WWD_Startup() local
257 loadSettings(doc); in WWD_Startup()
601 CGDocument doc = new CGDocument(); //dummy in makeDataAware() local
605 docAware.add(UnoDataAware.attachEditControl(doc, "cp_Title", txtDocTitle, refresh, true)); in makeDataAware()
606 … docAware.add(UnoDataAware.attachEditControl(doc, "cp_Description", txtDocInfo, refresh, true)); in makeDataAware()
607 docAware.add(UnoDataAware.attachEditControl(doc, "cp_Author", txtDocAuthor, refresh, true)); in makeDataAware()
608 docAware.add(UnoDataAware.attachListBox(doc, "Exporter", lstDocTargetType, refresh, false)); in makeDataAware()
794 protected boolean checkDocument(CGDocument doc, Task task, XControl xC) in checkDocument() argument
798 doc.validate(xMSF, task); in checkDocument()
804 …rAttribute.YES_NO + VclWindowPeerAttribute.DEF_NO, getFileAccess().getPath(doc.cp_URL, PropertyNam… in checkDocument()
[all …]
/trunk/main/xmlsecurity/tools/standalone/mscsfit/
H A Dsigner.cxx69 xmlDocPtr doc = NULL ; in main() local
113 doc = xmlParseFile( argv[1] ) ; in main()
114 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
120 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
128 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
130 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
146 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
152 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
174 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
336 xmlDocDump( dstFile, doc ) ; in main()
[all …]
H A Dverifier.cxx72 xmlDocPtr doc = NULL ; in main() local
116 doc = xmlParseFile( argv[1] ) ; in main()
117 if( doc == NULL || xmlDocGetRootElement( doc ) == NULL ) { in main()
123 tplNode = xmlSecFindNode( xmlDocGetRootElement( doc ), xmlSecNodeSignature, xmlSecDSigNs ) ; in main()
130 …tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", ( xmlChar* )"http:/… in main()
132 tarNode = xmlSecFindNode( xmlDocGetRootElement( doc ), ( xmlChar* )"document", NULL ) ; in main()
148 idValue = xmlNodeListGetString( tarNode->doc, idAttr->children, 1 ) ; in main()
154 if( xmlAddID( NULL, doc, idValue, idAttr ) == NULL ) { in main()
176 uriValue = xmlNodeListGetString( tarNode->doc, uriAttr->children, 1 ) ; in main()
331 if( doc != NULL ) in main()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/dom/
H A DDOMDocument.java245 private byte[] docToBytes(Document doc) in docToBytes() argument
253 String domImpl = doc.getClass().getName(); in docToBytes()
273 meth.invoke(doc, new Object [] { baos } ); in docToBytes()
283 meth.invoke(doc, new Object [] { baos } ); in docToBytes()
309 meth.invoke(serializer, new Object [] { doc } ); in docToBytes()
325 meth.invoke(serializer, new Object [] { doc, baos } ); in docToBytes()
330 DOMSource domSource = new DOMSource(doc); in docToBytes()
384 Document doc = null; in createDOM() local
389 doc = builder.newDocument(); in createDOM()
397 Element root = (Element) doc.createElement(rootName); in createDOM()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/
H A DOfficeDocument.java643 Document doc = null; in parse() local
651 doc = builder.parse(ins); in parse()
653 return doc; in parse()
853 static byte[] docToBytes(Document doc) in docToBytes() argument
861 String domImpl = doc.getClass().getName(); in docToBytes()
882 meth.invoke(doc, new Object [] { baos } ); in docToBytes()
893 meth.invoke(doc, new Object [] { baos } ); in docToBytes()
921 meth.invoke(serializer, new Object [] { doc } ); in docToBytes()
937 meth.invoke(serializer, new Object [] { doc, baos } ); in docToBytes()
941 DOMSource domSource = new DOMSource(doc); in docToBytes()
[all …]
/trunk/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/
H A DDocumentDeserializerImpl.java141 org.w3c.dom.Document doc = sxwDoc.getContentDOM(); in buildDocument() local
147 Node bodyNode = doc.getElementsByTagName(TAG_OFFICE_BODY).item(0); in buildDocument()
150 Node autoStylesNode = doc.getElementsByTagName( in buildDocument()
153 autoStylesNode = doc.createElement(TAG_OFFICE_AUTOMATIC_STYLES); in buildDocument()
154 doc.insertBefore(autoStylesNode, bodyNode); in buildDocument()
169 Element paraNode = doc.createElement(TAG_PARAGRAPH); in buildDocument()
194 Element span = doc.createElement(OfficeConstants.TAG_SPAN); in buildDocument()
210 Node[] children = OfficeUtil.parseText(pts.getText(), doc); in buildDocument()
265 listNode = doc.createElement(TAG_UNORDERED_LIST); in buildDocument()
267 Element listItem = doc.createElement(TAG_LIST_ITEM); in buildDocument()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/xslt/
H A DPluginFactoryImpl.java89 public DocumentSerializer createDocumentSerializer(Document doc) { in createDocumentSerializer() argument
90 return new DocumentSerializerImpl(this,doc); in createDocumentSerializer()
120 GenericOfficeDocument doc = new GenericOfficeDocument(name); in createOfficeDocument() local
121 doc.read(is); in createOfficeDocument()
122 return doc; in createOfficeDocument()
129 GenericOfficeDocument doc = new GenericOfficeDocument(name); in createOfficeDocument() local
130 doc.read(is,isZip); in createOfficeDocument()
131 return doc; in createOfficeDocument()
180 public DocumentMerger createDocumentMerger(Document doc) { in createDocumentMerger() argument
182 DocumentMergerImpl merger = new DocumentMergerImpl(doc, cc); in createDocumentMerger()
/trunk/main/basctl/source/basicide/
H A Dbasidesh.cxx765 for ( ScriptDocuments::const_iterator doc = aDocuments.begin(); in UpdateWindows() local
766 doc != aDocuments.end(); in UpdateWindows()
767 ++doc in UpdateWindows()
770 StartListening( *doc->getBasicManager(), sal_True /* Nur einmal anmelden */ ); in UpdateWindows()
773 Sequence< ::rtl::OUString > aLibNames( doc->getLibraryNames() ); in UpdateWindows()
781 if ( !m_aCurLibName.Len() || ( *doc == m_aCurDocument && aLibName == m_aCurLibName ) ) in UpdateWindows()
785 … Reference< script::XLibraryContainer > xModLibContainer( doc->getLibraryContainer( E_SCRIPTS ) ); in UpdateWindows()
800 pLibInfoItem = pData->GetLibInfos().GetInfo( LibInfoKey( *doc, aLibName ) ); in UpdateWindows()
805 StarBASIC* pLib = doc->getBasicManager()->GetLib( aLibName ); in UpdateWindows()
811 … Sequence< ::rtl::OUString > aModNames( doc->getObjectNames( E_SCRIPTS, aLibName ) ); in UpdateWindows()
[all …]

12345678910>>...15