Lines Matching refs:nodeMatch
793 css::uno::Reference<css::xml::dom::XNode> nodeMatch; in getLocalizedChild() local
797 nodeMatch = matchFullLocale(xParent, sLocale); in getLocalizedChild()
800 if (! nodeMatch.is()) in getLocalizedChild()
803 nodeMatch = matchCountryAndLanguage(xParent, officeLocale); in getLocalizedChild()
804 if ( ! nodeMatch.is()) in getLocalizedChild()
806 nodeMatch = matchLanguage(xParent, officeLocale); in getLocalizedChild()
807 if (! nodeMatch.is()) in getLocalizedChild()
808 nodeMatch = getChildWithDefaultLocale(xParent); in getLocalizedChild()
813 return nodeMatch; in getLocalizedChild()
838 css::uno::Reference<css::xml::dom::XNode> nodeMatch; in matchCountryAndLanguage() local
851 nodeMatch = m_xpath->selectSingleNode(xParent, exp1); in matchCountryAndLanguage()
858 if (!nodeMatch.is()) in matchCountryAndLanguage()
865 nodeMatch = m_xpath->selectSingleNode(xParent, exp2); in matchCountryAndLanguage()
872 return nodeMatch; in matchCountryAndLanguage()
881 css::uno::Reference<css::xml::dom::XNode> nodeMatch; in matchLanguage() local
889 nodeMatch = m_xpath->selectSingleNode(xParent, exp1); in matchLanguage()
896 if (!nodeMatch.is()) in matchLanguage()
903 nodeMatch = m_xpath->selectSingleNode(xParent, exp2); in matchLanguage()
908 return nodeMatch; in matchLanguage()