Home
last modified time | relevance | path

Searched refs:lastSlash (Results 1 – 17 of 17) sorted by relevance

/third_party/flutter/skia/third_party/externals/icu/source/tools/genrb/
Drbutil.c33 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_dirname() local
35 if(lastSlash>filename) { in get_dirname()
36 uprv_strncpy(dirname, filename, (lastSlash - filename)); in get_dirname()
37 *(dirname + (lastSlash - filename)) = '\0'; in get_dirname()
49 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_basename() local
52 if(lastSlash>filename) { in get_basename()
53 uprv_strcpy(basename, lastSlash); in get_basename()
/third_party/skia/third_party/externals/icu/source/tools/genrb/
Drbutil.c33 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_dirname() local
35 if(lastSlash>filename) { in get_dirname()
36 uprv_strncpy(dirname, filename, (lastSlash - filename)); in get_dirname()
37 *(dirname + (lastSlash - filename)) = '\0'; in get_dirname()
49 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_basename() local
52 if(lastSlash>filename) { in get_basename()
53 uprv_strcpy(basename, lastSlash); in get_basename()
/third_party/node/deps/icu-small/source/tools/genrb/
Drbutil.c33 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_dirname() local
35 if(lastSlash>filename) { in get_dirname()
36 uprv_strncpy(dirname, filename, (lastSlash - filename)); in get_dirname()
37 *(dirname + (lastSlash - filename)) = '\0'; in get_dirname()
49 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_basename() local
52 if(lastSlash>filename) { in get_basename()
53 uprv_strcpy(basename, lastSlash); in get_basename()
/third_party/icu/icu4c/source/tools/genrb/
Drbutil.c33 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_dirname() local
35 if(lastSlash>filename) { in get_dirname()
36 uprv_strncpy(dirname, filename, (lastSlash - filename)); in get_dirname()
37 *(dirname + (lastSlash - filename)) = '\0'; in get_dirname()
49 const char *lastSlash = uprv_strrchr(filename, U_FILE_SEP_CHAR) + 1; in get_basename() local
52 if(lastSlash>filename) { in get_basename()
53 uprv_strcpy(basename, lastSlash); in get_basename()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DAnyPartial.cs66 int lastSlash = typeUrl.LastIndexOf('/'); in GetTypeName()
67 return lastSlash == -1 ? "" : typeUrl.Substring(lastSlash + 1); in GetTypeName()
/third_party/flutter/skia/tools/lottiecap/
Dlottiecap.js191 let lastSlash = shortenedName.lastIndexOf('/');
192 if (lastSlash !== -1) {
193 shortenedName = shortenedName.slice(lastSlash+1);
/third_party/skia/tools/lottiecap/
Dlottiecap.js191 let lastSlash = shortenedName.lastIndexOf('/');
192 if (lastSlash !== -1) {
193 shortenedName = shortenedName.slice(lastSlash+1);
/third_party/node/lib/
Dpath.js62 let lastSlash = -1;
74 if (lastSlash === i - 1 || dots === 1) {
90 lastSlash = i;
96 lastSlash = i;
107 res += `${separator}${StringPrototypeSlice(path, lastSlash + 1, i)}`;
109 res = StringPrototypeSlice(path, lastSlash + 1, i);
110 lastSegmentLength = i - lastSlash - 1;
112 lastSlash = i;
/third_party/skia/third_party/externals/angle2/util/posix/
Dcrash_handler_posix.cpp562 size_t lastSlash = resolvedModule.rfind('/');
563 ASSERT(lastSlash != std::string::npos);
564 resolvedModule = resolvedModule.substr(0, lastSlash + 1) + linkBuf;
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNumberFormat.java1483 int lastSlash = nsDesc.lastIndexOf("/"); in createInstance() local
1485 if ( lastSlash > firstSlash ) { in createInstance()
1487 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
1488 nsRuleSetName = nsDesc.substring(lastSlash+1); in createInstance()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DNumberFormat.java1395 int lastSlash = nsDesc.lastIndexOf("/"); in createInstance() local
1397 if ( lastSlash > firstSlash ) { in createInstance()
1399 nsRuleSetGroup = nsDesc.substring(firstSlash+1,lastSlash); in createInstance()
1400 nsRuleSetName = nsDesc.substring(lastSlash+1); in createInstance()
/third_party/node/deps/icu-small/source/i18n/
Dnumfmt.cpp1433 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); in makeInstance() local
1434 if ( lastSlash > firstSlash ) { in makeInstance()
1438 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
1439 nsRuleSetName.setTo(nsDesc,lastSlash+1); in makeInstance()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumfmt.cpp1429 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); in makeInstance() local
1430 if ( lastSlash > firstSlash ) { in makeInstance()
1434 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
1435 nsRuleSetName.setTo(nsDesc,lastSlash+1); in makeInstance()
/third_party/icu/icu4c/source/i18n/
Dnumfmt.cpp1433 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); in makeInstance() local
1434 if ( lastSlash > firstSlash ) { in makeInstance()
1438 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
1439 nsRuleSetName.setTo(nsDesc,lastSlash+1); in makeInstance()
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumfmt.cpp1433 int32_t lastSlash = nsDesc.lastIndexOf(gSlash); in makeInstance() local
1434 if ( lastSlash > firstSlash ) { in makeInstance()
1438 nsRuleSetGroup.setTo(nsDesc,firstSlash+1,lastSlash-firstSlash-1); in makeInstance()
1439 nsRuleSetName.setTo(nsDesc,lastSlash+1); in makeInstance()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_compiler.cpp1164 auto lastSlash = strrchr(selfPath, '\\'); in load_dxil_dll() local
1165 if (!lastSlash) { in load_dxil_dll()
1170 *(lastSlash + 1) = '\0'; in load_dxil_dll()
/third_party/typescript/src/harness/
DharnessIO.ts968 const lastSlash = ts.normalizeSlashes(fn).lastIndexOf("/"); constant
969 return fn.substr(lastSlash + 1).toLowerCase();