Home | History | Annotate | Download | only in native

Lines Matching defs:clazz

1233 static jstring ExpatAttributes_getValueForQName(JNIEnv* env, jobject clazz,
1235 jint index = ExpatAttributes_getIndexForQName(env, clazz, attributePointer, qName);
1237 : ExpatAttributes_getValueByIndex(env, clazz, attributePointer, index);
1249 static jstring ExpatAttributes_getValue(JNIEnv* env, jobject clazz,
1251 jint index = ExpatAttributes_getIndex(env, clazz, attributePointer, uri, localName);
1253 : ExpatAttributes_getValueByIndex(env, clazz, attributePointer, index);
1310 * @param clazz Java ExpatParser class
1313 jclass clazz = reinterpret_cast<jclass>(classObject);
1314 startElementMethod = env->GetMethodID(clazz, "startElement",
1318 endElementMethod = env->GetMethodID(clazz, "endElement",
1322 textMethod = env->GetMethodID(clazz, "text", "([CI)V");
1325 commentMethod = env->GetMethodID(clazz, "comment", "([CI)V");
1328 startCdataMethod = env->GetMethodID(clazz, "startCdata", "()V");
1331 endCdataMethod = env->GetMethodID(clazz, "endCdata", "()V");
1334 startDtdMethod = env->GetMethodID(clazz, "startDtd",
1338 endDtdMethod = env->GetMethodID(clazz, "endDtd", "()V");
1341 startNamespaceMethod = env->GetMethodID(clazz, "startNamespace",
1345 endNamespaceMethod = env->GetMethodID(clazz, "endNamespace",
1349 processingInstructionMethod = env->GetMethodID(clazz,
1353 handleExternalEntityMethod = env->GetMethodID(clazz,
1358 notationDeclMethod = env->GetMethodID(clazz, "notationDecl",
1362 unparsedEntityDeclMethod = env->GetMethodID(clazz, "unparsedEntityDecl",