HomeSort by relevance Sort by last modified time
    Searched refs:ob (Results 101 - 125 of 275) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_weakref.py 803 def __init__(self, ob, callback=None, value=42):
805 super(MyRef, self).__init__(ob, callback)
849 def __new__(type, ob, callback, slot1, slot2):
850 return weakref.ref.__new__(type, ob, callback)
851 def __init__(self, ob, callback, slot1, slot2):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_weakref.py 803 def __init__(self, ob, callback=None, value=42):
805 super(MyRef, self).__init__(ob, callback)
849 def __new__(type, ob, callback, slot1, slot2):
850 return weakref.ref.__new__(type, ob, callback)
851 def __init__(self, ob, callback, slot1, slot2):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /external/python/cpython2/Include/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 114 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt)
115 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
438 #define PyObject_TypeCheck(ob, tp) \
439 (Py_TYPE(ob) == (tp) || PyType_IsSubtype(Py_TYPE(ob), (tp)))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 154 w_PyLong(const PyLongObject *ob, WFILE *p)
160 if (Py_SIZE(ob) == 0) {
166 n = ABS(Py_SIZE(ob));
168 d = ob->ob_digit[n-1];
174 w_long((long)(Py_SIZE(ob) > 0 ? l : -l), p);
177 d = ob->ob_digit[i];
184 d = ob->ob_digit[n-1];
235 PyLongObject *ob = (PyLongObject *)v; local
236 w_PyLong(ob, p);
577 PyLongObject *ob; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 175 w_PyLong(const PyLongObject *ob, WFILE *p)
181 if (Py_SIZE(ob) == 0) {
187 n = ABS(Py_SIZE(ob));
189 d = ob->ob_digit[n-1];
200 w_long((long)(Py_SIZE(ob) > 0 ? l : -l), p);
203 d = ob->ob_digit[i];
210 d = ob->ob_digit[n-1];
261 PyLongObject *ob = (PyLongObject *)v; local
262 w_PyLong(ob, p);
582 PyLongObject *ob; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
marshal.c 154 w_PyLong(const PyLongObject *ob, WFILE *p)
160 if (Py_SIZE(ob) == 0) {
166 n = ABS(Py_SIZE(ob));
168 d = ob->ob_digit[n-1];
174 w_long((long)(Py_SIZE(ob) > 0 ? l : -l), p);
177 d = ob->ob_digit[i];
184 d = ob->ob_digit[n-1];
235 PyLongObject *ob = (PyLongObject *)v; local
236 w_PyLong(ob, p);
577 PyLongObject *ob; local
    [all...]
  /external/python/cpython2/Python/
marshal.c 169 w_PyLong(const PyLongObject *ob, WFILE *p)
175 if (Py_SIZE(ob) == 0) {
181 n = ABS(Py_SIZE(ob));
183 d = ob->ob_digit[n-1];
194 w_long((long)(Py_SIZE(ob) > 0 ? l : -l), p);
197 d = ob->ob_digit[i];
204 d = ob->ob_digit[n-1];
255 PyLongObject *ob = (PyLongObject *)v; local
256 w_PyLong(ob, p);
576 PyLongObject *ob; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
ase-errors-1.s 47 add.ob $f4,$f6,$f8 # OK
49 add.ob $f4,$f6,$f8 # OK
51 add.ob $f4,$f6,$f8 # ERROR: mdmx not enabled
  /libcore/ojluni/src/main/java/java/nio/
ByteBuffer.java     [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
Charset.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
setobject.c 2394 PyObject *ob = (PyObject *)so; local
    [all...]
structseq.c 147 PyObject *ob; local
213 if (dict && (ob = PyDict_GetItemString(
217 ob = Py_None;
219 Py_INCREF(ob);
220 res->ob_item[i] = ob;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
setobject.c 2398 PyObject *ob = (PyObject *)so; local
    [all...]
structseq.c 147 PyObject *ob; local
212 if (dict && (ob = PyDict_GetItemString(
216 ob = Py_None;
218 Py_INCREF(ob);
219 res->ob_item[i] = ob;
  /external/python/cpython2/Objects/
setobject.c 2400 PyObject *ob = (PyObject *)so; local
    [all...]
structseq.c 147 PyObject *ob; local
213 if (dict && (ob = PyDict_GetItemString(
217 ob = Py_None;
219 Py_INCREF(ob);
220 res->ob_item[i] = ob;
  /toolchain/binutils/binutils-2.25/gas/
write.c 1402 struct obstack *ob = &seginfo->frchainP->frch_obstack; local
2604 struct obstack *ob = &seginfo->frchainP->frch_obstack; local
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 462 struct IT_ob ob; local
465 ob.spare = 0;
471 ob.saf = 1;
473 ob.address = section->address;
475 ob.address = 0;
481 ob.saf = 0;
484 ob.cpf = 0; /* Never compress. */
485 ob.data.len = todo;
487 ob.data.data = stuff;
488 sysroff_swap_ob_out (file, &ob /*, i + todo < section->size */ )
495 struct IT_ob ob; local
    [all...]
  /external/python/cpython2/Modules/
_testcapimodule.c 2662 test_structmembers *ob; local
    [all...]

Completed in 1101 milliseconds

1 2 3 45 6 7 8 91011