HomeSort by relevance Sort by last modified time
    Searched refs:PyObject (Results 126 - 150 of 150) sorted by null

1 2 3 4 56

  /external/linux-tools-perf/util/
python.c 66 static PyObject *pyrf_mmap_event__repr(struct pyrf_event *pevent)
68 PyObject *ret;
108 static PyObject *pyrf_task_event__repr(struct pyrf_event *pevent)
141 static PyObject *pyrf_comm_event__repr(struct pyrf_event *pevent)
170 static PyObject *pyrf_throttle_event__repr(struct pyrf_event *pevent)
225 static PyObject *pyrf_event__new(union perf_event *event)
238 return (PyObject *)pevent;
248 PyObject *args, PyObject *kwargs)
266 pcpus->ob_type->tp_free((PyObject*)pcpus)
    [all...]
  /external/chromium_org/chrome/test/pyautolib/
argc_argv.i 16 PyObject *s = PyList_GetItem($input,i);
  /external/chromium_org/third_party/markupsafe/
_speedups.c 24 static PyObject* markup;
31 PyObject *module;
55 static PyObject*
77 return (PyObject*)in;
113 return (PyObject*)out;
117 static PyObject*
118 escape(PyObject *self, PyObject *text)
120 PyObject *s = NULL, *rv = NULL, *html;
143 PyObject *unicode = PyObject_Unicode(text)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python.h 144 PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
pythonrun.h 58 PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *,
59 PyObject *, PyCompilerFlags *);
61 PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
62 PyObject *, PyObject *, int,
66 PyAPI_FUNC(PyObject *) Py_CompileStringFlags(const char *, const char *, int,
72 PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *);
    [all...]
objimpl.h 150 PyAPI_FUNC(PyObject *) PyObject_Init(PyObject *, PyTypeObject *);
153 PyAPI_FUNC(PyObject *) _PyObject_New(PyTypeObject *);
164 ( Py_TYPE(op) = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
194 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
208 PyObject *
211 PyObject *op;
213 op = (PyObject *) Your_Allocator(_PyObject_SIZE(YourTypeStruct));
312 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t);
313 PyAPI_FUNC(PyObject *) _PyObject_GC_New(PyTypeObject *)
    [all...]
pystrtod.h 17 PyObject *overflow_exception);
longintrepr.h 98 PyAPI_FUNC(PyObject *) _PyLong_Copy(PyLongObject *src);
Python-ast.h 533 PyObject* PyAST_mod2obj(mod_ty t);
534 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
535 int PyAST_Check(PyObject* obj);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python.h 144 PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
pythonrun.h 58 PyAPI_FUNC(PyObject *) PyRun_StringFlags(const char *, int, PyObject *,
59 PyObject *, PyCompilerFlags *);
61 PyAPI_FUNC(PyObject *) PyRun_FileExFlags(FILE *, const char *, int,
62 PyObject *, PyObject *, int,
66 PyAPI_FUNC(PyObject *) Py_CompileStringFlags(const char *, const char *, int,
72 PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *);
    [all...]
objimpl.h 150 PyAPI_FUNC(PyObject *) PyObject_Init(PyObject *, PyTypeObject *);
153 PyAPI_FUNC(PyObject *) _PyObject_New(PyTypeObject *);
164 ( Py_TYPE(op) = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
194 (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
208 PyObject *
211 PyObject *op;
213 op = (PyObject *) Your_Allocator(_PyObject_SIZE(YourTypeStruct));
312 PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t);
313 PyAPI_FUNC(PyObject *) _PyObject_GC_New(PyTypeObject *)
    [all...]
pystrtod.h 17 PyObject *overflow_exception);
longintrepr.h 98 PyAPI_FUNC(PyObject *) _PyLong_Copy(PyLongObject *src);
Python-ast.h 533 PyObject* PyAST_mod2obj(mod_ty t);
534 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode);
535 int PyAST_Check(PyObject* obj);
  /external/chromium_org/third_party/bintrees/bintrees/
ctrees.c 25 ct_new_node(PyObject *key, PyObject *value, int xdata)
69 PyObject *tmp;
79 ct_compare(PyObject *key1, PyObject *key2)
99 ct_find_node(node_t *root, PyObject *key)
113 extern PyObject *
114 ct_get_item(node_t *root, PyObject *key)
117 PyObject *tuple;
152 ct_bintree_remove(node_t **rootaddr, PyObject *key
    [all...]
  /external/linux-tools-perf/util/scripting-engines/
trace-event-python.c 49 static PyObject *main_module, *main_dict;
64 PyObject *handler, *t, *retval;
110 PyObject *handler, *t, *retval;
213 PyObject *handler, *retval, *context, *t, *obj, *dict = NULL;
328 PyObject *handler, *retval;
416 PyObject *handler, *retval;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 1 # Verify that gdb can pretty-print the various PyObject* types
426 'Ensure that a NULL PyObject* is handled gracefully'
436 'Ensure that a PyObject* with NULL ob_type is handled gracefully'
441 'Ensure that a PyObject* with a corrupt ob_type is handled gracefully'
447 'Ensure that a PyObject* with a type with corrupt tp_flags is handled'
453 'Ensure that a PyObject* with a type with corrupt tp_name is handled'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 1 # Verify that gdb can pretty-print the various PyObject* types
426 'Ensure that a NULL PyObject* is handled gracefully'
436 'Ensure that a PyObject* with NULL ob_type is handled gracefully'
441 'Ensure that a PyObject* with a corrupt ob_type is handled gracefully'
447 'Ensure that a PyObject* with a type with corrupt tp_flags is handled'
453 'Ensure that a PyObject* with a type with corrupt tp_name is handled'
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/freemarker/
freemarker-2.3.19.jar 

Completed in 1038 milliseconds

1 2 3 4 56