Home
last modified time | relevance | path

Searched refs:rsplit (Results 1 - 25 of 76) sorted by relevance

1234

/third_party/node/deps/v8/third_party/markupsafe/
H A 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/
H A 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/skia/third_party/externals/markupsafe/
H A 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/python/Tools/stringbench/
H A Dstringbench.py553 #### Same for rsplit(s, 1)
555 @bench('("A"*1000).rsplit("A", 1)', "early match, single character", 1000)
559 s1_rsplit = s1.rsplit
563 @bench('("A"*1000).rsplit("B", 1)', "no match, single character", 1000)
567 s1_rsplit = s1.rsplit
572 @bench('("AB"*1000).rsplit("AB", 1)', "early match, two characters", 1000)
576 s1_rsplit = s1.rsplit
580 @bench('("AB"*1000).rsplit("BC", 1)', "no match, two characters", 1000)
584 s1_rsplit = s1.rsplit
588 @bench('("C"+"AB"*300).rsplit("C
[all...]
/third_party/markupsafe/
H A D__init__.py129 def rsplit( # type: ignore[override] member in Markup
132 return [self.__class__(v) for v in super().rsplit(sep, maxsplit)]
134 rsplit.__doc__ = str.rsplit.__doc__
/third_party/node/deps/v8/third_party/test262-harness/src/
H A D_packager.py181 chapterName = chapter.rsplit(os.path.sep, 1)[1]
199 testName=test.rsplit(".", 1)[0]
200 testName=testName.rsplit(os.path.sep, 1)[1]
/third_party/skia/tools/skpbench/
H A D_adb_path.py20 return pathname.rsplit('/', maxsplit=1)[-1]
/third_party/skia/infra/bots/assets/cmake_linux/
H A Dcreate.py25 VERSION.rsplit('.', 1)[0], VERSION)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCSymbolXCOFF.h58 std::tie(lhs, rhs) = name.rsplit('['); in getUnqualifiedName()
/third_party/python/Lib/test/test_zoneinfo/data/
H A Dupdate_test_data.py63 _, version = version_line.strip().rsplit(" ", 1)
/third_party/protobuf/python/google/protobuf/
H A Dproto_builder.py118 package, name = full_name.rsplit('.', 1)
/third_party/skia/third_party/externals/angle2/scripts/
H A 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringRef.h751 std::pair<StringRef, StringRef> rsplit(StringRef Separator) const {
804 std::pair<StringRef, StringRef> rsplit(char Separator) const {
805 return rsplit(StringRef(&Separator, 1));
/third_party/vk-gl-cts/scripts/
H A Dconvert_case_list_to_xml.py57 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1])
/third_party/cJSON/tests/unity/auto/
H A Dunity_to_junit.py70 file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A D_manylinux.py87 _, version = version_string.rsplit()
/third_party/mesa3d/src/util/perf/
H A Du_trace.py460 hdr = os.path.basename(cpath).rsplit('.', 1)[0] + '.h'
/third_party/python/Lib/test/
H A Dtest_profile.py43 mod_name = testfunc.__module__.rsplit('.', 1)[1]
/third_party/unity/auto/
H A Dstylize_as_junit.py84 file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
/third_party/node/tools/gyp/pylib/gyp/
H A Dcommon.py61 # NOTE: rsplit is used to disambiguate the Windows drive letter separator.
62 target_split = target.rsplit(":", 1)
68 target_split = target.rsplit("#", 1)
H A DMSVSUtil.py57 parts = name.rsplit("#", 1)
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dcommon.py61 # NOTE: rsplit is used to disambiguate the Windows drive letter separator.
62 target_split = target.rsplit(":", 1)
68 target_split = target.rsplit("#", 1)
H A DMSVSUtil.py57 parts = name.rsplit("#", 1)
/third_party/python/Lib/email/
H A D_policybase.py95 doc = doc.rsplit('\n', 1)[0]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactorDebugInfo.cpp60 auto dirAndFile = llvm::StringRef(path).rsplit('\\'); in splitPath()
62 auto dirAndFile = llvm::StringRef(path).rsplit('/'); in splitPath()

Completed in 12 milliseconds

1234