Home
last modified time | relevance | path

Searched refs:XmlParserUtils (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/search/
DXmlParserUtilTest.java29 import com.android.settings.search2.XmlParserUtils;
62 String title = XmlParserUtils.getDataTitle(mContext, attrs); in testDataTitleValid_ReturnsPreferenceTitle()
71 String keywords = XmlParserUtils.getDataKeywords(mContext, attrs); in testDataKeywordsValid_ReturnsPreferenceKeywords()
81 String key = XmlParserUtils.getDataKey(mContext, attrs); in testDataKeyValid_ReturnsPreferenceKey()
91 String summary = XmlParserUtils.getDataSummary(mContext, attrs); in testDataSummaryValid_ReturnsPreferenceSummary()
101 String summary = XmlParserUtils.getDataSummaryOn(mContext, attrs); in testDataSummaryOnValid_ReturnsPreferenceSummaryOn()
110 String summary = XmlParserUtils.getDataSummaryOff(mContext, attrs); in testDataSummaryOffValid_ReturnsPreferenceSummaryOff()
119 String entries = XmlParserUtils.getDataEntries(mContext, attrs); in testDataEntriesValid_ReturnsPreferenceEntries()
133 String key = XmlParserUtils.getDataKey(mContext, attrs); in testDataKeyInvalid_ReturnsNull()
141 String summary = XmlParserUtils.getDataSummary(mContext, attrs); in testDataSummaryInvalid_ReturnsNull()
[all …]
/packages/apps/Settings/src/com/android/settings/search2/
DDatabaseIndexingManager.java721 final String screenTitle = XmlParserUtils.getDataTitle(context, attrs); in indexFromResource()
722 String key = XmlParserUtils.getDataKey(context, attrs); in indexFromResource()
751 headerTitle = XmlParserUtils.getDataTitle(context, attrs); in indexFromResource()
752 headerSummary = XmlParserUtils.getDataSummary(context, attrs); in indexFromResource()
753 headerKeywords = XmlParserUtils.getDataKeywords(context, attrs); in indexFromResource()
782 title = XmlParserUtils.getDataTitle(context, attrs); in indexFromResource()
783 key = XmlParserUtils.getDataKey(context, attrs); in indexFromResource()
785 keywords = XmlParserUtils.getDataKeywords(context, attrs); in indexFromResource()
786 iconResId = XmlParserUtils.getDataIcon(context, attrs); in indexFromResource()
806 summary = XmlParserUtils.getDataSummary(context, attrs); in indexFromResource()
[all …]
DXmlParserUtils.java30 public class XmlParserUtils { class
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/
DXmlTestUtils.java10 import com.android.settings.search2.XmlParserUtils;
38 key = XmlParserUtils.getDataKey(context, attrs); in getKeysFromPreferenceXml()
/packages/apps/Settings/src/com/android/settings/search/
DBaseSearchIndexProvider.java29 import com.android.settings.search2.XmlParserUtils;
104 final String key = XmlParserUtils.getDataKey(context, attrs); in getNonIndexableKeysFromXml()