/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/ |
D | BridgeXmlBlockParserTest.java | 56 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser() 62 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser() 68 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser() 72 assertEquals(XmlPullParser.END_TAG, parser.next()); in testXmlBlockParser()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | XmlUtils.java | 46 && (type != XmlPullParser.END_TAG in skipCurrentTag() 571 } else if (eventType == parser.END_TAG) { in readThisMapXml() 610 } else if (eventType == parser.END_TAG) { in readThisListXml() 651 } else if (eventType == parser.END_TAG) { in readThisSetXml() 715 } else if (eventType == parser.END_TAG) { in readThisIntArrayXml() 756 } else if (eventType == parser.END_TAG) { in readValueXml() 786 if (eventType == parser.END_TAG) { in readThisValueXml() 845 if (eventType == parser.END_TAG) { in readThisValueXml() 897 || (type == XmlPullParser.END_TAG && parser.getDepth() == outerDepth)) { in nextElementWithin()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeXmlBlockParser.java | 308 if (ev == END_TAG && mParser.getDepth() == 1) { in next() 329 case END_TAG: in eventTypeToString() 371 if (eventType != END_TAG) { in nextText() 378 } else if (eventType == END_TAG) { in nextText() 393 if (eventType != START_TAG && eventType != END_TAG) { in nextTag()
|
/frameworks/base/core/java/android/app/ |
D | AliasActivity.java | 107 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in parseAlias() 108 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parseAlias()
|
/frameworks/base/core/java/android/app/admin/ |
D | DeviceAdminInfo.java | 258 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in DeviceAdminInfo() 259 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in DeviceAdminInfo() 266 && (type != XmlPullParser.END_TAG || parser.getDepth() > innerDepth)) { in DeviceAdminInfo() 267 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in DeviceAdminInfo()
|
/frameworks/base/services/java/com/android/server/pm/ |
D | Settings.java | 797 && (type != XmlPullParser.END_TAG in readPackageRestrictionsLPr() 799 if (type == XmlPullParser.END_TAG in readPackageRestrictionsLPr() 828 && (type != XmlPullParser.END_TAG in readPackageRestrictionsLPr() 830 if (type == XmlPullParser.END_TAG in readPackageRestrictionsLPr() 872 && (type != XmlPullParser.END_TAG in readComponentsLPr() 874 if (type == XmlPullParser.END_TAG in readComponentsLPr() 1059 && (type != XmlPullParser.END_TAG in readStoppedLPw() 1061 if (type == XmlPullParser.END_TAG in readStoppedLPw() 1510 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in readLPw() 1511 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in readLPw() [all …]
|
D | PackageSignatures.java | 94 && (type != XmlPullParser.END_TAG in readXml() 96 if (type == XmlPullParser.END_TAG in readXml()
|
/frameworks/base/core/java/android/view/animation/ |
D | AnimationUtils.java | 103 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) in createAnimationFromXml() 180 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) in createLayoutAnimationFromXml() 297 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) in createInterpolatorFromXml()
|
/frameworks/base/core/java/android/content/res/ |
D | XmlBlock.java | 253 case END_TAG: in next() 283 if(eventType != END_TAG) { in nextText() 289 } else if(eventType == END_TAG) { in nextText() 302 if (eventType != START_TAG && eventType != END_TAG) { in nextTag()
|
D | ColorStateList.java | 188 || type != XmlPullParser.END_TAG)) { in inflate()
|
/frameworks/base/docs/html/training/basics/network-ops/ |
D | xml.jd | 158 while (parser.next() != XmlPullParser.END_TAG) { 242 while (parser.next() != XmlPullParser.END_TAG) { 264 parser.require(XmlPullParser.END_TAG, ns, "title"); 280 parser.require(XmlPullParser.END_TAG, ns, "link"); 288 parser.require(XmlPullParser.END_TAG, ns, "summary"); 316 case XmlPullParser.END_TAG: 335 the matching <code>END_TAG</code>.</li> 337 <li>To make sure that it stops at the correct <code>END_TAG</code> and not at 345 the original <code>START_TAG</code> and its matching <code>END_TAG</code>. For 358 encounters is the <code>END_TAG</code> <code></name></code>. The value [all …]
|
/frameworks/base/services/java/com/android/server/ |
D | PreferredComponent.java | 108 && (type != XmlPullParser.END_TAG in PreferredComponent() 110 if (type == XmlPullParser.END_TAG in PreferredComponent()
|
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
D | ExpatPerformanceTest.java | 115 case XmlPullParser.END_TAG: in withPullParser()
|
/frameworks/base/core/java/android/view/ |
D | LayoutInflater.java | 721 while (((type = parser.next()) != XmlPullParser.END_TAG || in rInflate() 762 while (((type = parser.next()) != XmlPullParser.END_TAG || in parseRequestFocus() 868 while (((type = parser.next()) != XmlPullParser.END_TAG || in parseInclude()
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | LayoutInflater_Delegate.java | 192 while (((type = parser.next()) != XmlPullParser.END_TAG || in parseInclude()
|
/frameworks/base/core/java/android/content/pm/ |
D | PackageParser.java | 857 && (type != XmlPullParser.END_TAG || parser.getDepth() >= searchDepth)) { in parsePackageLite() 858 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parsePackageLite() 963 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in parsePackage() 964 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parsePackage() 1859 && (type != XmlPullParser.END_TAG || parser.getDepth() > innerDepth)) { in parseApplication() 1860 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parseApplication() 2186 && (type != XmlPullParser.END_TAG in parseActivity() 2188 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parseActivity() 2359 && (type != XmlPullParser.END_TAG in parseActivityAlias() 2361 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in parseActivityAlias() [all …]
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
D | SimpleInflater.java | 104 case XmlPullParser.END_TAG: in parseMenu()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | MipmapDrawable.java | 142 || type != XmlPullParser.END_TAG)) { in inflate()
|
D | LevelListDrawable.java | 99 || type != XmlPullParser.END_TAG)) { in inflate()
|
D | AnimationDrawable.java | 258 ((depth = parser.getDepth()) >= innerDepth || type != XmlPullParser.END_TAG)) { in inflate()
|
D | StateListDrawable.java | 143 || type != XmlPullParser.END_TAG)) { in inflate()
|
D | ClipDrawable.java | 93 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in inflate()
|
/frameworks/base/core/java/android/preference/ |
D | PreferenceActivity.java | 769 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) { in loadHeadersFromResource() 770 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in loadHeadersFromResource() 831 && (type != XmlPullParser.END_TAG || parser.getDepth() > innerDepth)) { in loadHeadersFromResource() 832 if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) { in loadHeadersFromResource()
|
/frameworks/base/core/java/android/view/textservice/ |
D | SpellCheckerInfo.java | 104 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth) in SpellCheckerInfo()
|
/frameworks/base/tools/aapt/ |
D | ResourceTable.cpp | 527 } else if (code == ResXMLTree::END_TAG) { in compileAttribute() 839 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 850 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 922 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1032 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1054 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1096 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1127 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1172 if (code == ResXMLTree::END_TAG) { in compileResourceFile() 1182 if (code == ResXMLTree::END_TAG) { in compileResourceFile() [all …]
|