Home | History | Annotate | Download | only in content

Lines Matching refs:atts

99     private void parseRow(Attributes atts) throws SAXException {
100 String uriStr = atts.getValue(URI_STR);
107 atts.getValue(URI_STR) + " parsing failure");
112 String postfix = atts.getValue(POSTFIX);
134 Attributes atts) throws SAXException {
149 parseRow(atts);
152 int attrLen = atts.getLength();
157 parseRow(atts);
161 int attrLen = atts.getLength();
165 String key = atts.getValue(0);
166 String value = atts.getValue(1);
176 Uri u = Uri.parse(atts.getValue(URI_STR));
179 atts.getValue(URI_STR) + " parsing failure");
181 int attrLen = atts.getLength() - 2;
185 selectionArgs[i] = atts.getValue(i+2);
187 mContentResolver.delete(u, atts.getValue(1), selectionArgs);
189 mContentResolver.delete(u, atts.getValue(1), null);