HomeSort by relevance Sort by last modified time
    Searched refs:methodname (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/pdfium/core/include/thirdparties/libjpeg/
jmorecfg.h 213 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
215 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /external/pdfium/core/src/fxcodec/libjpeg/
jmorecfg.h 213 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
215 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /external/javassist/src/main/javassist/expr/
MethodCall.java 184 String classname, methodname, signature; local
190 methodname = constPool.getInterfaceMethodrefName(index);
197 methodname = constPool.getMethodrefName(index);
214 jc.recordStaticProceed(classname, methodname);
217 methodname, signature);
219 jc.recordProceed(Javac.param0Name, methodname);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userstring.py 22 def checkequal(self, result, object, methodname, *args):
26 realresult = getattr(object, methodname)(*args)
32 def checkraises(self, exc, object, methodname, *args):
37 getattr(object, methodname),
41 def checkcall(self, object, methodname, *args):
44 getattr(object, methodname)(*args)
test_string.py 12 def checkequal(self, result, object, methodname, *args):
13 realresult = getattr(string, methodname)(object, *args)
19 def checkraises(self, exc, object, methodname, *args):
22 getattr(string, methodname),
27 def checkcall(self, object, methodname, *args):
28 getattr(string, methodname)(object, *args)
test_profile.py 27 for methodname in cls.methodnames:
31 getattr(stats, methodname)()
test_file.py 121 for methodname, args in methods:
122 method = getattr(self.f, methodname)
256 for methodname, args in methods:
260 meth = getattr(f, methodname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userstring.py 22 def checkequal(self, result, object, methodname, *args):
26 realresult = getattr(object, methodname)(*args)
32 def checkraises(self, exc, object, methodname, *args):
37 getattr(object, methodname),
41 def checkcall(self, object, methodname, *args):
44 getattr(object, methodname)(*args)
test_string.py 12 def checkequal(self, result, object, methodname, *args):
13 realresult = getattr(string, methodname)(object, *args)
19 def checkraises(self, exc, object, methodname, *args):
22 getattr(string, methodname),
27 def checkcall(self, object, methodname, *args):
28 getattr(string, methodname)(object, *args)
test_profile.py 27 for methodname in cls.methodnames:
31 getattr(stats, methodname)()
test_file.py 121 for methodname, args in methods:
122 method = getattr(self.f, methodname)
256 for methodname, args in methods:
260 meth = getattr(f, methodname)
  /external/javassist/src/main/javassist/convert/
TransformCall.java 26 protected String classname, methodname, methodDescriptor; field in class:TransformCall
45 methodname = oldMethodName;
72 String cname = cp.eqMember(methodname, methodDescriptor, index);
92 CtMethod m = clazz.getMethod(methodname, methodDescriptor);
  /external/jpeg/
jmorecfg.h 227 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
229 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /external/qemu/distrib/jpeg-6b/
jmorecfg.h 224 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
226 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 169 how, (oid, methodname, args, kwargs) = request
175 if methodname == "__methods__":
179 if methodname == "__attributes__":
183 if not hasattr(obj, methodname):
184 return ("ERROR", "Unsupported method name: %r" % (methodname,))
185 method = getattr(obj, methodname)
208 def remotecall(self, oid, methodname, args, kwargs):
209 self.debug("remotecall:asynccall: ", oid, methodname)
210 seq = self.asynccall(oid, methodname, args, kwargs)
213 def remotequeue(self, oid, methodname, args, kwargs)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 169 how, (oid, methodname, args, kwargs) = request
175 if methodname == "__methods__":
179 if methodname == "__attributes__":
183 if not hasattr(obj, methodname):
184 return ("ERROR", "Unsupported method name: %r" % (methodname,))
185 method = getattr(obj, methodname)
208 def remotecall(self, oid, methodname, args, kwargs):
209 self.debug("remotecall:asynccall: ", oid, methodname)
210 seq = self.asynccall(oid, methodname, args, kwargs)
213 def remotequeue(self, oid, methodname, args, kwargs)
    [all...]
  /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...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
dclassgen.swg 36 %typemap(ddispose, methodname="dispose", methodmodifiers="public") SWIGTYPE {
48 %typemap(ddispose_derived, methodname="dispose", methodmodifiers="public") SWIGTYPE {
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ceval.h 20 const char *methodname,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ceval.h 20 const char *methodname,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 97 def dispatch(c, id, methodname, args=(), kwds={}):
101 c.send((id, methodname, args, kwds))
239 methodname = obj = None
241 ident, methodname, args, kwds = request
244 if methodname not in exposed:
247 (methodname, type(obj), exposed)
250 function = getattr(obj, methodname)
257 typeid = gettypeid and gettypeid.get(methodname, None)
266 if methodname is None:
270 fallback_func = self.fallback_mapping[methodname]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 97 def dispatch(c, id, methodname, args=(), kwds={}):
101 c.send((id, methodname, args, kwds))
239 methodname = obj = None
241 ident, methodname, args, kwds = request
244 if methodname not in exposed:
247 (methodname, type(obj), exposed)
250 function = getattr(obj, methodname)
257 typeid = gettypeid and gettypeid.get(methodname, None)
266 if methodname is None:
270 fallback_func = self.fallback_mapping[methodname]
    [all...]
  /frameworks/base/core/jni/android/graphics/
CreateJavaOutputStreamAdaptor.cpp 261 const char methodname[], const char type[]) {
262 jmethodID id = env->GetMethodID(clazz, methodname, type);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
loader.py 50 def _make_failed_test(classname, methodname, exception, suiteClass):
53 attrs = {methodname: testFailure}
55 return suiteClass((TestClass(methodname),))
  /external/lldb/test/unittest2/
loader.py 50 def _make_failed_test(classname, methodname, exception, suiteClass):
53 attrs = {methodname: testFailure}
55 return suiteClass((TestClass(methodname),))

Completed in 566 milliseconds

1 2 3