Home
last modified time | relevance | path

Searched refs:rsplit (Results 1 – 25 of 83) sorted by relevance

1234

/third_party/python/Tools/stringbench/
Dstringbench.py559 s1_rsplit = s1.rsplit
567 s1_rsplit = s1.rsplit
576 s1_rsplit = s1.rsplit
584 s1_rsplit = s1.rsplit
592 s1_rsplit = s1.rsplit
604 s1_rsplit = s1.rsplit
763 s_rsplit = s.rsplit
780 s_rsplit = s.rsplit
837 s_rsplit = s.rsplit
855 s_rsplit = s.rsplit
[all …]
/third_party/skia/third_party/externals/markupsafe/
D__init__.py115 def rsplit(self, *args, **kwargs): member in Markup
116 return list(map(self.__class__, text_type.rsplit(self, *args, **kwargs)))
117 rsplit.__doc__ = text_type.rsplit.__doc__
/third_party/node/tools/inspector_protocol/markupsafe/
D__init__.py115 def rsplit(self, *args, **kwargs): member in Markup
116 return list(map(self.__class__, text_type.rsplit(self, *args, **kwargs)))
117 rsplit.__doc__ = text_type.rsplit.__doc__
/third_party/markupsafe/
D__init__.py126 def rsplit( # type: ignore member in Markup
129 return [self.__class__(v) for v in super().rsplit(sep, maxsplit)]
131 rsplit.__doc__ = str.rsplit.__doc__
/third_party/flutter/skia/infra/bots/assets/cmake_linux/
Dcreate.py19 VERSION.rsplit('.', 1)[0], VERSION)
/third_party/skia/tools/skpbench/
D_adb_path.py20 return pathname.rsplit('/', maxsplit=1)[-1]
/third_party/flutter/skia/tools/skpbench/
D_adb_path.py20 return pathname.rsplit('/', maxsplit=1)[-1]
/third_party/grpc/src/python/grpcio_tests/tests/_sanity/
D_sanity_test.py36 test_case_class.id().rsplit('.', 1)[0] for test_case_class in
/third_party/skia/infra/bots/assets/cmake_linux/
Dcreate.py25 VERSION.rsplit('.', 1)[0], VERSION)
/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dexport_targets.py194 acceptable_sources = {x.rsplit('/', 1)[-1].encode() for x in acceptable_sources}
217 include_file = include.rsplit(b'/', 1)[-1]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCSymbolXCOFF.h58 std::tie(lhs, rhs) = name.rsplit('['); in getUnqualifiedName()
/third_party/skia/third_party/externals/angle2/scripts/
Dexport_targets.py273 acceptable_sources = {x.rsplit('/', 1)[-1].encode() for x in acceptable_sources}
296 include_file = include.rsplit(b'/', 1)[-1]
/third_party/wayland_standard/
Dwayland_scanner_wrapper.py63 protocol_without_extension = protocol.rsplit(".", 1)[0]
/third_party/protobuf/python/google/protobuf/
Dproto_builder.py118 package, name = full_name.rsplit('.', 1)
/third_party/python/Lib/test/test_zoneinfo/data/
Dupdate_test_data.py63 _, version = version_line.strip().rsplit(" ", 1)
/third_party/vk-gl-cts/scripts/
Dconvert_case_list_to_xml.py57 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1])
/third_party/mindspore/mindspore/profiler/parser/
Dstep_trace_parser.py80 file_name = self._output_path.rsplit('/', 2)
156 op_name = name.rsplit('/', 1)[-1]
188 step_trace_files.sort(key=lambda path: int(path.rsplit('_', 1)[-1]))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringRef.h751 std::pair<StringRef, StringRef> rsplit(StringRef Separator) const { in rsplit() function
804 std::pair<StringRef, StringRef> rsplit(char Separator) const { in rsplit() function
805 return rsplit(StringRef(&Separator, 1)); in rsplit()
/third_party/mesa3d/src/util/perf/
Du_trace.py324 hdr = os.path.basename(cpath).rsplit('.', 1)[0] + '.h'
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dcommon.py65 target_split = target.rsplit(':', 1)
71 target_split = target.rsplit('#', 1)
/third_party/node/tools/gyp/pylib/gyp/
Dcommon.py67 target_split = target.rsplit(":", 1)
73 target_split = target.rsplit("#", 1)
/third_party/unity/auto/
Dunity_to_junit.py70 … file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
/third_party/cJSON/tests/unity/auto/
Dunity_to_junit.py70 … file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
/third_party/python/Lib/test/
Dtest_profile.py43 mod_name = testfunc.__module__.rsplit('.', 1)[1]
/third_party/python/Lib/email/
D_policybase.py95 doc = doc.rsplit('\n', 1)[0]

1234