Searched refs:obj_start (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Objects/stringlib/ |
D | find.h | 93 PyObject *obj_start=Py_None, *obj_end=Py_None; in STRINGLIB() local 100 if (!PyArg_ParseTuple(args, format, &tmp_subobj, &obj_start, &obj_end)) in STRINGLIB() 106 if (obj_start != Py_None) in STRINGLIB() 107 if (!_PyEval_SliceIndex(obj_start, &tmp_start)) in STRINGLIB()
|
/external/python/cpython2/Objects/stringlib/ |
D | find.h | 115 PyObject *obj_start=Py_None, *obj_end=Py_None; in stringlib_parse_args_finds() local 122 if (!PyArg_ParseTuple(args, format, &tmp_subobj, &obj_start, &obj_end)) in stringlib_parse_args_finds() 128 if (obj_start != Py_None) in stringlib_parse_args_finds() 129 if (!_PyEval_SliceIndex(obj_start, &tmp_start)) in stringlib_parse_args_finds()
|
/external/harfbuzz_ng/src/ |
D | hb-machinery.hh | 270 const char *obj_start = (const char *) obj; in set_object() local 272 assert (obj_start <= obj_end); /* Must not overflow. */ in set_object() 274 if (unlikely (obj_end < this->start || this->end < obj_start)) in set_object() 278 this->start = MAX (this->start, obj_start); in set_object()
|