Home
last modified time | relevance | path

Searched refs:cut1 (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Objects/stringlib/
Dfastsearch.h267 Py_ssize_t cut1, period1, cut2, period2, cut, period; in STRINGLIB() local
268 cut1 = STRINGLIB(_lex_search)(needle, len_needle, &period1, 0); in STRINGLIB()
272 if (cut1 > cut2) { in STRINGLIB()
274 cut = cut1; in STRINGLIB()
Dstringlib_find_two_way_notes.txt379 cut1 = len(needle) - len(suffix1)
381 cut = max(cut1, cut2) # the later cut
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DSoapSerializationEnvelope.java357 int cut1 = type.indexOf("[", cut0); in readVector() local
358 name = type.substring(cut0 + 1, cut1); in readVector()
361 size = getIndex(type, cut1, -1); in readVector()