HomeSort by relevance Sort by last modified time
    Searched defs:attrLen (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 152 int attrLen = atts.getLength();
153 if (attrLen == 0) {
161 int attrLen = atts.getLength();
162 if (attrLen != 2) {
163 throw new SAXException("illegal attributes number " + attrLen);
181 int attrLen = atts.getLength() - 2;
182 if (attrLen > 0) {
183 String[] selectionArgs = new String[attrLen];
184 for (int i = 0; i < attrLen; i++) {
188 } else if (attrLen == 0)
    [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java 224 int attrLen = Integer.parseInt(attrStr.substring(ptr, lenPos));
228 String attrValue = attrStr.substring(ptr, ptr + attrLen);
229 ptr += attrLen;

Completed in 35 milliseconds