/tools/test/connectivity/acts/framework/acts/ |
jsonrpc.py | 47 def call(self, path, methodname=None, *args): 55 methodname: Method name of the RPC call. 62 return self._call(path, methodname, *args) 66 return self._call(path, methodname, *args) 84 def _call(self, path, methodname=None, *args): 89 methodname: Method name of the RPC call. 100 payload = json.dumps({"method": methodname,
|
/external/opencv3/3rdparty/libjpeg/ |
jmorecfg.h | 207 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist 209 #define JMETHOD(type,methodname,arglist) type (*methodname) ()
|
/external/pdfium/third_party/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/gdb/darwin-x86/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)()
|
/prebuilts/gdb/linux-x86/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)()
|
/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)()
|
/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)()
|
/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);
|
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/libgdx/extensions/gdx-bullet/jni/swig/common/ |
gdxDefault.i | 55 %typemap(javadestruct, methodname="delete", methodmodifiers="@Override protected synchronized") SWIGTYPE { 66 %typemap(javadestruct_derived, methodname="delete", methodmodifiers="@Override protected synchronized") SWIGTYPE {
|
/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...] |
/external/libjpeg-turbo/ |
jmorecfg.h | 200 #define JMETHOD(type,methodname,arglist) type (*methodname) arglist
|
/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 {
|