Home | History | Annotate | Download | only in jni

Lines Matching refs:jint

36                                                jint off, jint len)
94 static jint android_content_XmlBlock_nativeNext(JNIEnv* env, jobject clazz,
128 static jint android_content_XmlBlock_nativeGetNamespace(JNIEnv* env, jobject clazz,
136 return static_cast<jint>(st->getElementNamespaceID());
139 static jint android_content_XmlBlock_nativeGetName(JNIEnv* env, jobject clazz,
147 return static_cast<jint>(st->getElementNameID());
150 static jint android_content_XmlBlock_nativeGetText(JNIEnv* env, jobject clazz,
158 return static_cast<jint>(st->getTextID());
161 static jint android_content_XmlBlock_nativeGetLineNumber(JNIEnv* env, jobject clazz,
170 return static_cast<jint>(st->getLineNumber());
173 static jint android_content_XmlBlock_nativeGetAttributeCount(JNIEnv* env, jobject clazz,
182 return static_cast<jint>(st->getAttributeCount());
185 static jint android_content_XmlBlock_nativeGetAttributeNamespace(JNIEnv* env, jobject clazz,
186 jlong token, jint idx)
194 return static_cast<jint>(st->getAttributeNamespaceID(idx));
197 static jint android_content_XmlBlock_nativeGetAttributeName(JNIEnv* env, jobject clazz,
198 jlong token, jint idx)
206 return static_cast<jint>(st->getAttributeNameID(idx));
209 static jint android_content_XmlBlock_nativeGetAttributeResource(JNIEnv* env, jobject clazz,
210 jlong token, jint idx)
218 return static_cast<jint>(st->getAttributeNameResID(idx));
221 static jint android_content_XmlBlock_nativeGetAttributeDataType(JNIEnv* env, jobject clazz,
222 jlong token, jint idx)
230 return static_cast<jint>(st->getAttributeDataType(idx));
233 static jint android_content_XmlBlock_nativeGetAttributeData(JNIEnv* env, jobject clazz,
234 jlong token, jint idx)
242 return static_cast<jint>(st->getAttributeData(idx));
245 static jint android_content_XmlBlock_nativeGetAttributeStringValue(JNIEnv* env, jobject clazz,
246 jlong token, jint idx)
254 return static_cast<jint>(st->getAttributeValueStringID(idx));
257 static jint android_content_XmlBlock_nativeGetAttributeIndex(JNIEnv* env, jobject clazz,
277 jint idx = static_cast<jint>(st->indexOfAttribute(ns16, nsLen, name16, nameLen));
287 static jint android_content_XmlBlock_nativeGetIdAttribute(JNIEnv* env, jobject clazz,
297 return idx >= 0 ? static_cast<jint>(st->getAttributeValueStringID(idx)) : -1;
300 static jint android_content_XmlBlock_nativeGetClassAttribute(JNIEnv* env, jobject clazz,
310 return idx >= 0 ? static_cast<jint>(st->getAttributeValueStringID(idx)) : -1;
313 static jint android_content_XmlBlock_nativeGetStyleAttribute(JNIEnv* env, jobject clazz,