Home
last modified time | relevance | path

Searched defs:attributePointer (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/xml/
DExpatAttributes.java141 private static native String getURI(long pointer, long attributePointer, int index); in getURI()
142 private static native String getLocalName(long pointer, long attributePointer, int index); in getLocalName()
143 private static native String getQName(long pointer, long attributePointer, int index); in getQName()
144 private static native String getValueByIndex(long attributePointer, int index); in getValueByIndex()
145 private static native int getIndex(long attributePointer, String uri, String localName); in getIndex()
146 private static native int getIndexForQName(long attributePointer, String qName); in getIndexForQName()
147 private static native String getValue(long attributePointer, String uri, String localName); in getValue()
148 private static native String getValueForQName(long attributePointer, String qName); in getValueForQName()
DExpatParser.java51 private long attributePointer = 0; field in ExpatParser
132 long attributePointer, int attributeCount) throws SAXException { in startElement()
775 long attributePointer, int attributeCount) throws SAXException { in startElement()
/libcore/luni/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp472 static const char** toAttributes(jlong attributePointer) { in toAttributes()
481 …ExpatElementName(JNIEnv* env, ParsingContext* parsingContext, jlong attributePointer, jint index) { in ExpatElementName()
1101 jlong attributePointer, jint index) { in ExpatAttributes_getURI()
1114 jlong attributePointer, jint index) { in ExpatAttributes_getLocalName()
1127 jlong attributePointer, jint index) { in ExpatAttributes_getQName()
1141 jlong attributePointer, jint index) { in ExpatAttributes_getValueByIndex()
1156 jlong attributePointer, jstring qName) { in ExpatAttributes_getIndexForQName()
1183 static jint ExpatAttributes_getIndex(JNIEnv* env, jobject, jlong attributePointer, in ExpatAttributes_getIndex()
1215 jlong attributePointer, jstring qName) { in ExpatAttributes_getValueForQName()
1231 jlong attributePointer, jstring uri, jstring localName) { in ExpatAttributes_getValue()