Home
last modified time | relevance | path

Searched refs:xAttr (Results 1 – 17 of 17) sorted by relevance

/trunk/main/unoxml/qa/complex/unoxml/
H A DDOMTest.java163 XAttr xAttr = xDoc.createAttribute("foo"); in testXDocument() local
164 assertNotNull("XDocument.createAttribute", xAttr); in testXDocument()
166 "foo", xAttr.getNodeName()); in testXDocument()
180 XAttr xAttr = xDoc.createAttributeNS(ns, "e:foo"); in testXDocument() local
181 assertNotNull("XDocument.createAttributeNS", xAttr); in testXDocument()
183 xAttr.getNodeName()); in testXDocument()
829 XNode xAttr = xElemFoo.getAttributeNode("foo"); in testXElement() local
830 assertNull("XElement.getAttributeNode", xAttr); in testXElement()
833 XNode xAttr = xElemFoo.getAttributeNodeNS(ns, "foo"); in testXElement() local
834 assertNull("XElement.getAttributeNodeNS", xAttr); in testXElement()
[all …]
/trunk/main/oox/source/drawingml/diagram/
H A Ddiagramlayoutatoms.cxx49 void IteratorAttr::loadFromXAttr( const Reference< XFastAttributeList >& xAttr ) in loadFromXAttr() argument
51 AttributeList attr( xAttr ); in loadFromXAttr()
52 mnAxis = xAttr->getOptionalValueToken( XML_axis, 0 ); in loadFromXAttr()
55 mnPtType = xAttr->getOptionalValueToken( XML_ptType, 0 ); in loadFromXAttr()
71 void ConditionAttr::loadFromXAttr( const Reference< XFastAttributeList >& xAttr ) in loadFromXAttr() argument
73 mnFunc = xAttr->getOptionalValueToken( XML_func, 0 ); in loadFromXAttr()
75 mnArg = LayoutNodeContext::tagToVarIdx( xAttr->getOptionalValueToken( XML_arg, XML_none ) ); in loadFromXAttr()
76 mnOp = xAttr->getOptionalValueToken( XML_op, 0 ); in loadFromXAttr()
77 msVal = xAttr->getOptionalValue( XML_val ); in loadFromXAttr()
/trunk/main/unoxml/source/dom/
H A Dattributesmap.cxx167 Reference< XAttr > const xAttr(m_pElement->getAttributeNode(name)); in removeNamedItem() local
168 if (!xAttr.is()) { in removeNamedItem()
175 m_pElement->removeAttributeNode(xAttr), UNO_QUERY); in removeNamedItem()
188 Reference< XAttr > const xAttr( in removeNamedItemNS() local
190 if (!xAttr.is()) { in removeNamedItemNS()
197 m_pElement->removeAttributeNode(xAttr), UNO_QUERY); in removeNamedItemNS()
208 Reference< XAttr > const xAttr(xNode, UNO_QUERY); in setNamedItem() local
217 m_pElement->setAttributeNode(xAttr), UNO_QUERY); in setNamedItem()
228 Reference< XAttr > const xAttr(xNode, UNO_QUERY); in setNamedItemNS() local
237 m_pElement->setAttributeNodeNS(xAttr), UNO_QUERY); in setNamedItemNS()
H A Delement.cxx146 Reference< XFastAttributeList > xAttr( i_rContext.mxAttribList.get() ); in fastSaxify() local
155 …xt.mxCurrentHandler = xParentHandler->createUnknownChildContext( aNamespace, aElementName, xAttr ); in fastSaxify()
157 …entHandler = i_rContext.mxDocHandler->createUnknownChildContext( aNamespace, aElementName, xAttr ); in fastSaxify()
160 … i_rContext.mxCurrentHandler->startUnknownElement( aNamespace, aElementName, xAttr ); in fastSaxify()
165 … i_rContext.mxCurrentHandler = xParentHandler->createFastChildContext( nElementToken, xAttr ); in fastSaxify()
167 …Context.mxCurrentHandler = i_rContext.mxDocHandler->createFastChildContext( nElementToken, xAttr ); in fastSaxify()
170 i_rContext.mxCurrentHandler->startFastElement( nElementToken, xAttr ); in fastSaxify()
572 Reference< XAttr > const xAttr( in setAttributeNode_Impl_Lock() local
583 sal_True, sal_False, Reference< XNode >(xAttr, UNO_QUERY), in setAttributeNode_Impl_Lock()
584 OUString(), xAttr->getValue(), xAttr->getName(), in setAttributeNode_Impl_Lock()
[all …]
H A Ddocument.cxx761 Reference< XAttr > const xAttr(xImportedNode, UNO_QUERY_THROW); in lcl_ImportNode() local
763 xDocument->createAttribute(xAttr->getName()); in lcl_ImportNode()
764 xNew->setValue(xAttr->getValue()); in lcl_ImportNode()
/trunk/main/unodevtools/source/unodevtools/
H A Dtypeblob.cxx215 const Reference<XInterfaceAttributeTypeDescription2>& xAttr) in writeAttributeMethodData() argument
219 seqExcp = xAttr->getGetExceptions(); in writeAttributeMethodData()
221 seqExcp = xAttr->getSetExceptions(); in writeAttributeMethodData()
225 xAttr->getMemberName(), in writeAttributeMethodData()
371 Reference< XInterfaceAttributeTypeDescription2 > xAttr; in getTypeBlob() local
388 xAttr = Reference< XInterfaceAttributeTypeDescription2 >( in getTypeBlob()
390 if ( xAttr.is() ) { in getTypeBlob()
393 if (xAttr->getGetExceptions().getLength() > 0) in getTypeBlob()
396 if (xAttr->getSetExceptions().getLength() > 0) in getTypeBlob()
434 xAttr = Reference< XInterfaceAttributeTypeDescription2 >( in getTypeBlob()
[all …]
/trunk/main/idl/source/objects/
H A Dobject.cxx342 SvMetaAttributeRef xAttr; in ReadContextSvIdl() local
345 xAttr = new SvMetaSlot( pType ); in ReadContextSvIdl()
346 if( xAttr->ReadSvIdl( rBase, rInStm ) ) in ReadContextSvIdl()
347 bOk = xAttr->Test( rBase, rInStm ); in ReadContextSvIdl()
351 xAttr = new SvMetaAttribute( pType ); in ReadContextSvIdl()
352 if( xAttr->ReadSvIdl( rBase, rInStm ) ) in ReadContextSvIdl()
353 bOk = xAttr->Test( rBase, rInStm ); in ReadContextSvIdl()
357 bOk = TestAttribute( rBase, rInStm, *xAttr ); in ReadContextSvIdl()
360 if( !xAttr->GetSlotId().IsSet() ) in ReadContextSvIdl()
364 xAttr->SetSlotId( aI ); in ReadContextSvIdl()
[all …]
H A Dtypes.cxx1836 SvMetaAttributeRef xAttr = new SvMetaAttribute(); in ReadContextSvIdl() local
1837 if( xAttr->ReadSvIdl( rBase, rInStm ) ) in ReadContextSvIdl()
1839 if( xAttr->Test( rBase, rInStm ) ) in ReadContextSvIdl()
1840 GetAttrList().Append( xAttr ); in ReadContextSvIdl()
/trunk/main/rdbmaker/source/rdbmaker/
H A Dtypeblop.cxx363 Reference< XInterfaceAttributeTypeDescription > xAttr; in getTypeBlop() local
373xAttr = Reference< XInterfaceAttributeTypeDescription >(memberTypes[i], UNO_QUERY); in getTypeBlop()
374 if ( xAttr.is() ) in getTypeBlop()
401xAttr = Reference< XInterfaceAttributeTypeDescription >(memberTypes[i], UNO_QUERY); in getTypeBlop()
402 if ( xAttr.is() ) in getTypeBlop()
405 if (xAttr->isReadOnly()) in getTypeBlop()
414 xAttr->getType()->getName().replace('.', '/'), in getTypeBlop()
/trunk/main/forms/source/xforms/
H A Dmodel_ui.cxx655 Reference<XAttr> xAttr( xMap->item(n), UNO_QUERY ); in renameNode() local
656 xElem->setAttributeNode( xOldElem->removeAttributeNode( xAttr ) ); in renameNode()
672 Reference<XAttr> xAttr = xDoc->createAttribute( sName ); in renameNode() local
673 xAttr->setValue( xNode->getNodeValue() ); in renameNode()
678 xNew = xParent->appendChild( Reference<XNode>( xAttr, UNO_QUERY ) ); in renameNode()
819 Reference< XAttr > xAttr( xCurrent, UNO_QUERY ); in lcl_serializeForDisplay() local
820 if ( xAttr.is() ) in lcl_serializeForDisplay()
822 sResult += lcl_serializeForDisplay( xAttr ); in lcl_serializeForDisplay()
/trunk/main/sax/source/fastparser/
H A Dfastparser.cxx799 Reference< XFastAttributeList > xAttr( rEntity.mxAttributes.get() ); in callbackStartElement() local
811 … xContext = xParentContext->createUnknownChildContext( aNamespace, aElementName, xAttr ); in callbackStartElement()
813 …xContext = rEntity.mxDocumentHandler->createUnknownChildContext( aNamespace, aElementName, xAttr ); in callbackStartElement()
818 xContext->startUnknownElement( aNamespace, aElementName, xAttr ); in callbackStartElement()
824 xContext = xParentContext->createFastChildContext( nElementToken, xAttr ); in callbackStartElement()
826 … xContext = rEntity.mxDocumentHandler->createFastChildContext( nElementToken, xAttr ); in callbackStartElement()
832 xContext->startFastElement( nElementToken, xAttr ); in callbackStartElement()
/trunk/main/xmloff/source/core/
H A DDomExport.cxx251 OUString DomExport::qualifiedName( const Reference<XAttr>& xAttr ) in qualifiedName() argument
253 return qualifiedName( xAttr->getPrefix(), xAttr->getNamespaceURI(), in qualifiedName()
254 xAttr->getNodeName() ); in qualifiedName()
/trunk/main/xmloff/source/draw/
H A Dximplink.cxx86 void SdXMLShapeLinkContext::StartElement(const uno::Reference< xml::sax::XAttributeList>& xAttr ) in StartElement() argument
88 SvXMLImportContext::StartElement( xAttr ); in StartElement()
/trunk/main/sdext/source/pdfimport/sax/
H A Demitcontext.cxx101 uno::Reference< xml::sax::XAttributeList > xAttr( in beginTag() local
105 m_xDocHdl->startElement( aTag, xAttr ); in beginTag()
/trunk/main/xmlscript/source/xmldlg_imexp/
H A Dxmldlg_export.cxx1342 Reference< xml::sax::XAttributeList > xAttr( _styles[ nPos ]->createElement() ); in dump() local
1343 static_cast< ElementDescriptor * >( xAttr.get() )->dump( xOut.get() ); in dump()
/trunk/main/svx/source/form/
H A Ddatanavi.cxx420 Reference< css::xml::dom::XNode > xAttr = xMap->item(j); in AddChildren() local
421 pNode = new ItemNode( xAttr ); in AddChildren()
423 m_xUIHelper->getNodeDisplayName( xAttr, bShowDetails ); in AddChildren()
/trunk/main/sw/source/core/access/
H A Daccpara.cxx1423 uno::Reference<XAccessibleExtendedAttributes> xAttr = this; in queryInterface() local
1424 aRet <<= xAttr; in queryInterface()