Searched refs:subobj (Results 1 - 16 of 16) sorted by relevance

/external/python/cpython3/Objects/
H A Dbytes_methods.c406 and sets subobj to NULL. Otherwise, sets the first argument to subobj
413 PyObject **subobj, char *byte,
425 *subobj = tmp_subobj;
434 *subobj = tmp_subobj;
444 *subobj = NULL;
468 PyObject *subobj; local
477 &subobj, &byte, &start, &end))
480 if (subobj) {
481 if (PyObject_GetBuffer(subobj,
412 parse_args_finds_byte(const char *function_name, PyObject *args, PyObject **subobj, char *byte, Py_ssize_t *start, Py_ssize_t *end) argument
726 PyObject *subobj; local
[all...]
H A Dunicodeobject.c13305 PyObject *subobj; local
13311 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
13313 if (PyTuple_Check(subobj)) {
13315 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
13316 substring = PyTuple_GET_ITEM(subobj, i);
13334 if (!PyUnicode_Check(subobj)) {
13337 "a tuple of str, not %.100s", Py_TYPE(subobj)->tp_name);
13340 result = tailmatch(self, subobj, start, end, -1);
13359 PyObject *subobj; local
13365 if (!stringlib_parse_args_finds("endswith", args, &subobj,
[all...]
/external/python/cpython3/Objects/stringlib/
H A Dfind.h87 PyObject **subobj,
115 *subobj = tmp_subobj;
86 parse_args_finds(const char * function_name, PyObject *args, PyObject **subobj, Py_ssize_t *start, Py_ssize_t *end) argument
/external/python/cpython2/Objects/stringlib/
H A Dfind.h109 PyObject **subobj,
137 *subobj = tmp_subobj;
108 stringlib_parse_args_finds(const char * function_name, PyObject *args, PyObject **subobj, Py_ssize_t *start, Py_ssize_t *end) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DULocaleCollationTest.java221 Object subobj = sub.get(obj);
222 checkObject(requestedLocale, subobj, "gt", "ge");
230 Object subobj = sub.get(obj);
233 checkObject(requestedLocale, subobj, "gt", "ge");
H A DULocaleTest.java470 Object subobj = sub.get(obj);
471 checkObject(requestedLocale, subobj, "gt", "ge");
479 Object subobj = sub.get(obj);
482 checkObject(requestedLocale, subobj, "gt", "ge");
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
H A DULocaleCollationTest.java218 Object subobj = sub.get(obj);
219 checkObject(requestedLocale, subobj, "gt", "ge");
227 Object subobj = sub.get(obj);
230 checkObject(requestedLocale, subobj, "gt", "ge");
/external/python/cpython2/Objects/
H A Dstringobject.c1458 PyObject *subobj = Py_None; local
1460 if (!PyArg_ParseTuple(args, "|On:split", &subobj, &maxsplit))
1464 if (subobj == Py_None)
1466 if (PyString_Check(subobj)) {
1467 sub = PyString_AS_STRING(subobj);
1468 n = PyString_GET_SIZE(subobj);
1471 else if (PyUnicode_Check(subobj))
1472 return PyUnicode_Split((PyObject *)self, subobj, maxsplit);
1474 else if (PyObject_AsCharBuffer(subobj, &sub, &n))
1557 PyObject *subobj local
1709 PyObject *subobj; local
2920 PyObject *subobj; local
2964 PyObject *subobj; local
[all...]
H A Dbytearrayobject.c1156 PyObject *subobj; local
1162 args, &subobj, &start, &end))
1164 if (_getbuffer(subobj, &subbuf) < 0)
1367 PyObject *subobj; local
1370 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
1372 if (PyTuple_Check(subobj)) {
1374 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
1376 PyTuple_GET_ITEM(subobj, i),
1386 result = _bytearray_tailmatch(self, subobj, start, end, -1);
1406 PyObject *subobj; local
2075 PyObject *list, *subobj = Py_None; local
2168 PyObject *list, *subobj = Py_None; local
[all...]
H A Dunicodeobject.c7272 PyObject *subobj,
7284 str1 = PyUnicode_FromObject(subobj);
7765 PyObject *subobj; local
7771 if (!stringlib_parse_args_finds("startswith", args, &subobj, &start, &end))
7773 if (PyTuple_Check(subobj)) {
7775 for (i = 0; i < PyTuple_GET_SIZE(subobj); i++) {
7777 PyTuple_GET_ITEM(subobj, i));
7789 substring = (PyUnicodeObject *)PyUnicode_FromObject(subobj);
7793 "unicode, or tuple, not %s", Py_TYPE(subobj)->tp_name);
7814 PyObject *subobj; local
7271 PyUnicode_Replace(PyObject *obj, PyObject *subobj, PyObject *replobj, Py_ssize_t maxcount) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DULocaleTest.java467 Object subobj = sub.get(obj);
468 checkObject(requestedLocale, subobj, "gt", "ge");
476 Object subobj = sub.get(obj);
479 checkObject(requestedLocale, subobj, "gt", "ge");
/external/python/cpython2/Lib/
H A Dcookielib.py1207 for subobj in deepvalues(obj):
1208 yield subobj
/external/protobuf/php/ext/google/protobuf/
H A Dupb.c2871 static void visit_check(const upb_refcounted *obj, const upb_refcounted *subobj, argument
2880 assert(subobj);
2881 removed = upb_inttable_removeptr(ref2, subobj, &v);
2882 /* The following assertion will fail if the visit() function visits a subobj
2883 * that it did not have a ref2 on, or visits the same subobj too many times. */
2887 upb_inttable_insert(ref2, (uintptr_t)subobj, upb_value_int32(newcount));
2997 const upb_refcounted *subobj,
3138 const upb_refcounted *subobj,
3144 } else if (subobj->is_frozen || color(t, subobj)
3137 tarjan_visit(const upb_refcounted *obj, const upb_refcounted *subobj, void *closure) argument
3177 crossref(const upb_refcounted *r, const upb_refcounted *subobj, void *_t) argument
3368 release_ref2(const upb_refcounted *obj, const upb_refcounted *subobj, void *closure) argument
[all...]
H A Dupb.h1176 const upb_refcounted *subobj,
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c3043 static void visit_check(const upb_refcounted *obj, const upb_refcounted *subobj, argument
3052 assert(subobj);
3053 removed = upb_inttable_removeptr(ref2, subobj, &v);
3054 /* The following assertion will fail if the visit() function visits a subobj
3055 * that it did not have a ref2 on, or visits the same subobj too many times. */
3059 upb_inttable_insert2(ref2, (uintptr_t)subobj, upb_value_int32(newcount),
3156 const upb_refcounted *subobj,
3297 const upb_refcounted *subobj,
3303 } else if (subobj->is_frozen || color(t, subobj)
3296 tarjan_visit(const upb_refcounted *obj, const upb_refcounted *subobj, void *closure) argument
3336 crossref(const upb_refcounted *r, const upb_refcounted *subobj, void *_t) argument
3527 release_ref2(const upb_refcounted *obj, const upb_refcounted *subobj, void *closure) argument
[all...]
H A Dupb.h1464 const upb_refcounted *subobj,

Completed in 1074 milliseconds