Home
last modified time | relevance | path

Searched refs:lastSep (Results 1 – 25 of 182) sorted by relevance

12345678

/dports/lang/nim/nim-1.6.2/lib/std/
H A Dwordwrap.nim34 var lastSep = ""
44 lastSep.setLen 0
46 if s[k] notin {'\L', '\C'}: lastSep.add s[k]
47 if lastSep.len == 0:
48 lastSep.add ' '
51 spaceLeft = spaceLeft - olen(lastSep, 0, lastSep.len)
71 result.add(lastSep)
73 #lastSep.setLen(0)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/arrow/vendored/uriparser/
H A DUriFile.c77 const URI_CHAR * lastSep = input - 1; in URI_FUNC() local
112 if (lastSep + 1 < input) { in URI_FUNC()
115 const int charsToCopy = (int)(input - (lastSep + 1)); in URI_FUNC()
116 memcpy(output, lastSep + 1, charsToCopy * sizeof(URI_CHAR)); in URI_FUNC()
119 output = URI_FUNC(EscapeEx)(lastSep + 1, input, output, in URI_FUNC()
133 lastSep = input; in URI_FUNC()
138 lastSep = input; in URI_FUNC()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/arrow/vendored/uriparser/
H A DUriFile.c77 const URI_CHAR * lastSep = input - 1; in URI_FUNC() local
112 if (lastSep + 1 < input) { in URI_FUNC()
115 const int charsToCopy = (int)(input - (lastSep + 1)); in URI_FUNC()
116 memcpy(output, lastSep + 1, charsToCopy * sizeof(URI_CHAR)); in URI_FUNC()
119 output = URI_FUNC(EscapeEx)(lastSep + 1, input, output, in URI_FUNC()
133 lastSep = input; in URI_FUNC()
138 lastSep = input; in URI_FUNC()
/dports/net/uriparser/uriparser-0.9.6/src/
H A DUriFile.c77 const URI_CHAR * lastSep = input - 1;
112 if (lastSep + 1 < input) {
115 const int charsToCopy = (int)(input - (lastSep + 1));
116 memcpy(output, lastSep + 1, charsToCopy * sizeof(URI_CHAR));
119 output = URI_FUNC(EscapeEx)(lastSep + 1, input, output,
133 lastSep = input;
138 lastSep = input;
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/arrow/vendored/uriparser/
H A DUriFile.c77 const URI_CHAR * lastSep = input - 1; in URI_FUNC() local
112 if (lastSep + 1 < input) { in URI_FUNC()
115 const int charsToCopy = (int)(input - (lastSep + 1)); in URI_FUNC()
116 memcpy(output, lastSep + 1, charsToCopy * sizeof(URI_CHAR)); in URI_FUNC()
119 output = URI_FUNC(EscapeEx)(lastSep + 1, input, output, in URI_FUNC()
133 lastSep = input; in URI_FUNC()
138 lastSep = input; in URI_FUNC()
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A D_FindFirst.cpp28 const char* lastSep = strrchr(name,'/'); in _findfirst() local
29 if(!lastSep) in _findfirst()
38 filter = lastSep+1; in _findfirst()
39 unsigned sepIndex = lastSep - name; in _findfirst()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/shell/
H A DPathData.java396 int lastSep = findLongestDirPrefix(cwdPath, uriPath, isDir); in relativize() local
400 if (lastSep < uriPath.length()) { in relativize()
401 relPath.append(uriPath.substring(lastSep+1)); in relativize()
405 if (lastSep < cwdPath.length()) { in relativize()
406 while (lastSep != -1) { in relativize()
409 lastSep = cwdPath.indexOf(Path.SEPARATOR, lastSep+1); in relativize()
426 int lastSep = -1; in findLongestDirPrefix() local
429 if (cwd.charAt(i) == Path.SEPARATOR_CHAR) lastSep = i; in findLongestDirPrefix()
431 return lastSep; in findLongestDirPrefix()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DPathDocFileFactory.java304 int lastSep = -1; in getFileObjectForOutput() local
308 lastSep = i; in getFileObjectForOutput()
309 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
314 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
315 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
H A DStandardDocFileFactory.java307 int lastSep = -1; in getFileObjectForOutput() local
311 lastSep = i; in getFileObjectForOutput()
312 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
317 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
318 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DPathDocFileFactory.java304 int lastSep = -1; in getFileObjectForOutput() local
308 lastSep = i; in getFileObjectForOutput()
309 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
314 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
315 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
H A DStandardDocFileFactory.java307 int lastSep = -1; in getFileObjectForOutput() local
311 lastSep = i; in getFileObjectForOutput()
312 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
317 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
318 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java366 int lastSep = -1; in getFileObjectForOutput() local
370 lastSep = i; in getFileObjectForOutput()
371 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
376 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
377 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java366 int lastSep = -1; in getFileObjectForOutput() local
370 lastSep = i; in getFileObjectForOutput()
371 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
376 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
377 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java367 int lastSep = -1; in getFileObjectForOutput() local
371 lastSep = i; in getFileObjectForOutput()
372 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
377 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
378 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java366 int lastSep = -1; in getFileObjectForOutput() local
370 lastSep = i; in getFileObjectForOutput()
371 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
376 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
377 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java366 int lastSep = -1; in getFileObjectForOutput() local
370 lastSep = i; in getFileObjectForOutput()
371 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
376 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
377 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java367 int lastSep = -1; in getFileObjectForOutput() local
371 lastSep = i; in getFileObjectForOutput()
372 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
377 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
378 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java366 int lastSep = -1; in getFileObjectForOutput() local
370 lastSep = i; in getFileObjectForOutput()
371 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
376 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
377 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DStandardDocFileFactory.java372 int lastSep = -1; in getFileObjectForOutput() local
376 lastSep = i; in getFileObjectForOutput()
377 } else if (i == lastSep + 1 && !Character.isJavaIdentifierStart(ch) in getFileObjectForOutput()
382 String pkg = (lastSep == -1) ? "" : p.substring(0, lastSep); in getFileObjectForOutput()
383 String rest = p.substring(lastSep + 1); in getFileObjectForOutput()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/reader/impl/completer/
H A DFileNameCompleter.java59 int lastSep = buffer.lastIndexOf(sep); in complete() local
60 if (lastSep >= 0) { in complete()
61 curBuf = buffer.substring(0, lastSep + 1); in complete()

12345678