Searched defs:attributePointer (Results 1 – 3 of 3) sorted by relevance
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
D | ExpatAttributes.java | 147 private static native String getURI(long pointer, long attributePointer, int index); in getURI() 148 private static native String getLocalName(long pointer, long attributePointer, int index); in getLocalName() 149 private static native String getQName(long pointer, long attributePointer, int index); in getQName() 150 private static native String getValueByIndex(long attributePointer, int index); in getValueByIndex() 151 private static native int getIndex(long attributePointer, String uri, String localName); in getIndex() 152 private static native int getIndexForQName(long attributePointer, String qName); in getIndexForQName() 153 private static native String getValue(long attributePointer, String uri, String localName); in getValue() 154 private static native String getValueForQName(long attributePointer, String qName); in getValueForQName()
|
D | ExpatParser.java | 59 private long attributePointer = 0; field in ExpatParser 143 long attributePointer, int attributeCount) throws SAXException { in startElement() 794 long attributePointer, int attributeCount) throws SAXException { in startElement()
|
/libcore/luni/src/main/native/ |
D | org_apache_harmony_xml_ExpatParser.cpp | 488 static const char** toAttributes(jlong attributePointer) { in toAttributes() 497 …ExpatElementName(JNIEnv* env, ParsingContext* parsingContext, jlong attributePointer, jint index) { in ExpatElementName() 1116 jlong attributePointer, jint index) { in ExpatAttributes_getURI() 1129 jlong attributePointer, jint index) { in ExpatAttributes_getLocalName() 1142 jlong attributePointer, jint index) { in ExpatAttributes_getQName() 1156 jlong attributePointer, jint index) { in ExpatAttributes_getValueByIndex() 1171 jlong attributePointer, jstring qName) { in ExpatAttributes_getIndexForQName() 1198 static jint ExpatAttributes_getIndex(JNIEnv* env, jobject, jlong attributePointer, in ExpatAttributes_getIndex() 1230 jlong attributePointer, jstring qName) { in ExpatAttributes_getValueForQName() 1246 jlong attributePointer, jstring uri, jstring localName) { in ExpatAttributes_getValue()
|