Home
last modified time | relevance | path

Searched refs:getPrefix (Results 1 – 25 of 38) sorted by relevance

12

/trunk/main/unoxml/qa/complex/unoxml/
H A DDOMTest.java451 assertEquals("XDocument.getPrefix()", "", xDoc.getPrefix()); in testXDocument()
1038 assertEquals("XElement.getPrefix()", "", xElemFoo.getPrefix()); in testXElement()
1039 assertEquals("XElement.getPrefix()", "e", xElemFooNs.getPrefix()); in testXElement()
1063 assertEquals("XElement.getPrefix()", "f", xElemFooNs.getPrefix()); in testXElement()
1257 assertEquals("XAttr.getPrefix()", "", xAttr.getPrefix()); in testXAttr()
1258 assertEquals("XAttr.getPrefix()", "e", xAttrNs.getPrefix()); in testXAttr()
1275 assertEquals("XAttr.setPrefix()", "f", xAttrNs.getPrefix()); in testXAttr()
1485 assertEquals("XText.getPrefix()", "", xText.getPrefix()); in testXText()
1674 assertEquals("XCDATASection.getPrefix()", "", xCDS.getPrefix()); in testXCDataSection()
1847 assertEquals("XComment.getPrefix()", "", xComment.getPrefix()); in testXComment()
[all …]
/trunk/main/testgraphical/source/
H A Dfilehelper.pm184 sub getPrefix() subroutine
237 if (getPrefix() eq "performance")
255 $toolsprefix = appendPath($toolsprefix, getPrefix());
/trunk/main/xmloff/source/core/
H A DDomExport.cxx241 return qualifiedName( xNode->getPrefix(), xNode->getNamespaceURI(), in qualifiedName()
247 return qualifiedName( xElement->getPrefix(), xElement->getNamespaceURI(), in qualifiedName()
253 return qualifiedName( xAttr->getPrefix(), xAttr->getNamespaceURI(), in qualifiedName()
/trunk/main/cppu/source/uno/
H A Dcascade_mapping.cxx184 static rtl::OUString getPrefix(rtl::OUString const & str1, rtl::OUString const & str2) in getPrefix() function
262 rtl::OUString purpose = getPrefix(from_envPurpose, to_envPurpose); in getCascadeMapping()
317 rtl::OUString purpose = getPrefix(from_envPurpose, to_envPurpose); in getCascadeMapping()
/trunk/main/dbaccess/source/ui/dlg/
H A Ddbwizsetup.cxx403 if ( _pCollection->getPrefix(_sOldURLPrefix) == _pCollection->getPrefix(_sNewURLPrefix) ) in convert()
623 …m_pOutSet->Put(SfxStringItem(DSID_CONNECTURL, m_pCollection->getPrefix(::rtl::OUString(RTL_CONSTAS… in createPage()
628 …m_pOutSet->Put(SfxStringItem(DSID_CONNECTURL, m_pCollection->getPrefix(::rtl::OUString(RTL_CONSTAS… in createPage()
632 …m_pOutSet->Put(SfxStringItem(DSID_CONNECTURL, m_pCollection->getPrefix(::rtl::OUString(RTL_CONSTAS… in createPage()
H A DConnectionHelper.cxx454 sTypePrefix = m_pCollection->getPrefix( m_eType ); in impl_setURL()
500 sTypePrefix = m_pCollection->getPrefix( m_eType ); in impl_getURL()
/trunk/main/writerfilter/qa/cppunittests/qname/
H A DtestQName.cxx7340 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("http://sample.org/test1"), "_p0")==0); in test_serializer2()
7341 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("http://sample.org/test2"), "_p1")==0); in test_serializer2()
7349 CPPUNIT_ASSERT(context->getPrefix("")==QName::EMPTY_STRING); in test_prefix()
7360 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("http://www.w3.org/1999/xlink"), "xlink")==0); in test_prefix()
7363 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("http://www.w3.org/2002/xforms"), "xforms")==0); in test_prefix()
7368 …CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("urn:schemas-microsoft-com:rowset"), "rs11")==0); in test_prefix()
7385 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("#RowsetSchema"), "RowsetSchema")==0); in test_prefix()
7392 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("urn:rtf:1.7"), "rtf")==0); in test_prefix()
7395 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("urn:rtf:schema"), "rtfs")==0); in test_prefix()
7411 CPPUNIT_ASSERT(rtl_str_compare(context->getPrefix("urn:schemas-microsoft-com:vml"), "vml")==0); in test_prefix()
[all …]
/trunk/main/unoxml/source/dom/
H A Ddocumentfragment.hxx123 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CDocumentFragment
126 return CNode::getPrefix(); in getPrefix()
H A Dentityreference.hxx125 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CEntityReference
128 return CNode::getPrefix(); in getPrefix()
H A Dnotation.hxx133 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CNotation
136 return CNode::getPrefix(); in getPrefix()
H A Dprocessinginstruction.hxx144 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CProcessingInstruction
147 return CNode::getPrefix(); in getPrefix()
H A Ddocumenttype.hxx161 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CDocumentType
164 return CNode::getPrefix(); in getPrefix()
H A Dentity.hxx144 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CEntity
147 return CNode::getPrefix(); in getPrefix()
H A Dcharacterdata.hxx180 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CCharacterData
183 return CNode::getPrefix(); in getPrefix()
H A Dcdatasection.hxx169 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CCDATASection
172 return CNode::getPrefix(); in getPrefix()
H A Dcomment.hxx164 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CComment
167 return CCharacterData::getPrefix(); in getPrefix()
H A Dtext.hxx183 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CText
186 return CCharacterData::getPrefix(); in getPrefix()
H A Dattr.cxx234 OUString SAL_CALL CAttr::getPrefix() in getPrefix() function in DOM::CAttr
247 return CNode::getPrefix(); in getPrefix()
H A Delement.hxx239 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CElement
242 return CNode::getPrefix(); in getPrefix()
H A Dnode.hxx84 const OString& getPrefix() const { return maPrefix; } in getPrefix() function
250 virtual OUString SAL_CALL getPrefix()
H A Ddocument.hxx321 virtual OUString SAL_CALL getPrefix() in getPrefix() function in DOM::CDocument
324 return CNode::getPrefix(); in getPrefix()
H A Delement.cxx81 OUString prefix = pNode->getPrefix(); in saxify()
88 OUString prefix = getPrefix(); in saxify()
509 ::rtl::OUStringBuffer qname(oldAttr->getPrefix()); in removeAttributeNode()
/trunk/main/dbaccess/source/core/misc/
H A Ddsntypes.cxx122 String ODsnTypeCollection::getPrefix(const ::rtl::OUString& _sURL) const in getPrefix() function in dbaccess::ODsnTypeCollection
149 String sPrefix( getPrefix( ::rtl::OUString::createFromAscii( _pAsciiPattern ) ) ); in hasDriver()
/trunk/main/ooxml/source/framework/SchemaParser/src/org/apache/openoffice/ooxml/schema/model/base/
H A DQualifiedName.java36 msNamespacePrefix = aName.getPrefix(); in QualifiedName()
/trunk/main/dbaccess/source/ui/control/
H A Dcurledit.cxx108 sPrefix = m_pTypeCollection->getPrefix(_rStr); in SetText()

Completed in 144 milliseconds

12