HomeSort by relevance Sort by last modified time
    Searched full:methodname (Results 76 - 100 of 301) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bridge/objc/
objc_class.mm 90 RetainPtr<CFStringRef> methodName(AdoptCF, CFStringCreateWithCString(NULL, buffer, kCFStringEncodingASCII));
91 Method* method = (Method*)CFDictionaryGetValue(_methods.get(), methodName.get());
130 if ((mappedName && [mappedName isEqual:(NSString*)methodName.get()]) || strcmp(objcMethodSelectorName, buffer) == 0) {
132 CFDictionaryAddValue(_methods.get(), methodName.get(), aMethod);
  /frameworks/base/core/jni/
android_view_GLES20DisplayList.cpp 225 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
226 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
227 LOG_FATAL_IF(! var, "Unable to find method " methodName);
230 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor)
android_view_DisplayEventReceiver.cpp 238 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
239 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
240 LOG_FATAL_IF(! var, "Unable to find method " methodName);
android_view_KeyCharacterMap.cpp 228 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
229 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
230 LOG_FATAL_IF(! var, "Unable to find method " methodName);
android_view_InputEventReceiver.cpp 306 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
307 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
308 LOG_FATAL_IF(! var, "Unable to find method " methodName);
android_view_TextureView.cpp 211 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
212 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
213 LOG_FATAL_IF(!var, "Unable to find method " methodName);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 110 String methodName = attributes.getValue("name");
115 } else if (methodName == null) {
129 methodName);
  /dalvik/vm/oo/
Object.h 590 const char* methodName, const char* signature);
592 const char* methodName, const char* signature);
594 const char* methodName);
595 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
597 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
605 const char* methodName, const char* descriptor);
607 const char* methodName, const char* signature);
609 const char* methodName, const DexProto* proto);
611 const char* methodName, const DexProto* proto);
612 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
    [all...]
  /external/easymock/src/org/easymock/internal/
Invocation.java 148 String methodName = method.getName();
150 return mockName + "." + methodName;
152 return methodName;
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 363 public static String fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String methoddescriptor)
365 if ("<init>".equals (methodName))
366 methodName = simpleClassName (classJavaName);
367 if ("<clinit>".equals (methodName))
368 methodName = "<static class initializer>";
370 return methodName + ' ' + methodDescriptorToUserName (methoddescriptor);
374 public static String fullMethodDescriptorToFullUserName (final String classJavaName, String methodName, final String methoddescriptor)
376 if ("<init>".equals (methodName))
377 methodName = simpleClassName (classJavaName);
378 if ("<clinit>".equals (methodName))
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 130 String methodName= each.getMethodName();
131 if (methodName == null)
133 return Request.method(type, methodName).getRunner();
  /external/junit/src/org/junit/runner/
Request.java 31 * @param methodName the name of the test
34 public static Request method(Class<?> clazz, String methodName) {
35 Description method= Description.createTestDescription(clazz, methodName);
  /external/proguard/src/proguard/obfuscate/
MappingKeeper.java 142 String methodName,
152 Method method = clazz.findMethod(methodName, descriptor);
166 ": method '" + methodReturnType + " " + methodName + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN + methodArguments + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE +
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
DelegateClassAdapter.java 110 // Given a non-native SomeClass.MethodName(), we want to generate 2 methods:
113 // - A brand new implementation of SomeClass.MethodName() which calls to a
114 // non-existing method named SomeClass_Delegate.MethodName().
DelegateMethodAdapter2.java 35 * Given a method {@code SomeClass.MethodName()}, this generates 1 or 2 methods:
40 * <li> A brand new implementation of {@code SomeClass.MethodName()} which calls to a
41 * non-existing method named {@code SomeClass_Delegate.MethodName()}.
112 * @param methodName The simple name of the method.
121 String methodName,
129 mMethodName = methodName;
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 82 JSValue JSNPObject::callMethod(ExecState* exec, NPIdentifier methodName)
105 returnValue = m_npObject->_class->invoke(m_npObject, methodName, arguments.data(), argumentCount, &result);
399 JSValue JSNPObject::methodGetter(ExecState* exec, JSValue slotBase, const Identifier& methodName)
406 NPIdentifier npIdentifier = npIdentifierFromIdentifier(methodName);
407 return new (exec) JSNPMethod(exec, thisObj->globalObject(), methodName, npIdentifier);
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 209 bool _NPN_Invoke(NPP npp, NPObject* o, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
214 IdentifierRep* i = static_cast<IdentifierRep*>(methodName);
219 if (methodName == _NPN_GetStringIdentifier("eval")) {
254 return o->_class->invoke(o, methodName, args, argCount, result);
425 bool _NPN_HasMethod(NPP, NPObject* o, NPIdentifier methodName)
430 IdentifierRep* i = static_cast<IdentifierRep*>(methodName);
446 return o->_class->hasMethod(o, methodName);
  /external/javassist/src/main/javassist/
CtField.java 651 * @param methodName the name of the satic method.
654 String methodName) {
657 i.methodName = methodName;
683 * @param methodName the name of the satic method.
688 String methodName,
692 i.methodName = methodName;
719 * @param methodName the name of the satic method.
722 String methodName) {
    [all...]
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 69 char *methodName;
228 records[nextRecord].methodName = NULL;
241 records[nextRecord].methodName = strndup(save_cp, len);
401 if (pRecord->className == NULL || pRecord->methodName == NULL) {
407 pRecord->methodName);
411 pRecord->methodName, pRecord->signature);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
pac_library_unittest.js 328 function createProxyMethod(methodName) {
330 return this.wrappedDate_[methodName]
336 var methodName = MockDate.methodNames_[i];
338 // crazy scoping rules mean |methodName| actually bleeds out of the loop!
339 MockDate.prototype[methodName] = createProxyMethod(methodName);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
JythonUtils.java 97 String methodName = element.getMethodName();
111 m = clz.getMethod(methodName, PyObject[].class, String[].class);
121 return new ArgParser(methodName, args, kws,
300 String methodName = m.getName();
301 PyObject pyFunc = dict.__finditem__(methodName);
307 functions.remove(methodName);
  /external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.cpp 302 NPIdentifier methodName = WebBindings::getStringIdentifier(method.c_str());
304 if (!WebBindings::hasMethod(0, npObject, methodName))
307 bool status = WebBindings::invoke(0, npObject, methodName, arguments, argumentCount, &r);
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 57 String methodName = methods[i];
60 String className = methodName.substring(0, methodName.indexOf('#'));
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 102 public String methodName()
  /external/v8/test/cctest/
test-func-name-inference.cc 339 " var methodName = \"method1\";\n"
340 " obj[methodName] = function() { return 1; }\n"
341 " methodName = \"method2\";\n"
342 " obj[methodName] = function() { return 2; }\n"

Completed in 3246 milliseconds

1 2 34 5 6 7 8 91011>>