Lines Matching refs:xParent

787     css::uno::Reference< css::xml::dom::XNode > xParent;  in getLocalizedChild()  local
789 xParent = m_xpath->selectSingleNode(m_element, sParent); in getLocalizedChild()
794 if (xParent.is()) in getLocalizedChild()
797 nodeMatch = matchFullLocale(xParent, sLocale); in getLocalizedChild()
803 nodeMatch = matchCountryAndLanguage(xParent, officeLocale); in getLocalizedChild()
806 nodeMatch = matchLanguage(xParent, officeLocale); in getLocalizedChild()
808 nodeMatch = getChildWithDefaultLocale(xParent); in getLocalizedChild()
818 const & xParent, ::rtl::OUString const & sLocale) const in matchFullLocale()
820 OSL_ASSERT(xParent.is()); in matchFullLocale()
826 return m_xpath->selectSingleNode(xParent, exp1); in matchFullLocale()
835 …css::uno::Reference< css::xml::dom::XNode > const & xParent, css::lang::Locale const & officeLocal… in matchCountryAndLanguage()
837 OSL_ASSERT(xParent.is()); in matchCountryAndLanguage()
851 nodeMatch = m_xpath->selectSingleNode(xParent, exp1); in matchCountryAndLanguage()
865 nodeMatch = m_xpath->selectSingleNode(xParent, exp2); in matchCountryAndLanguage()
878 …css::uno::Reference< css::xml::dom::XNode > const & xParent, css::lang::Locale const & officeLocal… in matchLanguage()
880 OSL_ASSERT(xParent.is()); in matchLanguage()
889 nodeMatch = m_xpath->selectSingleNode(xParent, exp1); in matchLanguage()
903 nodeMatch = m_xpath->selectSingleNode(xParent, exp2); in matchLanguage()
913 const & xParent) const in getChildWithDefaultLocale()
915 OSL_ASSERT(xParent.is()); in getChildWithDefaultLocale()
916 … if (xParent->getNodeName().equals(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("simple-license")))) in getChildWithDefaultLocale()
920 nodeDefault = m_xpath->selectSingleNode(xParent, ::rtl::OUString( in getChildWithDefaultLocale()
933 return m_xpath->selectSingleNode(xParent, exp1); in getChildWithDefaultLocale()
942 return m_xpath->selectSingleNode(xParent, exp2); in getChildWithDefaultLocale()