/external/python/cpython3/Objects/ |
D | bytes_methods.c | 454 PyObject **subobj, char *byte, in parse_args_finds_byte() argument 465 *subobj = tmp_subobj; in parse_args_finds_byte() 486 *subobj = NULL; in parse_args_finds_byte() 510 PyObject *subobj; in find_internal() local 519 &subobj, &byte, &start, &end)) in find_internal() 522 if (subobj) { in find_internal() 523 if (PyObject_GetBuffer(subobj, &subbuf, PyBUF_SIMPLE) != 0) in find_internal() 560 if (subobj) in find_internal() 776 PyObject *subobj; in _Py_bytes_tailmatch() local 779 if (!stringlib_parse_args_finds(function_name, args, &subobj, &start, &end)) in _Py_bytes_tailmatch() [all …]
|
D | unicodeobject.c | 13392 PyObject *subobj; in unicode_startswith() local 13398 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end)) in unicode_startswith() 13400 if (PyTuple_Check(subobj)) { in unicode_startswith() 13402 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { in unicode_startswith() 13403 substring = PyTuple_GET_ITEM(subobj, i); in unicode_startswith() 13421 if (!PyUnicode_Check(subobj)) { in unicode_startswith() 13424 "a tuple of str, not %.100s", Py_TYPE(subobj)->tp_name); in unicode_startswith() 13427 result = tailmatch(self, subobj, start, end, -1); in unicode_startswith() 13446 PyObject *subobj; in unicode_endswith() local 13452 if (!stringlib_parse_args_finds("endswith", args, &subobj, &start, &end)) in unicode_endswith() [all …]
|
/external/igt-gpu-tools/runner/ |
D | runner_json_tests.c | 38 struct json_object *subobj; in compare_objects() local 43 igt_assert(json_object_object_get_ex(two, iter.key, &subobj)); in compare_objects() 45 compare(iter.val, subobj); in compare_objects()
|
/external/python/cpython2/Objects/ |
D | stringobject.c | 1464 PyObject *subobj = Py_None; in string_split() local 1466 if (!PyArg_ParseTuple(args, "|On:split", &subobj, &maxsplit)) in string_split() 1470 if (subobj == Py_None) in string_split() 1472 if (PyString_Check(subobj)) { in string_split() 1473 sub = PyString_AS_STRING(subobj); in string_split() 1474 n = PyString_GET_SIZE(subobj); in string_split() 1477 else if (PyUnicode_Check(subobj)) in string_split() 1478 return PyUnicode_Split((PyObject *)self, subobj, maxsplit); in string_split() 1480 else if (PyObject_AsCharBuffer(subobj, &sub, &n)) in string_split() 1563 PyObject *subobj = Py_None; in string_rsplit() local [all …]
|
D | bytearrayobject.c | 1177 PyObject *subobj; in bytearray_find_internal() local 1183 args, &subobj, &start, &end)) in bytearray_find_internal() 1185 if (_getbuffer(subobj, &subbuf) < 0) in bytearray_find_internal() 1388 PyObject *subobj; in bytearray_startswith() local 1391 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end)) in bytearray_startswith() 1393 if (PyTuple_Check(subobj)) { in bytearray_startswith() 1395 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { in bytearray_startswith() 1397 PyTuple_GET_ITEM(subobj, i), in bytearray_startswith() 1407 result = _bytearray_tailmatch(self, subobj, start, end, -1); in bytearray_startswith() 1427 PyObject *subobj; in bytearray_endswith() local [all …]
|
D | unicodeobject.c | 7267 PyObject *subobj, in PyUnicode_Replace() argument 7279 str1 = PyUnicode_FromObject(subobj); in PyUnicode_Replace() 7760 PyObject *subobj; in unicode_startswith() local 7766 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end)) in unicode_startswith() 7768 if (PyTuple_Check(subobj)) { in unicode_startswith() 7770 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) { in unicode_startswith() 7772 PyTuple_GET_ITEM(subobj, i)); in unicode_startswith() 7784 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj); in unicode_startswith() 7788 "unicode, or tuple, not %s", Py_TYPE(subobj)->tp_name); in unicode_startswith() 7809 PyObject *subobj; in unicode_endswith() local [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | ULocaleCollationTest.java | 221 Object subobj = sub.get(obj); in checkService() local 222 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService() 230 Object subobj = sub.get(obj); in checkService() local 233 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService()
|
D | ULocaleTest.java | 473 Object subobj = sub.get(obj); in checkService() local 474 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService() 482 Object subobj = sub.get(obj); in checkService() local 485 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService()
|
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/ |
D | ULocaleCollationTest.java | 218 Object subobj = sub.get(obj); in checkService() local 219 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService() 227 Object subobj = sub.get(obj); in checkService() local 230 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService()
|
/external/python/cpython3/Objects/stringlib/ |
D | find.h | 87 PyObject **subobj, in STRINGLIB() 115 *subobj = tmp_subobj; in STRINGLIB()
|
/external/python/cpython2/Objects/stringlib/ |
D | find.h | 109 PyObject **subobj, in stringlib_parse_args_finds() argument 137 *subobj = tmp_subobj; in stringlib_parse_args_finds()
|
/external/python/cpython2/Doc/library/ |
D | repr.rst | 120 recursively format a value should call ``self.repr1(subobj, level - 1)``.
|
/external/python/cpython3/Doc/library/ |
D | reprlib.rst | 139 format a value should call ``self.repr1(subobj, level - 1)``.
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | ULocaleTest.java | 470 Object subobj = sub.get(obj); in checkService() local 471 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService() 479 Object subobj = sub.get(obj); in checkService() local 482 checkObject(requestedLocale, subobj, "gt", "ge"); in checkService()
|
/external/python/cpython2/Lib/ |
D | cookielib.py | 1207 for subobj in deepvalues(obj): 1208 yield subobj
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 5729 static void visit_check(const upb_refcounted *obj, const upb_refcounted *subobj, in visit_check() argument 5738 UPB_ASSERT(subobj); in visit_check() 5739 removed = upb_inttable_removeptr(ref2, subobj, &v); in visit_check() 5745 upb_inttable_insert2(ref2, (uintptr_t)subobj, upb_value_int32(newcount), in visit_check() 5842 const upb_refcounted *subobj, 5983 const upb_refcounted *subobj, in tarjan_visit() argument 5989 } else if (subobj->is_frozen || color(t, subobj) == WHITE) { in tarjan_visit() 5992 } else if (color(t, subobj) < GREEN) { in tarjan_visit() 5994 do_tarjan(subobj, t); in tarjan_visit() 5995 set_lowlink(t, obj, UPB_MIN(lowlink(t, obj), lowlink(t, subobj))); in tarjan_visit() [all …]
|
D | upb.h | 1564 const upb_refcounted *subobj,
|
/external/mesa3d/docs/relnotes/ |
D | 20.2.0.rst | 3687 - clover/api: Address missing braces for subobj init
|