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

1 2 3 4 5 67 8 91011

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 35 ob = args[0]
37 cls = ob.__class__
39 cls = type(ob)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 35 ob = args[0]
37 cls = ob.__class__
39 cls = type(ob)
  /external/protobuf/python/google/protobuf/pyext/
descriptor.cc 55 #define PyString_AsStringAndSize(ob, charpp, sizep) \
56 (PyUnicode_Check(ob)? \
57 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
58 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
152 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
    [all...]
repeated_scalar_container.cc 56 #define PyString_AsString(ob) \
57 (PyUnicode_Check(ob)? PyUnicode_AsUTF8(ob): PyBytes_AsString(ob))
message.cc 49 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type)
80 #define PyString_AsString(ob) \
81 (PyUnicode_Check(ob)? PyUnicode_AsUTF8(ob): PyBytes_AsString(ob))
82 #define PyString_AsStringAndSize(ob, charpp, sizep) \
83 (PyUnicode_Check(ob)? \
84 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
85 PyBytes_AsStringAndSize(ob, (charpp), (sizep))
    [all...]
descriptor_containers.cc 67 #define PyString_AsStringAndSize(ob, charpp, sizep) \
68 (PyUnicode_Check(ob)? \
69 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
70 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
    [all...]
  /external/python/cpython2/Modules/_ctypes/
cfield.c 1127 PyObject *ob = *(PyObject **)ptr; local
1128 if (ob == NULL) {
1135 Py_INCREF(ob);
1136 return ob;
1235 PyObject *ob = PyUnicode_FromWideChar((wchar_t *)ptr, len); local
1237 return ob;
    [all...]
callproc.c 1657 PyObject *ob; local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
StringCoding.java 70 private static <T> void set(ThreadLocal<SoftReference<T>> tl, T ob) {
71 tl.set(new SoftReference<T>(ob));
  /toolchain/binutils/binutils-2.25/bfd/
ieee.c 2904 struct output_buffer_struct ob; local
2922 struct output_buffer_struct ob; local
2945 struct output_buffer_struct ob; local
2968 struct output_buffer_struct ob; local
2989 struct output_buffer_struct ob; local
3015 struct output_buffer_struct ob; local
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
bld_vlv.bat 196 GenBiosId.exe -i ..\Conf\BiosId.env -o ..\%BUILD_PATH%\IA32\BiosId.bin -ob ..\Conf\BiosId.bat
199 GenBiosId.exe -i ..\Conf\BiosId.env -o ..\%BUILD_PATH%\X64\BiosId.bin -ob ..\Conf\BiosId.bat
  /system/bt/embdrv/sbc/decoder/include/
oi_codec_sbc_private.h 211 OI_BITSTREAM* ob);
  /toolchain/binutils/binutils-2.25/opcodes/
opc2c.c 185 int ob; local
190 ob = (bits >> op->vary[vn].shift) & v->mask;
191 lprintf (sim_log, "varybits: vary %s ob %x\n", v->name, ob);
194 if (ob == v->patterns[i])
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
MLand.java 696 final Obstacle ob = mObstaclesInPlay.get(j);
697 if (ob.intersects(p) && !DEBUG_IDDQD) {
701 } else if (ob.cleared(p)) {
702 if (ob instanceof Stem) {
703 maxPassedStem = Math.max(maxPassedStem, ((Stem)ob).id);
    [all...]
  /external/ImageMagick/coders/
png.c 639 *ob[MNG_MAX_OBJECTS];
637 *ob[MNG_MAX_OBJECTS]; member in struct:_MngInfo
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
typeobject.c 425 PyObject *ob, *temp; local
452 ob = PyTuple_GET_ITEM(value, i);
453 if (!PyClass_Check(ob) && !PyType_Check(ob)) {
457 type->tp_name, Py_TYPE(ob)->tp_name);
460 if (PyType_Check(ob)) {
461 if (PyType_IsSubtype((PyTypeObject*)ob, type)) {
505 ob = cls->tp_mro;
507 Py_DECREF(ob);
524 ob = PyTuple_GET_ITEM(old_bases, i);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 419 PyObject *ob, *temp; local
446 ob = PyTuple_GET_ITEM(value, i);
447 if (!PyClass_Check(ob) && !PyType_Check(ob)) {
451 type->tp_name, Py_TYPE(ob)->tp_name);
454 if (PyType_Check(ob)) {
455 if (PyType_IsSubtype((PyTypeObject*)ob, type)) {
499 ob = cls->tp_mro;
501 Py_DECREF(ob);
518 ob = PyTuple_GET_ITEM(old_bases, i);
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 445 PyObject *ob, *temp; local
472 ob = PyTuple_GET_ITEM(value, i);
473 if (!PyClass_Check(ob) && !PyType_Check(ob)) {
477 type->tp_name, Py_TYPE(ob)->tp_name);
480 if (PyType_Check(ob)) {
481 if (PyType_IsSubtype((PyTypeObject*)ob, type)) {
525 ob = cls->tp_mro;
527 Py_DECREF(ob);
544 ob = PyTuple_GET_ITEM(old_bases, i)
    [all...]
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 616 double rl, ol, ra, oa, rb, ob, prec0, prec1, prec2; local
643 ob = pow(2, prec2 - 2) + pow(2, prec2 - 3);
650 ob = row[7];
666 minb = -(rb * ob) / (pow(2, prec2) - 1);
  /external/libpng/
pngwrite.c 2157 const png_alloc_size_t ob = display->output_bytes; local
    [all...]
  /external/pdfium/third_party/libpng16/
pngwrite.c 2157 const png_alloc_size_t ob = display->output_bytes; local
    [all...]
  /external/skia/third_party/libpng/
pngwrite.c 2157 const png_alloc_size_t ob = display->output_bytes; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
abstract.h     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
abstract.h     [all...]
  /external/python/cpython2/Include/
abstract.h     [all...]

Completed in 3157 milliseconds

1 2 3 4 5 67 8 91011