Home
last modified time | relevance | path

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

/external/icu/icu4c/source/python/icutools/databuilder/
Dutils.py41 sep_idx = dirname.find("/")
42 if sep_idx == -1:
43 sep_idx = len(dirname)
44 variable = dirname[1:sep_idx]
46 return LOCAL_DIRNAME_SUBSTITUTIONS[variable] + dirname[sep_idx:]
/external/python/rsa/rsa/
Dpkcs1.py263 sep_idx = cleartext.find(b'\x00', 2)
270 sep_idx_bad = sep_idx < 10
276 return cleartext[sep_idx + 1:]
/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc972 auto sep_idx = path.rfind('/'); in RegisterMetric() local
974 sep_idx == std::string::npos ? path : path.substr(sep_idx + 1); in RegisterMetric()