/third_party/node/deps/v8/third_party/markupsafe/ |
H A D | __init__.py | 115 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__.py | 115 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__.py | 115 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 D | stringbench.py | 553 #### 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__.py | 129 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.py | 181 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.py | 20 return pathname.rsplit('/', maxsplit=1)[-1]
|
/third_party/skia/infra/bots/assets/cmake_linux/ |
H A D | create.py | 25 VERSION.rsplit('.', 1)[0], VERSION)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCSymbolXCOFF.h | 58 std::tie(lhs, rhs) = name.rsplit('['); in getUnqualifiedName()
|
/third_party/python/Lib/test/test_zoneinfo/data/ |
H A D | update_test_data.py | 63 _, version = version_line.strip().rsplit(" ", 1)
|
/third_party/protobuf/python/google/protobuf/ |
H A D | proto_builder.py | 118 package, name = full_name.rsplit('.', 1)
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | export_targets.py | 273 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 D | StringRef.h | 751 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 D | convert_case_list_to_xml.py | 57 element.setAttribute("Name", testCase.casePath.rsplit(".", 2)[-1])
|
/third_party/cJSON/tests/unity/auto/ |
H A D | unity_to_junit.py | 70 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.py | 87 _, version = version_string.rsplit()
|
/third_party/mesa3d/src/util/perf/ |
H A D | u_trace.py | 460 hdr = os.path.basename(cpath).rsplit('.', 1)[0] + '.h'
|
/third_party/python/Lib/test/ |
H A D | test_profile.py | 43 mod_name = testfunc.__module__.rsplit('.', 1)[1]
|
/third_party/unity/auto/ |
H A D | stylize_as_junit.py | 84 file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | common.py | 61 # 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 D | MSVSUtil.py | 57 parts = name.rsplit("#", 1)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | common.py | 61 # 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 D | MSVSUtil.py | 57 parts = name.rsplit("#", 1)
|
/third_party/python/Lib/email/ |
H A D | _policybase.py | 95 doc = doc.rsplit('\n', 1)[0]
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | LLVMReactorDebugInfo.cpp | 60 auto dirAndFile = llvm::StringRef(path).rsplit('\\'); in splitPath() 62 auto dirAndFile = llvm::StringRef(path).rsplit('/'); in splitPath()
|