Home
last modified time | relevance | path

Searched refs:attrs (Results 1 – 25 of 43) sorted by relevance

12

/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/
H A DOfficeDocumentReportTarget.java537 startBody(attrs); in startElement()
554 startContent(attrs); in startElement()
630 startGroup(attrs); in startElement()
714 startOther(attrs); in startElement()
720 startOther(attrs); in startElement()
945 endOther(attrs); in endElement()
956 endGroup(attrs); in endElement()
962 endGroupInstance(attrs); in endElement()
967 endGroupBody(attrs); in endElement()
972 endContent(attrs); in endElement()
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/text/
H A DTextRawReportTarget.java546 startImageProcessing(attrs); in startOther()
550 startChartProcessing(attrs); in startOther()
573 startTable(attrs); in startOther()
579 startRow(attrs); in startOther()
706 performStyleProcessing(attrs); in startOther()
745 performStyleProcessing(attrs); in startRow()
764 if (isSectionPagebreakBefore(attrs)) in startTable()
1012 performStyleProcessing(attrs); in startTable()
1121 super.startGroup(attrs); in startGroup()
1172 super.endGroup(attrs); in endGroup()
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/spreadsheet/
H A DSpreadsheetRawReportTarget.java200 ole.add(attrs); in startOther()
240 shapes.add(attrs); in startOther()
248 ole.add(attrs); in startOther()
263 collectBoundaryForElement(attrs); in startOther()
270 processElement(attrs, namespace, elementType); in startOther()
287 super.startReportSection(attrs, role); in startReportSection()
299 super.endReportSection(attrs, role); in endReportSection()
485 performStyleProcessing(attrs); in processElement()
487 final AttributeList attrList = buildAttributeList(attrs); in processElement()
492 private void collectBoundaryForElement(final AttributeMap attrs) in collectBoundaryForElement() argument
[all …]
/trunk/main/xmlsecurity/source/xmlsec/
H A Dsaxhelper.cxx100 const xmlChar** attrs = NULL ; in attrlist_to_nxmlstr() local
121 attrs[i++] = attname ; in attrlist_to_nxmlstr()
122 attrs[i++] = attvalue ; in attrlist_to_nxmlstr()
123 attrs[i] = NULL ; in attrlist_to_nxmlstr()
124 attrs[i+1] = NULL ; in attrlist_to_nxmlstr()
135 return attrs ; in attrlist_to_nxmlstr()
310 const xmlChar** attrs = NULL ; in startElement() local
326 if( attrs != NULL ) in startElement()
331 attrs[i] = NULL ; in startElement()
334 xmlFree( ( void* ) attrs ) ; in startElement()
[all …]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/output/chart/
H A DChartRawReportTarget.java115 protected void startReportSection(final AttributeMap attrs, final int role) in startReportSection() argument
120 protected void endReportSection(final AttributeMap attrs, final int role) in endReportSection() argument
127 final String namespace = ReportTargetUtil.getNamespaceFromAttribute(attrs); in startOther()
130 final String elementType = ReportTargetUtil.getElemenTypeFromAttribute(attrs); in startOther()
133 processElement(attrs, namespace, elementType); in startOther()
147 …protected void endOther(final AttributeMap attrs) throws IOException, DataSourceException, ReportP… in endOther() argument
153 final String namespace = ReportTargetUtil.getNamespaceFromAttribute(attrs); in endOther()
156 final String elementType = ReportTargetUtil.getElemenTypeFromAttribute(attrs); in endOther()
196 …private void processElement(final AttributeMap attrs, final String namespace, final String element… in processElement() argument
237 performStyleProcessing(attrs); in processElement()
[all …]
/trunk/main/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/
H A DXLIFFReader.java112 private Attributes attrs; field in XLIFFReader
357 Attributes attrs) throws SAXException { in startElement() argument
359 this.attrs = new AttributesImpl(attrs); in startElement()
434 data[TIMESTAMP_IDX] = attrs.getValue("date"); in startElement()
437 …data[SOURCE_LANGUAGE_ID_IDX] = (languageResolver.getISOFromRFC((String)attrs.getValue("source-lang… in startElement()
438 if(languageResolver.getISOFromRFC((String)attrs.getValue("target-language"))!=null){ in startElement()
447 String id = attrs.getValue("id"); in startElement()
456 DataStore.remove(attrs.getValue("id")); // TODO this can be deleted? in startElement()
459 data[BLOCKNR_IDX] = (attrs.getValue("id")); // a new part in startElement()
461 data[RESTYPE_IDX] = (attrs.getValue("restype")); in startElement()
[all …]
/trunk/main/toolkit/src2xml/source/
H A Dglobals.py86 self.attrs = {}
111 return name in self.attrs
114 return self.attrs[name]
119 self.attrs[name] = removeQuote(value)
124 keys = list(elem.attrs.keys())
126 self.attrs[key] = elem.attrs[key]
131 keys = sorted(self.attrs.keys())
133 value = self.attrs[key]
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/
H A DElementReadHandler.java50 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
54 copyAttributes(attrs, element); in startParsing()
63 protected void copyAttributes(final Attributes attrs, final Element element) in copyAttributes() argument
65 final int length = attrs.getLength(); in copyAttributes()
68 final String value = attrs.getValue(i); in copyAttributes()
69 final String namespace = attrs.getURI(i); in copyAttributes()
70 final String attr = attrs.getLocalName(i); in copyAttributes()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/styles/
H A DStyleMappingReadHandler.java52 protected void startParsing(final Attributes attrs) in startParsing() argument
55 final String elementNamespace = attrs.getValue(getUri(), in startParsing()
62 final String elementName = attrs.getValue(getUri(), "element-name"); in startParsing()
69 final String attributeNamespace = attrs.getValue(getUri(), in startParsing()
71 final String attributeName = attrs.getValue(getUri(), "attribute-name"); in startParsing()
74 "styleNameRefs".equals(attrs.getValue(getUri(), "type")); in startParsing()
76 final String family = attrs.getValue(getUri(), "style-family"); in startParsing()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/rpt/
H A DFunctionReadHandler.java59 protected void startParsing(final Attributes attrs) in startParsing() argument
62 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing()
68 final String name = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "name"); in startParsing()
73 … final String initialFormula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "initial-formula"); in startParsing()
74 … final String deepTraversing = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "deep-traversing"); in startParsing()
92 final String preEvaluated = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "pre-evaluated"); in startParsing()
H A DFormatConditionReadHandler.java57 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
59 super.startParsing(attrs); in startParsing()
63 attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing()
69 attrs.getValue(OfficeNamespaces.OOREPORT_NS, OfficeToken.STYLE_NAME); in startParsing()
77 final String enabledText = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "enabled"); in startParsing()
H A DMasterDetailReadHandler.java64 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
66 super.startParsing(attrs); in startParsing()
69 final String master = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "master"); in startParsing()
72 final String detail = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "detail"); in startParsing()
H A DReportElementReadHandler.java64 protected void startParsing(final Attributes attrs) in startParsing() argument
67 super.startParsing(attrs); in startParsing()
68 …final String printWhenGroupChanges = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "print-when-grou… in startParsing()
70 …final String printRepeatingValues = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "print-repeated-v… in startParsing()
H A DConditionalPrintExpressionReadHandler.java53 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
55 super.startParsing(attrs); in startParsing()
56 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing()
H A DFormattedTextReadHandler.java59 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
61 super.startParsing(attrs); in startParsing()
63 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing()
H A DImageReadHandler.java63 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
65 super.startParsing(attrs); in startParsing()
66 final String formula = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "formula"); in startParsing()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/accessibility/
H A D_XAccessibleEditableText.java439 PropertyValue[] attrs = null; in _setAttributes() local
442 attrs = oObj.getCharacterAttributes(0, new String[]{""}); in _setAttributes()
444 locRes = oObj.setAttributes(-1, length - 1, attrs); in _setAttributes()
455 locRes = oObj.setAttributes(0, length + 1, attrs); in _setAttributes()
465 for(int i = 0; i < attrs.length; i++) { in _setAttributes()
466 if (attrs[i].Name.equals("CharColor")) { in _setAttributes()
467 attrs[i].Value = new Integer(-2); in _setAttributes()
473 locRes = oObj.setAttributes(0, length, attrs); in _setAttributes()
480 locRes = ValueComparer.equalValue(attrs, newAttrs); in _setAttributes()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/xlink/
H A DXLinkReadHandler.java55 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
57 uri = attrs.getValue(OfficeNamespaces.XLINK_NS, "uri"); in startParsing()
58 type = attrs.getValue(OfficeNamespaces.XLINK_NS, "type"); in startParsing()
59 show = attrs.getValue(OfficeNamespaces.XLINK_NS, "show"); in startParsing()
60 actuate = attrs.getValue(OfficeNamespaces.XLINK_NS, "actuate"); in startParsing()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/model/
H A DPageSection.java45 public static boolean isPrintWithReportHeader(final AttributeMap attrs) in isPrintWithReportHeader() argument
47 …final String pagePrintOption = (String) attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "page-pri… in isPrintWithReportHeader()
51 public static boolean isPrintWithReportFooter(final AttributeMap attrs) in isPrintWithReportFooter() argument
53 …final String pagePrintOption = (String) attrs.getAttribute(OfficeNamespaces.OOREPORT_NS, "page-pri… in isPrintWithReportFooter()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/draw/
H A DObjectOleReadHandler.java56 protected void startParsing(final Attributes attrs) throws SAXException in startParsing() argument
58 super.startParsing(attrs); in startParsing()
60 final String url = attrs.getValue(OfficeNamespaces.XLINK_NS, "href"); in startParsing()
66 String classid = attrs.getValue(OfficeNamespaces.DRAWING_NS, "class-id"); in startParsing()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/layoutprocessor/
H A DOfficeGroupSectionLayoutController.java88 final AttributeMap attrs = super.computeAttributes(fc, element, target); in computeAttributes() local
92 return attrs; in computeAttributes()
97 return attrs; in computeAttributes()
100 final AttributeMap retval = new AttributeMap(attrs); in computeAttributes()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/
H A DXmlUtil.java113 NamedNodeMap attrs = oldElem.getAttributes(); in cloneNode() local
115 for (int i = 0; i < attrs.getLength(); i++) { in cloneNode()
116 newElem.setAttribute(attrs.item(i).getNodeName(), in cloneNode()
117 attrs.item(i).getNodeValue()); in cloneNode()
/trunk/main/xmlsecurity/tools/uno/
H A DAdapterNode.java146 NamedNodeMap attrs = m_domNode.getAttributes(); in toString() local
148 int length = attrs.getLength(); in toString()
151 Attr attr = (Attr)(attrs.item(i)); in toString()
H A DParsingThread.java103 NamedNodeMap attrs = m_node.getAttributes(); in nextStep() local
107 int length = attrs.getLength(); in nextStep()
110 Attr attr = (Attr)attrs.item(i); in nextStep()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/parser/table/
H A DTableReadHandler.java66 protected void startParsing(final Attributes attrs) in startParsing() argument
69 super.startParsing(attrs); in startParsing()
70 final String enabled = attrs.getValue(OfficeNamespaces.OOREPORT_NS, "visible"); in startParsing()

Completed in 137 milliseconds

12