HomeSort by relevance Sort by last modified time
    Searched refs:PyObject (Results 51 - 75 of 1099) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
funcobject.h 23 PyObject *func_code; /* A code object */
24 PyObject *func_globals; /* A dictionary (other mappings won't do) */
25 PyObject *func_defaults; /* NULL or a tuple */
26 PyObject *func_closure; /* NULL or a tuple of cell objects */
27 PyObject *func_doc; /* The __doc__ attribute, can be anything */
28 PyObject *func_name; /* The __name__ attribute, a string object */
29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */
30 PyObject *func_weakreflist; /* List of weak references */
31 PyObject *func_module; /* The __module__ attribute, can be anything */
44 PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *)
    [all...]
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder(
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item);
    [all...]
code.h 16 PyObject *co_code; /* instruction opcodes */
17 PyObject *co_consts; /* list (constants used) */
18 PyObject *co_names; /* list of strings (names used) */
19 PyObject *co_varnames; /* tuple of strings (local variable names) */
20 PyObject *co_freevars; /* tuple of strings (free variable names) */
21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */
23 PyObject *co_filename; /* string (where it was loaded from) */
24 PyObject *co_name; /* string (name, for reference) */
26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See
29 PyObject *co_weakreflist; /* to support weakrefs to code objects */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder(
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item);
    [all...]
code.h 16 PyObject *co_code; /* instruction opcodes */
17 PyObject *co_consts; /* list (constants used) */
18 PyObject *co_names; /* list of strings (names used) */
19 PyObject *co_varnames; /* tuple of strings (local variable names) */
20 PyObject *co_freevars; /* tuple of strings (free variable names) */
21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */
23 PyObject *co_filename; /* string (where it was loaded from) */
24 PyObject *co_name; /* string (name, for reference) */
26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See
29 PyObject *co_weakreflist; /* to support weakrefs to code objects */
    [all...]
  /external/python/cpython2/Include/
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item)
    [all...]
code.h 16 PyObject *co_code; /* instruction opcodes */
17 PyObject *co_consts; /* list (constants used) */
18 PyObject *co_names; /* list of strings (names used) */
19 PyObject *co_varnames; /* tuple of strings (local variable names) */
20 PyObject *co_freevars; /* tuple of strings (free variable names) */
21 PyObject *co_cellvars; /* tuple of strings (cell variable names) */
23 PyObject *co_filename; /* string (where it was loaded from) */
24 PyObject *co_name; /* string (name, for reference) */
26 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See
29 PyObject *co_weakreflist; /* to support weakrefs to code objects *
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
codecs.h 27 PyObject *search_function
48 PyAPI_FUNC(PyObject *) _PyCodec_Lookup(
62 PyAPI_FUNC(PyObject *) PyCodec_Encode(
63 PyObject *object,
78 PyAPI_FUNC(PyObject *) PyCodec_Decode(
79 PyObject *object,
94 PyAPI_FUNC(PyObject *) PyCodec_Encoder(
100 PyAPI_FUNC(PyObject *) PyCodec_Decoder(
106 PyAPI_FUNC(PyObject *) PyCodec_IncrementalEncoder(
113 PyAPI_FUNC(PyObject *) PyCodec_IncrementalDecoder
    [all...]
methodobject.h 18 typedef PyObject *(*PyCFunction)(PyObject *, PyObject *);
19 typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *,
20 PyObject *);
21 typedef PyObject *(*PyNoArgsFunction)(PyObject *);
23 PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *);
    [all...]
dictobject.h 56 PyObject *me_key;
57 PyObject *me_value;
87 PyDictEntry *(*ma_lookup)(PyDictObject *mp, PyObject *key, long hash);
109 PyAPI_FUNC(PyObject *) PyDict_New(void);
110 PyAPI_FUNC(PyObject *) PyDict_GetItem(PyObject *mp, PyObject *key);
111 PyAPI_FUNC(int) PyDict_SetItem(PyObject *mp, PyObject *key, PyObject *item)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
puremodule.c 62 static PyObject*
63 call_voidarg_function(VoidArgFunc func, PyObject *self, PyObject *args)
74 static PyObject*
75 call_stringarg_function(StringArgFunc func, PyObject *self, PyObject *args)
87 static PyObject*
88 call_stringorint_function(StringArgFunc func, PyObject *self, PyObject *args)
115 static PyObject*
    [all...]
  /external/python/cpython2/Modules/
puremodule.c 62 static PyObject*
63 call_voidarg_function(VoidArgFunc func, PyObject *self, PyObject *args)
74 static PyObject*
75 call_stringarg_function(StringArgFunc func, PyObject *self, PyObject *args)
87 static PyObject*
88 call_stringorint_function(StringArgFunc func, PyObject *self, PyObject *args)
115 static PyObject*
    [all...]

Completed in 534 milliseconds

1 23 4 5 6 7 8 91011>>