Searched defs:outerDepth (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java53 int outerDepth = parser.getDepth();
57 || parser.getDepth() > outerDepth)) {
1580 public static boolean nextElementWithin(XmlPullParser parser, int outerDepth) argument
1585 || (type == XmlPullParser.END_TAG && parser.getDepth() == outerDepth)) {
1589 && parser.getDepth() == outerDepth + 1) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DXmlUtil.java111 * The provided outerDepth is used to find sub sections within that depth.
118 * @param outerDepth Find section within this depth.
123 XmlPullParser in, String[] headerName, int outerDepth)
125 if (XmlUtils.nextElementWithin(in, outerDepth)) {
135 * The provided outerDepth is used to find sub sections within that depth.
141 * @param outerDepth Find section within this depth.
147 XmlPullParser in, String expectedName, int outerDepth)
150 if (gotoNextSectionOrEnd(in, headerName, outerDepth)) {
163 * The provided outerDepth is used to find sub sections within that depth.
169 * @param outerDepth Fin
122 gotoNextSectionOrEnd( XmlPullParser in, String[] headerName, int outerDepth) argument
146 gotoNextSectionWithNameOrEnd( XmlPullParser in, String expectedName, int outerDepth) argument
173 gotoNextSectionWithName( XmlPullParser in, String expectedName, int outerDepth) argument
[all...]

Completed in 155 milliseconds