Searched refs:methods (Results 1 - 25 of 67) sorted by relevance

123

/device/google/cuttlefish_common/guest/hals/audio/
H A Daudio_hal.cpp34 VSOC_STATIC_INITIALIZER(methods) &hal_module_methods,
/device/linaro/hikey/libmemtrack/
H A Dmemtrack_hikey.c41 .methods = &memtrack_module_methods,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dmodsupport.h117 PyAPI_FUNC(PyObject *) Py_InitModule4(const char *name, PyMethodDef *methods,
121 #define Py_InitModule(name, methods) \
122 Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \
125 #define Py_InitModule3(name, methods, doc) \
126 Py_InitModule4(name, methods, doc, (PyObject *)NULL, \
H A Dmethodobject.h11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dmodsupport.h117 PyAPI_FUNC(PyObject *) Py_InitModule4(const char *name, PyMethodDef *methods,
121 #define Py_InitModule(name, methods) \
122 Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \
125 #define Py_InitModule3(name, methods, doc) \
126 Py_InitModule4(name, methods, doc, (PyObject *)NULL, \
H A Dmethodobject.h11 not Python methods in user-defined classes. See classobject.h
61 the construction of methods for a class. These cannot be used for
74 PyMethodDef *methods; /* Methods of this type */ member in struct:PyMethodChain
/device/generic/goldfish/camera/
H A DEmulatedCameraHal.cpp39 methods: &android::EmulatedCameraFactory::mCameraModuleMethods,
/device/google/cuttlefish_common/guest/hals/sensors/
H A Dsensors_hal.cpp33 VSOC_STATIC_INITIALIZER(methods) & hal_module_methods,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DDocXMLRPCServer.py6 based on the functions and methods registered with the
26 def markup(self, text, escape=None, funcs={}, classes={}, methods={}):
35 # names. Only methods with names consisting of word characters
58 results.append(self.namelink(name, methods, funcs, classes))
68 funcs={}, classes={}, methods={}, cl=None):
105 docstring, self.preformat, funcs, classes, methods)
109 def docserver(self, server_name, package_documentation, methods):
113 for key, value in methods.items():
126 method_items = sorted(methods.items())
145 "This server exports the following methods throug
[all...]
H A DSimpleXMLRPCServer.py30 # knows to advertise the strings methods
77 # We are forcing the 'export_' prefix on methods that are
223 """Registers the XML-RPC introspection methods in the system
244 XML-RPC methods are dispatched from the marshalled (XML) data
281 Returns a list of the methods supported by the server."""
283 methods = self.funcs.keys()
286 # methods
288 methods = remove_duplicates(
289 methods + self.instance._listMethods()
293 # of methods
[all...]
H A Dpyclbr.py1 """Parse a Python module and describe its classes and methods.
23 methods -- a dictionary of methods
26 The dictionary of methods uses the method names as keys and the line
61 self.methods = {}
66 self.methods[name] = lineno
334 methods = sorted(obj.methods.iteritems(), key=itemgetter(1))
335 for name, lineno in methods:
/device/generic/goldfish/keymaster/trusty/
H A Dkeymaster_module.cpp53 .methods = &keystore_module_methods,
/device/generic/goldfish/power/
H A Dpower_qemu.c59 .methods = &power_qemu_module_methods,
/device/google/marlin/camera/QCamera2/
H A DQCamera2Hal.cpp41 .methods = &qcamera::QCamera2Factory::mModuleMethods,
/device/google/marlin/vr/
H A Dvr.c64 .methods = &vr_module_methods,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
H A Dfix_operator.py28 methods = """
36 trailer< '.' %(methods)s > trailer< %(obj)s > >
38 power< %(methods)s trailer< %(obj)s > >
39 """ % dict(methods=methods, obj=obj)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
H A DEiffel.py21 # find methods with pre or post conditions
22 methods = []
27 methods.append(k)
28 for m in methods:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dmethodobject.c128 /* Methods (the standard built-in methods, that is) */
316 /* List all methods in a chain -- helper for findmethodinchain */
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
368 PyMethodDef *ml = chain->methods;
384 Py_FindMethod(PyMethodDef *methods, PyObject *self, const char *name) argument
387 chain.methods = methods;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dmethodobject.c128 /* Methods (the standard built-in methods, that is) */
316 /* List all methods in a chain -- helper for findmethodinchain */
328 for (ml = c->methods; ml->ml_name != NULL; ml++)
336 for (ml = c->methods; ml->ml_name != NULL; ml++) {
368 PyMethodDef *ml = chain->methods;
384 Py_FindMethod(PyMethodDef *methods, PyObject *self, const char *name) argument
387 chain.methods = methods;
/device/generic/goldfish/vibrator/
H A Dvibrator_qemu.c92 .methods = &qemu_vibrator_module_methods,
/device/google/cuttlefish_common/guest/hals/camera/
H A DEmulatedCameraHal.cpp52 VSOC_STATIC_INITIALIZER(methods) &
/device/google/cuttlefish_common/guest/hals/lights/
H A Dlights_vsoc.c72 VSOC_STATIC_INITIALIZER(methods) & lights_module_methods,
/device/google/cuttlefish_common/guest/hals/power/
H A Dpower.c92 VSOC_STATIC_INITIALIZER(methods) &power_module_methods,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_file.py100 methods = [('fileno', ()),
115 methods.append(('truncate', ()))
121 for methodname, args in methods:
232 # various read* methods.
246 methods = [("readline", ()), ("read", ()), ("readlines", ()),
256 for methodname, args in methods:
/device/generic/goldfish/gatekeeper/
H A Dmodule.cpp123 .methods = &gatekeeper_module_methods,

Completed in 247 milliseconds

123