Home
last modified time | relevance | path

Searched defs:ob (Results 1 – 25 of 188) sorted by relevance

12345678

/external/python/cpython2/Include/
Dsetobject.h69 #define PyFrozenSet_CheckExact(ob) (Py_TYPE(ob) == &PyFrozenSet_Type) argument
70 #define PyAnySet_CheckExact(ob) \ argument
72 #define PyAnySet_Check(ob) \ argument
76 #define PySet_Check(ob) \ argument
79 #define PyFrozenSet_Check(ob) \ argument
/external/python/cpython3/Include/
Dsetobject.h90 #define PyFrozenSet_CheckExact(ob) Py_IS_TYPE(ob, &PyFrozenSet_Type) argument
91 #define PyFrozenSet_Check(ob) \ argument
95 #define PyAnySet_CheckExact(ob) \ argument
97 #define PyAnySet_Check(ob) \ argument
103 #define PySet_Check(ob) \ argument
Dobject.h130 static inline Py_ssize_t _Py_REFCNT(const PyObject *ob) { in _Py_REFCNT()
133 #define Py_REFCNT(ob) _Py_REFCNT(_PyObject_CAST_CONST(ob)) argument
137 #define Py_TYPE(ob) (_PyObject_CAST(ob)->ob_type) argument
140 #define Py_SIZE(ob) (_PyVarObject_CAST(ob)->ob_size) argument
143 static inline int _Py_IS_TYPE(const PyObject *ob, const PyTypeObject *type) { in _Py_IS_TYPE()
148 #define Py_IS_TYPE(ob, type) _Py_IS_TYPE(_PyObject_CAST_CONST(ob), type) argument
151 static inline void _Py_SET_REFCNT(PyObject *ob, Py_ssize_t refcnt) { in _Py_SET_REFCNT()
154 #define Py_SET_REFCNT(ob, refcnt) _Py_SET_REFCNT(_PyObject_CAST(ob), refcnt) argument
157 static inline void _Py_SET_TYPE(PyObject *ob, PyTypeObject *type) { in _Py_SET_TYPE()
160 #define Py_SET_TYPE(ob, type) _Py_SET_TYPE(_PyObject_CAST(ob), type) argument
[all …]
/external/tremolo/Tremolo/
Dframing.c102 ogg_buffer *ob; in _fetch_buffer() local
149 ogg_buffer *ob=_fetch_buffer(bs,bytes); in ogg_buffer_alloc() local
157 ogg_buffer *ob=or->buffer; in ogg_buffer_realloc() local
291 ogg_buffer *ob=or->buffer; in ogg_buffer_release_one() local
440 oggbyte_buffer ob; in ogg_page_version() local
446 oggbyte_buffer ob; in ogg_page_continued() local
452 oggbyte_buffer ob; in ogg_page_bos() local
458 oggbyte_buffer ob; in ogg_page_eos() local
464 oggbyte_buffer ob; in ogg_page_granulepos() local
470 oggbyte_buffer ob; in ogg_page_serialno() local
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/convert/
DUpdateValueTest.java30 Map<String,Object> ob = MAPPER.updateValue(base, overrides); in testMapUpdate() local
46 List<Object> ob = MAPPER.updateValue(base, overrides); in testListUpdate() local
62 Object[] ob = MAPPER.updateValue(base, overrides); in testArrayUpdate() local
DTestUpdateViaObjectReader.java133 …Object ob = MAPPER.readerForUpdating(bean).readValue("{ \"b\":\"x\", \"c\":[4,5], \"child\":{ \"a\… in testBeanUpdate() local
153 Object ob = MAPPER.readerForUpdating(strs).readValue("[ \"b\", \"c\", \"d\" ]"); in testListUpdate() local
168 Object ob = MAPPER.readerForUpdating(strs).readValue("{ \"c\" : \"c\", \"a\" : \"z\" }"); in testMapUpdate() local
/external/python/cpython2/RISCOS/
Dunixstuff.c46 { int ob; in isdir() local
56 { int ob; in isfile() local
66 { int ob; in object_exists() local
/external/libkmsxx/kms++/src/
Dcard.cpp227 auto ob = new Connector(*this, id, i); in setup() local
234 auto ob = new Crtc(*this, id, i); in setup() local
241 auto ob = new Encoder(*this, id, i); in setup() local
252 auto ob = new Plane(*this, id, i); in setup() local
262 for (auto ob : get_objects()) { in setup() local
272 auto ob = new Property(*this, prop_id); in setup() local
Datomicreq.cpp58 void AtomicReq::add(DrmPropObject* ob, Property* prop, uint64_t value) in add()
63 void AtomicReq::add(kms::DrmPropObject* ob, const string& prop, uint64_t value) in add()
73 void AtomicReq::add(kms::DrmPropObject* ob, const map<string, uint64_t>& values) in add()
/external/python/cffi/c/
Dmisc_thread_common.h85 _thread_canary_detach_with_lock(ThreadCanaryObj *ob) in _thread_canary_detach_with_lock()
98 thread_canary_dealloc(ThreadCanaryObj *ob) in thread_canary_dealloc()
125 thread_canary_make_zombie(ThreadCanaryObj *ob) in thread_canary_make_zombie()
149 ThreadCanaryObj *ob; in thread_canary_free_zombies() local
Dminibuffer.h140 mb_dealloc(MiniBufferObj *ob) in mb_dealloc()
150 mb_traverse(MiniBufferObj *ob, visitproc visit, void *arg) in mb_traverse()
157 mb_clear(MiniBufferObj *ob) in mb_clear()
399 MiniBufferObj *ob = PyObject_GC_New(MiniBufferObj, &MiniBuffer_Type); in minibuffer_new() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderWithTypeParametersTest.java98 Object ob = deserialized.data.get(0); in testWithBuilderInferringBindings() local
111 Object ob = deserialized.data.get(0); in testWithBuilderWithoutInferringBindings() local
123 Object ob = deserialized.data.get(0); in testWithCreator() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DUntypedDeserializationTest.java237 Object ob = map.get("b"); in testNestedUntypes() local
252 Object ob = mapper.readValue("{\"a\":\"b\", \"nr\":1 }", Object.class); in testUntypedWithCustomScalarDesers() local
296 Object ob = mapper.readValue("[1, 2, true]", Object.class); in testUntypedWithListDeser() local
313 Object ob = mapper.readValue("{\"a\":true}", Object.class); in testUntypedWithMapDeser() local
339 Object ob = MAPPER.readValue("[1]", Object.class); in testUntypedWithJsonArrays() local
490 Object ob = MAPPER.readerFor(Object.class) in testPolymorphicUntypedVanilla() local
DMapDeserializationTest.java138 Object ob = result.get("a"); in testUntypedMap3() local
416 Object ob = result.keySet().iterator().next(); in testUUIDKeyMap() local
429 Object ob = result.keySet().iterator().next(); in testLocaleKeyMap() local
442 Object ob = result.keySet().iterator().next(); in testCurrencyKeyMap() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DTestGenericCollectionDeser.java67 Object ob = result.get(0); in testAnnotatedLStringist() local
77 Object ob = result.get(0); in testAnnotatedBooleanList() local
/external/jline/src/src/main/native/
Djline_WindowsTerminal.c5 (JNIEnv *env, jobject ob) in Java_jline_WindowsTerminal_getConsoleMode()
23 (JNIEnv *env, jobject ob, jint mode) in Java_jline_WindowsTerminal_setConsoleMode()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/validate/
DFullStreamReadTest.java163 Object ob = strictWithComments.forType(List.class) in testMapperFailOnTrailingWithNull() local
284 Object ob = strictRWithComments.forType(List.class).readValue(JSON_OK_NULL_WITH_COMMENT); in testReaderFailOnTrailingWithNull() local
/external/perfetto/src/trace_processor/sqlite/
Dquery_constraints.cc76 OrderBy ob{}; in AddOrderBy() local
102 for (const auto& ob : order_by_) { in ToNewSqlite3String() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/
DDeprecatedTypeHandling1102Test.java66 Object ob = l.get(0); in testExplicitCollectionType() local
85 Object ob = m.values().iterator().next(); in testExplicitMapType() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/
DTestPolymorphicWithDefaultImpl.java183 Object ob = MAPPER.readerFor(DefaultWithNoClass.class).readValue("{ }"); in testDefaultAsNoClass() local
192 Object ob = MAPPER.readerFor(DefaultWithVoidAsDefault.class).readValue("{ }"); in testDefaultAsVoid() local
203 Object ob = mapper.readValue("{}", MysteryPolymorphic.class); in testBadTypeAsNull() local
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ext/
DOptionalHandlerFactory.java110 Object ob = instantiate(factoryName); in findSerializer() local
143 Object ob = instantiate(factoryName); in findDeserializer() local
/external/llvm/lib/CodeGen/
DSpillPlacement.cpp270 unsigned ob = bundles->getBundle(I->Number, 1); in addConstraints() local
285 unsigned ob = bundles->getBundle(*I, 1); in addPrefSpill() local
298 unsigned ob = bundles->getBundle(Number, 1); in addLinks() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSpillPlacement.cpp278 unsigned ob = bundles->getBundle(I->Number, true); in addConstraints() local
293 unsigned ob = bundles->getBundle(*I, true); in addPrefSpill() local
306 unsigned ob = bundles->getBundle(Number, true); in addLinks() local
/external/python/cpython2/Objects/
Dweakrefobject.c23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback) in init_weakref()
34 new_weakref(PyObject *ob, PyObject *callback) in new_weakref()
283 PyObject *ob, *callback = NULL; in weakref___new__() local
758 PyWeakref_NewRef(PyObject *ob, PyObject *callback) in PyWeakref_NewRef()
817 PyWeakref_NewProxy(PyObject *ob, PyObject *callback) in PyWeakref_NewProxy()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/deftyping/
DDefaultTypeResolver2472Test.java30 Object ob = mapper.readValue(json, Object.class); in testLegacyCtor2472() local

12345678