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

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/v8/
npruntime_impl.h 57 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
65 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 90 bool NPJSObject::hasMethod(NPIdentifier methodName)
92 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(methodName);
110 bool NPJSObject::invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
112 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(methodName);
339 bool NPJSObject::NP_HasMethod(NPObject* npObject, NPIdentifier methodName)
341 return toNPJSObject(npObject)->hasMethod(methodName);
344 bool NPJSObject::NP_Invoke(NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
346 return toNPJSObject(npObject)->invoke(methodName, arguments, argumentCount, result);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /external/jpeg/
coderules.doc 61 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
63 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /external/qemu/distrib/jpeg-6b/
coderules.doc 61 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
63 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /external/smali/baksmali/src/main/resources/templates/templates/
baksmali.stg 97 method(AccessFlags, MethodName, Prototype, HasCode, RegistersDirective, RegisterCount, Parameters, Annotations,
100 .method <AccessFlags: {<it> }><MethodName><Prototype>
388 MethodReference(ContainingClass, MethodName, Prototype) ::=
390 <ContainingClass>-><MethodName><Prototype>
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerProxy.h 56 void invokeMethod(const String& methodName);
MediaPlayerProxy.cpp 123 void WebMediaPlayerProxy::invokeMethod(const String& methodName)
136 Identifier iden(exec, methodName);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 303 boolean wasMethodCalled(String methodName) {
304 return calledMethods.contains(methodName);
307 void methodCalled(String methodName) {
308 calledMethods.add(methodName);
  /external/javassist/src/main/javassist/
CtNewMethod.java 218 * @param methodName the name of the getter
221 public static CtMethod getter(String methodName, CtField field)
228 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
259 * @param methodName the name of the setter
262 public static CtMethod setter(String methodName, CtField field)
269 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
331 String methodName = deleInfo.getName();
334 MethodInfo minfo = new MethodInfo(cp, methodName, desc);
349 code.addInvokestatic(deleClass, methodName, desc);
354 code.addInvokespecial(deleClass, methodName, desc)
    [all...]
CtPrimitiveType.java 32 String methodName, String mDesc, int opcode, int atype,
37 getMethodName = methodName;
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 70 * @param methodname
76 public MethodInfo(ConstPool cp, String methodname, String desc) {
79 name = cp.addUtf8Info(methodname);
80 cachedName = methodname;
100 * @param methodname
108 public MethodInfo(ConstPool cp, String methodname, MethodInfo src,
111 read(src, methodname, classnameMap);
499 private void read(MethodInfo src, String methodname, Map classnames)
503 name = destCp.addUtf8Info(methodname);
504 cachedName = methodname;
    [all...]
  /frameworks/base/services/jni/
com_android_server_PowerManagerService.cpp 65 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
67 ALOGE("An exception was thrown by callback '%s'.", methodName);
237 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
238 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
239 LOG_FATAL_IF(! var, "Unable to find method " methodName);
com_android_server_UsbDeviceManager.cpp 43 static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
45 ALOGE("An exception was thrown by callback '%s'.", methodName);
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 76 String methodName,
84 if (current.getName().equals(methodName)) {
96 Method m = lookupMethod(clazz, methodName, argTypes, argDims,
104 private Method lookupMethod(CtClass clazz, String methodName,
118 if (minfo.getName().equals(methodName)) {
144 Method r = lookupMethod(pclazz, methodName, argTypes,
158 Method r = lookupMethod(ifs[i], methodName,
169 Method r = lookupMethod(pclazz, methodName, argTypes,
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.h 83 jobject call(jstring methodName, jobjectArray args) const;
118 jobject KJS_JSObject_JSObjectCall(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring methodName, jobjectArray args, jboolean ctx);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPPSetWindowCalledDuringDestruction.cpp 115 bool NPPSetWindowCalledDuringDestruction::ScriptObject::hasMethod(NPIdentifier methodName)
117 return methodName == pluginTest()->NPN_GetStringIdentifier("setWillBeDestroyed");
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 40 public TestMethod(String methodName, Class<? extends TestCase> enclosingClass) {
43 this.testMethodName = methodName;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
LogCatView.java 105 String methodName = mStackTraceParser.getMethodName(msg);
106 JavaSourceRevealer.revealMethod(methodName, fileName, lineNumber, perspectiveId);
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 228 private float[] getValue(ValueAnimator animator, int n, String methodName,
234 if(methodName.equals("getAnimatedFraction()")) {
236 }else if(methodName.equals("getAnimatedValue()")) {
238 }else if(methodName.equals("getAnimatedValue(property)")) {
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
CtsTestTest.java 162 final String methodName = "methodName";
164 mCtsTest.setMethodName(methodName);
167 mMockPackageDef.setClassName(className, methodName);
  /dalvik/dexlist/
DexList.cpp 100 const char* methodName;
108 methodName = dexStringById(pDexFile, pMethodId->nameIdx);
137 strcmp(gParms.methodToFind, methodName) != 0))
144 className, methodName, desc,
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaNPObjectV8.h 50 bool JavaNPObjectInvoke(NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result);

Completed in 2283 milliseconds

1 23 4 5 6 7 8 91011>>