Home
last modified time | relevance | path

Searched refs:Element (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/trunk/main/sdext/source/pdfimport/tree/
H A Dgenericelements.hxx77 struct Element : public ElementTreeVisitable struct
80 Element( Element* pParent ) in Element() function
88 virtual ~Element();
93 void updateGeometryWith( const Element* pMergeFrom );
102 static void setParent( std::list<Element*>::iterator& el, Element* pNewParent );
106 Element* Parent; argument
107 std::list<Element*> Children; argument
110 struct ListElement : public Element
112 ListElement() : Element( NULL ) {} in ListElement()
114 virtual void visitedBy( ElementTreeVisitor&, const std::list< Element* >::const_iterator& );
[all …]
H A Dgenericelements.cxx44 Element::~Element() in ~Element()
48 Element* pCurr( Children.front() ); in ~Element()
54 void Element::applyToChildren( ElementTreeVisitor& rVisitor ) in applyToChildren()
56 for( std::list< Element* >::iterator it = Children.begin(); it != Children.end(); ++it ) in applyToChildren()
60 void Element::setParent( std::list<Element*>::iterator& el, Element* pNewParent ) in setParent()
69 void Element::updateGeometryWith( const Element* pMergeFrom ) in updateGeometryWith()
100 void Element::emitStructure( int nLevel) in emitStructure()
105 for( std::list< Element* >::iterator it = Children.begin(); it != Children.end(); ++it ) in emitStructure()
111 void ListElement::visitedBy( ElementTreeVisitor& visitor, const std::list< Element* >::const_iterat… in visitedBy()
118 const std::list< Element* >::const_iterator& rParentIt ) in visitedBy()
[all …]
H A Dwritertreevisiting.hxx37 void optimizeTextElements(Element& rParent);
47 virtual void visit( HyperlinkElement&, const std::list< Element* >::const_iterator& );
48 virtual void visit( TextElement&, const std::list< Element* >::const_iterator& );
49 virtual void visit( ParagraphElement&, const std::list< Element* >::const_iterator& );
50 virtual void visit( FrameElement&, const std::list< Element* >::const_iterator& );
51 virtual void visit( PolyPolyElement&, const std::list< Element* >::const_iterator& );
52 virtual void visit( ImageElement&, const std::list< Element* >::const_iterator& );
53 virtual void visit( PageElement&, const std::list< Element* >::const_iterator& );
54 virtual void visit( DocumentElement&, const std::list< Element* >::const_iterator& );
76 virtual void visit( HyperlinkElement&, const std::list< Element* >::const_iterator& );
[all …]
H A Ddrawtreevisiting.hxx42 void optimizeTextElements(Element& rParent);
51 virtual void visit( HyperlinkElement&, const std::list< Element* >::const_iterator& );
52 virtual void visit( TextElement&, const std::list< Element* >::const_iterator& );
53 virtual void visit( ParagraphElement&, const std::list< Element* >::const_iterator& );
54 virtual void visit( FrameElement&, const std::list< Element* >::const_iterator& );
55 virtual void visit( PolyPolyElement&, const std::list< Element* >::const_iterator& );
56 virtual void visit( ImageElement&, const std::list< Element* >::const_iterator& );
57 virtual void visit( PageElement&, const std::list< Element* >::const_iterator& );
58 virtual void visit( DocumentElement&, const std::list< Element* >::const_iterator& );
74 virtual void visit( HyperlinkElement&, const std::list< Element* >::const_iterator& );
[all …]
H A Dwritertreevisiting.cxx42 void WriterXmlEmitter::visit( HyperlinkElement& elem, const std::list< Element* >::const_iterator& … in visit()
56 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
65 void WriterXmlEmitter::visit( TextElement& elem, const std::list< Element* >::const_iterator& ) in visit()
79 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
89 void WriterXmlEmitter::visit( ParagraphElement& elem, const std::list< Element* >::const_iterator& … in visit()
101 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
118 Element* pAnchor = rElem.Parent; in fillFrameProps()
200 void WriterXmlEmitter::visit( FrameElement& elem, const std::list< Element* >::const_iterator& ) in visit()
212 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
224 void WriterXmlEmitter::visit( PolyPolyElement& elem, const std::list< Element* >::const_iterator& ) in visit()
[all …]
H A Ddrawtreevisiting.cxx92 void DrawXmlEmitter::visit( HyperlinkElement& elem, const std::list< Element* >::const_iterator& ) in visit()
106 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
115 void DrawXmlEmitter::visit( TextElement& elem, const std::list< Element* >::const_iterator& ) in visit()
177 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
187 void DrawXmlEmitter::visit( ParagraphElement& elem, const std::list< Element* >::const_iterator& ) in visit()
199 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
274 void DrawXmlEmitter::visit( FrameElement& elem, const std::list< Element* >::const_iterator& ) in visit()
286 std::list< Element* >::iterator this_it = elem.Children.begin(); in visit()
298 void DrawXmlEmitter::visit( PolyPolyElement& elem, const std::list< Element* >::const_iterator& ) in visit()
367 void DrawXmlEmitter::visit( ImageElement& elem, const std::list< Element* >::const_iterator& ) in visit()
[all …]
H A Dtreevisiting.hxx44 struct Element;
53 virtual void visit( HyperlinkElement&, const std::list< Element* >::const_iterator& ) = 0;
54 virtual void visit( TextElement&, const std::list< Element* >::const_iterator& ) = 0;
55 virtual void visit( ParagraphElement&, const std::list< Element* >::const_iterator& ) = 0;
56 virtual void visit( FrameElement&, const std::list< Element* >::const_iterator& ) = 0;
57 virtual void visit( PolyPolyElement&, const std::list< Element* >::const_iterator& ) = 0;
58 virtual void visit( ImageElement&, const std::list< Element* >::const_iterator& ) = 0;
59 virtual void visit( PageElement&, const std::list< Element* >::const_iterator& ) = 0;
60 virtual void visit( DocumentElement&, const std::list< Element* >::const_iterator& ) = 0;
71 …virtual void visitedBy( ElementTreeVisitor&, const std::list< Element* >::const_iterator& rParentI…
/trunk/main/autodoc/source/display/inc/toolkit/
H A Dhf_funcdecl.hxx43 Xml::Element & o_rParent );
47 Xml::Element & Add_ReturnLine();
52 Xml::Element & Add_RaisesLine(
56 Xml::Element & Front() { return *pFront; }
57 Xml::Element & Types() { return *pTypes; }
58 Xml::Element & Names() { return *pNames; }
61 Xml::Element * pFront;
62 Xml::Element * pTypes;
63 Xml::Element * pNames;
71 Xml::Element & o_rParent,
[all …]
/trunk/main/autodoc/inc/udm/xml/
H A Dxmlitem.hxx84 class Element : public Item class
87 Element & operator<<( /// For multiple content items.
89 Element & operator<<( /// For multiple content items.
91 Element & operator<<( /// For multiple content items.
93 Element & operator<<(
96Element & operator>>( /// For multiple content items. @return the child Elem…
97 DYN Element & let_drElement );
137 class EmptyElement : public Element
156 class PureElement : public Element
175 class SglTag : public Element
[all …]
/trunk/main/writerfilter/source/ooxml/
H A DOOXMLFastContextHandler.cxx184 (sal_Int32 Element, in startFastElement() argument
190 string sToken = fastTokenToId(Element); in startFastElement()
200 lcl_startFastElement(Element, Attribs); in startFastElement()
219 void SAL_CALL OOXMLFastContextHandler::endFastElement(sal_Int32 Element) in endFastElement() argument
223 string sToken = fastTokenToId(Element); in endFastElement()
227 lcl_endFastElement(Element); in endFastElement()
239 (sal_Int32 Element, in lcl_startFastElement() argument
243 OOXMLFactory::getInstance()->startAction(this, Element); in lcl_startFastElement()
247 (sal_Int32 Element) in lcl_endFastElement() argument
250 OOXMLFactory::getInstance()->endAction(this, Element); in lcl_endFastElement()
[all …]
H A DOOXMLFastContextHandler.hxx73 (sal_Int32 Element,
83 virtual void SAL_CALL endFastElement(sal_Int32 Element)
92 (sal_Int32 Element,
160 (sal_uInt32 Element,
247 (sal_Int32 Element,
251 virtual void lcl_endFastElement(sal_Int32 Element)
256 (sal_Int32 Element,
263 void startAction(sal_Int32 Element);
264 virtual void lcl_startAction(sal_Int32 Element);
265 void endAction(sal_Int32 Element);
[all …]
/trunk/main/vcl/inc/vcl/
H A Darrange.hxx50 struct Element struct in vcl::WindowArranger
62 Element() in Element() function
73 Element( Window* i_pWin, in Element() argument
104 virtual Element* getElement( size_t i_nIndex ) = 0;
105 const Element* getConstElement( size_t i_nIndex ) const in getConstElement()
138 const Element* pEle = getConstElement( i_nIndex ); in getChild()
143 const Element* pEle = getConstElement( i_nIndex ); in getWindow()
154 const Element* pEle = getConstElement( i_nIndex ); in getExpandPriority()
160 const Element* pEle = getConstElement( i_nIndex ); in getMinimumSize()
166 Element* pEle = getElement( i_nIndex ); in setMinimumSize()
[all …]
/trunk/main/scripting/java/com/sun/star/script/framework/container/
H A DDeployedUnoPackagesDB.java79 Element main = document.getDocumentElement(); in getDeployedPackages()
80 Element root = null; in getDeployedPackages()
81 Element item; in getDeployedPackages()
90 Element e = (Element)langNodes.item( i ); in getDeployedPackages()
109 Element e = (Element)packages.item( i ); in getDeployedPackages()
132 Element main = document.getDocumentElement(); in clearEntries()
151 Element main = document.getDocumentElement(); in removePackage()
152 Element langNode = null; in removePackage()
161 Element e = (Element)langNodes.item( i ); in removePackage()
179 Element e = (Element)packages.item( i ); in removePackage()
[all …]
H A DParcelDescriptor.java201 Element e = document.getDocumentElement(); in getLanguage()
213 Element e = document.getDocumentElement(); in setLanguage()
235 Element tmp; in getScriptEntries()
237 Element scriptElement = (Element)scriptNodes.item(i); in getScriptEntries()
244 tmp = (Element)nl.item(0); in getScriptEntries()
271 tmp = (Element)nl.item(0); in getScriptEntries()
278 NodeList props = ((Element)nl.item(0)).getElementsByTagName("prop"); in getScriptEntries()
283 tmp = (Element)props.item(j); in getScriptEntries()
324 Element e = (Element)nl.item(i); in initLanguageProperties()
330 Element e2 = (Element)nl2.item(j); in initLanguageProperties()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DSxcDocumentDeserializer.java28 import org.w3c.dom.Element;
214 Element tableElement = (Element) doc.createElement(TAG_STYLE_FONT_DECL); in initFontTable()
288 Element configItemSetEntry = (Element) settings.createElement(TAG_CONFIG_ITEM_SET); in processSettings()
290Element configItemMapIndexed = (Element) settings.createElement(TAG_CONFIG_ITEM_MAP_INDEXED); in processSettings()
292Element configItemMapEntry = (Element) settings.createElement(TAG_CONFIG_ITEM_MAP_ENTRY); in processSettings()
316 Element namedExpressionsElement = (Element) doc.createElement(TAG_NAMED_EXPRESSIONS); in processNameDefinition()
346 Element tableElement = (Element) doc.createElement(TAG_TABLE); in processTable()
410 Element colElement = (Element) doc.createElement(TAG_TABLE_COLUMN); in processColumns()
438 Element rowElement = null; in processCells()
441 Element cellElement = null; in processCells()
[all …]
/trunk/main/sdext/source/presenter/
H A DPresenterToolBar.cxx144 class Element class
150 Element (const ::rtl::Reference<PresenterToolBar>& rpToolBar);
151 virtual ~Element (void);
219 : public ::std::vector<rtl::Reference<Element> >
230 class Button : public Element
233 static ::rtl::Reference<Element> Create (
269 class Label : public Element
314 using Element::disposing;
334 static ::rtl::Reference<Element> Create (
351 static ::rtl::Reference<Element> Create (
[all …]
/trunk/main/autodoc/source/display/idl/
H A Dhfi_method.cxx40 Xml::Element & o_cell) in HF_IdlMethod()
87 Xml::Element &
107 Xml::Element &
109 Xml::Element &
146 Xml::Element &
182 Xml::Element & in write_Declaration()
196 Xml::Element & in write_Declaration()
202 Xml::Element * in write_Declaration()
220 Xml::Element & in write_Declaration()
237 Xml::Element & in write_Declaration()
[all …]
H A Dhfi_linklist.hxx46 Xml::Element & o_rOut,
53 Xml::Element & Cur_LinkColumn();
54 Xml::Element & Cur_CommentColumn();
59 Xml::Element * pCurLinkColumn;
60 Xml::Element * pCurCommentColumn;
68 Xml::Element & o_rOut,
75 Xml::Element & Cur_Declaration();
76 Xml::Element & Cur_Description();
81 Xml::Element * pCurDeclaration;
82 Xml::Element * pCurDescription;
[all …]
H A Dhi_factory.cxx56 HtmlFactory_Idl::produce_SummaryDeclaration( Xml::Element & o_row, in produce_SummaryDeclaration()
63 HtmlFactory_Idl::produce_InternalLink( Xml::Element & o_screen, in produce_InternalLink()
77 HtmlFactory_Idl::produce_ShortDoc( Xml::Element & o_screen, in produce_ShortDoc()
80 Xml::Element & in produce_ShortDoc()
93 HtmlFactory_Idl::produce_Bases( Xml::Element & o_screen, in produce_Bases()
105 Xml::Element & in produce_Bases()
161 Xml::Element & in produce_Members()
207 HtmlFactory_Idl::write_Docu( Xml::Element & o_screen, in write_Docu()
225 HtmlFactory_Idl::write_ManualLinks( Xml::Element & o_screen, in write_ManualLinks()
244 Xml::Element & in write_ManualLinks()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DDataSheet.java28 import org.w3c.dom.Element;
39 private Element workBookEl = null;
54 workBookEl = (Element) nodes.item(0); in DataSheet()
77 private Element getTableElement(String sheetName) { in getTableElement()
80 Element e = (Element) nodes.item(0); in getTableElement()
82 return (Element) e.getElementsByTagName("Table").item(0); in getTableElement()
86 Element worksheetEl = doc.createElement("Worksheet"); in getTableElement()
89 Element tableEl = doc.createElement("Table"); in getTableElement()
95 Element tableEl = getTableElement(sheetName); in addRow()
96 Element rowEl = doc.createElement("Row"); in addRow()
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DImageElementLayoutController.java44 import org.jfree.report.structure.Element;
108 …image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, Element.NAMESPACE_ATTRIBUTE, JFreeReportInfo.… in generateImage()
109 … image.setAttribute(JFreeReportInfo.REPORT_NAMESPACE, Element.TYPE_ATTRIBUTE, OfficeToken.IMAGE); in generateImage()
130 final Element tableCell = (Element) cellController.getNode(); in createContext()
191 final Element tableCell, in findNodeInSection()
200 if (!(node instanceof Element)) in findNodeInSection()
204 final Element child = (Element) node; in findNodeInSection()
230 if (node instanceof Element) in findParentCell()
232 final Element element = (Element) node; in findParentCell()
273 final Element column = (Element) columnDef; in addColumnStyles()
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/merger/merge/
H A DPositionBaseRowMerge.java27 import org.w3c.dom.Element;
73 Element orgCell, modCell; in mergeCellSequences()
93 orgCell = (Element)orgSeqObject; in mergeCellSequences()
94 modCell = (Element)modSeqObject; in mergeCellSequences()
123 Element orgSplitCell = splitColRepeatedCell( in mergeCellSequences()
136 Element modSplitCell = splitColRepeatedCell( in mergeCellSequences()
161 orgCell = (Element)orgSeq.start(); in mergeCellSequences()
172 private Element splitColRepeatedCell(Element orgCell, in splitColRepeatedCell()
179 Element splitCell = (Element)(orgCell.cloneNode(true)); in splitColRepeatedCell()
205 private void mergeCells(Element orgCell, Element modCell) { in mergeCells()
/trunk/main/autodoc/source/display/toolkit/
H A Dhf_funcdecl.cxx33 HF_FunctionDeclaration::HF_FunctionDeclaration( Xml::Element & o_rParent, in HF_FunctionDeclaration()
55 Xml::Element &
70 Xml::Element &
85 Xml::Element &
95 Xml::Element & in NewParamTypeCell()
108 Xml::Element &
115 Xml::Element &
121 Xml::Element & in ExceptionCell()
154 HF_FunctionDeclaration::HF_FunctionDeclaration( Xml::Element & o_rParent )
160 Xml::Element &
[all …]
H A Dhf_navi_main.cxx39 Xml::Element & o_out ) in HF_MainItem()
53 Xml::Element & o_out,
70 Xml::Element & o_out,
84 Xml::Element & o_out,
102 HF_NaviMainRow::HF_NaviMainRow( Xml::Element & o_out ) in HF_NaviMainRow()
163 StdItem::StdItem( Xml::Element & o_out, in StdItem()
179 Xml::Element & in do_ProduceItem()
188 SelfItem::SelfItem( Xml::Element & o_out, in SelfItem()
202 Xml::Element & in do_ProduceItem()
209 NoneItem::NoneItem( Xml::Element & o_out, in NoneItem()
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/model/
H A DOfficeStyle.java28 import org.jfree.report.structure.Element;
87 public Element getParagraphProperties() in getParagraphProperties()
92 public Element getTextProperties() in getTextProperties()
97 public Element getTableRowProperties() in getTableRowProperties()
102 public Element getTableProperties() in getTableProperties()
107 public Element getTableColumnProperties() in getTableColumnProperties()
112 public Element getSectionProperties() in getSectionProperties()
117 public Element getTableCellProperties() in getTableCellProperties()
122 public Element getGraphicProperties() in getGraphicProperties()

12345678910>>...20