Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/org/apache/harmony/xml/
DExpatAttributes.java147 private static native String getURI(long pointer, long attributePointer, int index); in getURI() argument
148 private static native String getLocalName(long pointer, long attributePointer, int index); in getLocalName() argument
149 private static native String getQName(long pointer, long attributePointer, int index); in getQName() argument
150 private static native String getValueByIndex(long attributePointer, int index); in getValueByIndex() argument
151 private static native int getIndex(long attributePointer, String uri, String localName); in getIndex() argument
152 private static native int getIndexForQName(long attributePointer, String qName); in getIndexForQName() argument
153 private static native String getValue(long attributePointer, String uri, String localName); in getValue() argument
154 private static native String getValueForQName(long attributePointer, String qName); in getValueForQName() argument
DExpatParser.java59 private long attributePointer = 0; field in ExpatParser
143 long attributePointer, int attributeCount) throws SAXException { in startElement() argument
151 this.attributePointer = attributePointer; in startElement()
159 this.attributePointer = 0; in startElement()
626 = cloneAttributes(this.attributePointer, this.attributeCount); in cloneAttributes()
728 return attributePointer; in getPointer()
794 long attributePointer, int attributeCount) throws SAXException { in startElement() argument
800 super.startElement(uri, localName, qName, attributePointer, in startElement()
/libcore/luni/src/main/native/
Dorg_apache_harmony_xml_ExpatParser.cpp488 static const char** toAttributes(jlong attributePointer) { in toAttributes() argument
489 return reinterpret_cast<const char**>(static_cast<uintptr_t>(attributePointer)); in toAttributes()
497 …ExpatElementName(JNIEnv* env, ParsingContext* parsingContext, jlong attributePointer, jint index) { in ExpatElementName() argument
498 const char** attributes = toAttributes(attributePointer); in ExpatElementName()
1116 jlong attributePointer, jint index) { in ExpatAttributes_getURI() argument
1118 return ExpatElementName(env, context, attributePointer, index).uri(); in ExpatAttributes_getURI()
1129 jlong attributePointer, jint index) { in ExpatAttributes_getLocalName() argument
1131 return ExpatElementName(env, context, attributePointer, index).localName(); in ExpatAttributes_getLocalName()
1142 jlong attributePointer, jint index) { in ExpatAttributes_getQName() argument
1144 return ExpatElementName(env, context, attributePointer, index).qName(); in ExpatAttributes_getQName()
[all …]