Searched refs:aMethod (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/Index/
H A Dannotate-attribute.cpp5 __attribute__((annotate("spiffy_method"))) void aMethod();
21 // CHECK-NEXT: CXXMethod=aMethod:5:51 Extent=[5:3 - 5:60]
/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/
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/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/v8/
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);
H A DJavaNPObjectV8.cpp131 JavaMethod* aMethod; local
134 aMethod = methodList[methodIndex];
135 if (aMethod->numParameters() == static_cast<int>(argCount)) {
136 jMethod = aMethod;
/external/webkit/Source/WebCore/bridge/objc/
H A Dobjc_class.mm131 Method* aMethod = new ObjcMethod(thisClass, objcMethodSelector); // deleted when the dictionary is destroyed
132 CFDictionaryAddValue(_methods.get(), methodName.get(), aMethod);
133 methodList.append(aMethod);

Completed in 165 milliseconds