Searched defs:aMethod (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/bridge/c/
H A Dc_class.cpp90 Method* aMethod = new CMethod(ident); // deleted in the CClass destructor local
93 _methods.set(identifier.ustring().impl(), aMethod);
95 methodList.append(aMethod);
/external/webkit/Source/WebCore/bridge/jni/
H A DJavaMethodJobject.cpp43 JavaMethodJobject::JavaMethodJobject(JNIEnv* env, jobject aMethod) argument
47 if (jobject returnType = callJNIMethod<jobject>(aMethod, "getReturnType", "()Ljava/lang/Class;")) {
58 jstring methodName = static_cast<jstring>(callJNIMethod<jobject>(aMethod, "getName", "()Ljava/lang/String;"));
65 if (jarray jparameters = static_cast<jarray>(callJNIMethod<jobject>(aMethod, "getParameterTypes", "()[Ljava/lang/Class;"))) {
84 int modifiers = callJNIMethod<jint>(aMethod, "getModifiers", "()I");
/external/webkit/Source/WebCore/bridge/jni/jsc/
H A DJavaClassJSC.cpp79 JavaMethod* aMethod = new JavaMethodJobject(env, aJMethod); // deleted in the JavaClass destructor local
84 methodList = m_methods.get(aMethod->name().impl());
87 m_methods.set(aMethod->name().impl(), methodList);
90 methodList->append(aMethod);
H A DJavaInstanceJSC.cpp162 Method* aMethod = methodList[methodIndex]; local
163 if (aMethod->numParameters() == count) {
164 method = aMethod;
/external/webkit/Source/WebCore/bridge/jni/v8/
H A DJavaNPObjectV8.cpp131 JavaMethod* aMethod; local
134 aMethod = methodList[methodIndex];
135 if (aMethod->numParameters() == static_cast<int>(argCount)) {
136 jMethod = aMethod;
H A DJavaClassJobjectV8.cpp83 JavaMethod* aMethod = new JavaMethodJobject(env, aJMethod); // deleted in the JavaClass destructor local
84 MethodList* methodList = m_methods.get(aMethod->name());
87 m_methods.set(aMethod->name(), methodList);
89 methodList->append(aMethod);

Completed in 74 milliseconds