OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:attributePointer
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java
141
private static native String getURI(int pointer, int
attributePointer
, int index);
142
private static native String getLocalName(int pointer, int
attributePointer
, int index);
143
private static native String getQName(int pointer, int
attributePointer
, int index);
144
private static native String getValueByIndex(int
attributePointer
, int index);
145
private static native int getIndex(int
attributePointer
, String uri, String localName);
146
private static native int getIndexForQName(int
attributePointer
, String qName);
147
private static native String getValue(int
attributePointer
, String uri, String localName);
148
private static native String getValueForQName(int
attributePointer
, String qName);
ExpatParser.java
51
private int
attributePointer
= 0;
127
* @param
attributePointer
pointer to native attribute char*--we keep
132
int
attributePointer
, int attributeCount) throws SAXException {
140
this.
attributePointer
=
attributePointer
;
148
this.
attributePointer
= 0;
611
= cloneAttributes(this.
attributePointer
, this.attributeCount);
710
return
attributePointer
;
775
int
attributePointer
, int attributeCount) throws SAXException {
781
super.startElement(uri, localName, qName,
attributePointer
,
[
all
...]
/libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp
460
static const char** toAttributes(jint
attributePointer
) {
461
return reinterpret_cast<const char**>(static_cast<uintptr_t>(
attributePointer
));
469
ExpatElementName(JNIEnv* env, ParsingContext* parsingContext, jint
attributePointer
, jint index) {
470
const char** attributes = toAttributes(
attributePointer
);
[
all
...]
Completed in 283 milliseconds