Searched defs:type (Results 251 - 275 of 371) sorted by relevance

<<1112131415

/device/huawei/angler/camera/QCamera2/HAL/
H A DQCamera2HWI.h146 qcamera_callback_type_m cb_type; // event type
147 int32_t msg_type; // msg type
347 mm_camera_buf_def_t *frame,char *type);
596 cam_stream_type_t type; member in struct:qcamera::QCamera2HardwareInterface::__anon1377
H A DQCameraPostProc.cpp132 * RETURN : int32_t type of status
174 * RETURN : int32_t type of status
205 * RETURN : int32_t type of status
366 * RETURN : int32_t type of status
412 * RETURN : int32_t type of status
621 * @msg_type: msg type of notify
625 * RETURN : int32_t type of status
642 * @msg_type: data callback msg type
649 * RETURN : int32_t type of status
700 * RETURN : bool type o
3068 addEntry(exif_tag_id_t tagid, exif_tag_type_t type, uint32_t count, void *data) argument
[all...]
/device/lge/bullhead/camera/QCamera2/HAL/
H A DQCamera2HWI.h146 qcamera_callback_type_m cb_type; // event type
147 int32_t msg_type; // msg type
347 mm_camera_buf_def_t *frame,char *type);
596 cam_stream_type_t type; member in struct:qcamera::QCamera2HardwareInterface::__anon1929
H A DQCameraPostProc.cpp132 * RETURN : int32_t type of status
174 * RETURN : int32_t type of status
205 * RETURN : int32_t type of status
366 * RETURN : int32_t type of status
412 * RETURN : int32_t type of status
621 * @msg_type: msg type of notify
625 * RETURN : int32_t type of status
642 * @msg_type: data callback msg type
649 * RETURN : int32_t type of status
700 * RETURN : bool type o
3068 addEntry(exif_tag_id_t tagid, exif_tag_type_t type, uint32_t count, void *data) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
H A Dselectmodule.c369 events -- an optional bitmask describing the type of events to check for");
412 events -- an optional bitmask describing the type of events to check for");
736 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd) argument
750 assert(type != NULL && type->tp_alloc != NULL);
751 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
773 pyepoll_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
782 return newPyEpoll_Object(type, sizehint, -1);
1386 newKqueue_Object(PyTypeObject *type, SOCKE argument
1412 kqueue_queue_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dimport.c1077 m = load_module(name, fp, buf, fdp->type, NULL);
1268 /* The only type of submodule allowed inside a "frozen"
1530 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1804 load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) argument
1811 switch (type) {
1816 "file object required for import (type code %d)",
1817 type);
1822 switch (type) {
1846 if (type
3035 int type; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h137 expr_ty type; member in struct:_stmt::__anon2603::__anon2615
347 expr_ty type; member in struct:_excepthandler::__anon2651::__anon2652
418 stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
523 excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
H A Dminidom.py451 defproperty(Attr, "schemaType", doc="Schema type for this attribute.")
511 __hash__ = None # Mutable type can't be correctly hashed
1739 raise xml.dom.NotSupportedErr("cannot import document type nodes") namespace
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A Dtextio.c2337 PyObject *type, *value, *traceback; local
2338 PyErr_Fetch(&type, &value, &traceback);
2341 _PyErr_ReplaceException(type, value, traceback);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_json.c97 scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
105 encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
906 /* read any JSON data type */
1670 scanner_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1673 s = (PyScannerObject *)type->tp_alloc(type, 0);
1803 encoder_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1806 s = (PyEncoderObject *)type->tp_alloc(type, 0);
H A D_struct.c191 (struct.error for an inconvertible type, OverflowError for
341 In all n[up]_<type> routines handling types larger than 1 byte, there is
342 *no* guarantee that the p pointer is properly aligned for each type,
1346 s_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1350 assert(type != NULL && type->tp_alloc != NULL);
1352 self = type->tp_alloc(type, 0);
2013 P:an integer type that is wide enough to hold a pointer.\n\
H A Darraymodule.c3 /* An array is a uniform list -- all items have the same type.
4 The item type is restricted to simple C types like int or float */
93 Get and Set functions for each type.
99 appropriate type or value).
416 newarrayobject(PyTypeObject *type, Py_ssize_t size, struct arraydescr *descr) argument
431 op = (arrayobject *) type->tp_alloc(type, 0);
1146 "don't know how to byteswap this array type");
1448 "type 'u' arrays");
1476 The array must be a type '
1929 array_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
H A Dxmltok.c178 unsigned char type[256]; member in struct:normal_encoding
243 (((struct normal_encoding *)(enc))->type[(unsigned char)*(p)])
348 switch (((struct normal_encoding *)enc)->type[(unsigned char)*from]) {
641 ? ((struct normal_encoding *)(enc))->type[(unsigned char)*(p)] \
782 ? ((struct normal_encoding *)(enc))->type[(unsigned char)(p)[1]] \
1181 if (latin1_encoding.type[result] == BT_NONXML)
1311 *fromP += (AS_NORMAL_ENCODING(enc)->type[(unsigned char)**fromP]
1336 *fromP += (AS_NORMAL_ENCODING(enc)->type[(unsigned char)**fromP]
1356 if (latin1_encoding.type[i] != BT_OTHER
1357 && latin1_encoding.type[
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dclassobject.c175 class_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
610 instance_new(PyTypeObject* type, PyObject* args, PyObject *kw) argument
797 PyInstanceObject *inst; /* pinst cast to the right type */
1873 /* __trunc__ is specified to return an Integral type, but
1877 "__trunc__ returned non-Integral (type %.200s)");
2079 "of type '%.100s'",
2354 instancemethod_new(PyTypeObject* type, PyObject* args, PyObject *kw) argument
H A Ddictobject.c2322 dict_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
2326 assert(type != NULL && type->tp_alloc != NULL);
2327 self = type->tp_alloc(type, 0);
2335 if (type == &PyDict_Type)
2759 /* The instance lay-out is the same for all three; but the type differs. */
2791 dictview_new(PyObject *dict, PyTypeObject *type) argument
2802 type->tp_name, dict->ob_type->tp_name);
2805 dv = PyObject_GC_New(dictviewobject, type);
[all...]
H A Dexceptions.c30 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
34 self = (PyBaseExceptionObject *)type->tp_alloc(type, 0);
493 "Inappropriate argument type.");
1299 "Inappropriate argument value (of correct type).");
H A Dfileobject.c348 type(f). Here we prevent them from doing damage with it. */
514 int type; local
517 type = _IONBF;
521 type = _IOLBF;
526 type = _IOFBF;
533 if (type == _IONBF) {
541 setvbuf(file->f_fp, file->f_setbuf, type, bufsize);
680 /* Our very own off_t-like type, 64-bit if possible */
2343 file_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
2348 assert(type !
[all...]
H A Dfloatobject.c73 A structseq holding information about the float type. It contains low level\n\
292 obj is not of float, int or long type, Py_NotImplemented is incref'ed,
396 * When mixing float with an integer type, there's no good *uniform* approach.
416 /* Switch on the type of w. Set i and j to doubles to be compared,
1800 float_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
1803 float_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1808 if (type != &PyFloat_Type)
1809 return float_subtype_new(type, args, kwds); /* Wimp out */
1825 float_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1829 assert(PyType_IsSubtype(type,
[all...]
H A Dintobject.c575 /* Return type of i_divmod */
1062 int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
1065 int_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1071 if (type != &PyInt_Type)
1072 return int_subtype_new(type, args, kwds); /* Wimp out */
1122 int_subtype_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1127 assert(PyType_IsSubtype(type, &PyInt_Type));
1141 newobj = type->tp_alloc(type, 0);
H A Dsetobject.c804 /***** Set iterator type ***********************************************/
1000 make_new_set(PyTypeObject *type, PyObject *iterable) argument
1012 (type == &PySet_Type || type == &PyFrozenSet_Type)) {
1015 Py_TYPE(so) = type;
1020 so = (PySetObject *)type->tp_alloc(type, 0);
1045 frozenset_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
1049 if (type == &PyFrozenSet_Type && !_PyArg_NoKeywords("frozenset()", kwds))
1052 if (!PyArg_UnpackTuple(args, type
1091 set_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
H A Dselectmodule.c391 events -- an optional bitmask describing the type of events to check for");
434 events -- an optional bitmask describing the type of events to check for");
770 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd) argument
784 assert(type != NULL && type->tp_alloc != NULL);
785 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
807 pyepoll_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
816 return newPyEpoll_Object(type, sizehint, -1);
1441 newKqueue_Object(PyTypeObject *type, SOCKE argument
1467 kqueue_queue_new(PyTypeObject *type, PyObject *args, PyObject *kwds) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dast.c82 PyObject *type, *value, *tback, *errstr, *loc, *tmp; local
89 PyErr_Fetch(&type, &value, &tback);
117 PyErr_Restore(type, value, tback);
373 /* If a particular expression type can't be used for assign / delete,
1297 ast_for_itercomp(struct compiling *c, const node *n, int type) argument
1312 if (type == COMP_GENEXP)
1314 else if (type == COMP_SETCOMP)
1381 PyObject *type, *value, *tback, *errstr; local
1382 PyErr_Fetch(&type, &value, &tback);
1394 Py_DECREF(type);
[all...]
H A Dimport.c1170 m = load_module(name, fp, buf, fdp->type, NULL);
1366 /* The only type of submodule allowed inside a "frozen"
1615 return fd->type == PY_SOURCE || fd->type == PY_COMPILED;
1889 load_module(char *name, FILE *fp, char *pathname, int type, PyObject *loader) argument
1896 switch (type) {
1901 "file object required for import (type code %d)",
1902 type);
1907 switch (type) {
1931 if (type
3156 int type; local
[all...]
H A Dpythonrun.c434 /* Clear type lookup cache */
452 each collection might release some types from the type
871 the file type, and, if we may close it, at the first few bytes. */
1628 PyObject *type, *value, *tb; local
1629 PyErr_Fetch(&type, &value, &tb);
1638 Py_XDECREF(type);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A DPython-ast.h137 expr_ty type; member in struct:_stmt::__anon2910::__anon2922
347 expr_ty type; member in struct:_excepthandler::__anon2958::__anon2959
418 stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
523 excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body,

Completed in 767 milliseconds

<<1112131415