Home
last modified time | relevance | path

Searched refs:lastWord (Results 1 – 25 of 437) sorted by relevance

12345678910>>...18

/dports/hebrew/he2/he2-0.61/he2/
H A DhebSegment.cxx93 aString lastWord ; in hebSegment() local
153 lastWord="" ; in hebSegment()
282 lastWord="" ; in hebSegment()
330 lastWord="" ; in hebSegment()
416 … (lastWord.length() && (!strcmp(lastWord.at(lastWord.length()-1,lastWord.length())," "))) || in hebSegment()
417 … (lastWord.length() && (!strcmp(lastWord.at(lastWord.length()-1,lastWord.length()),"-"))) || in hebSegment()
418 (lastWord.length() && (strcmp(lastWord.at(0,1), " ")))) { in hebSegment()
446 lastWord = *buffer + lastWord; in hebSegment()
465 ((!strcmp(lastWord.at(lastWord.length()-1, lastWord.length()), " ")) || in hebSegment()
480 lastWord = (char )token + lastWord; in hebSegment()
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/butcher-1.3.3.2/src/UI/Butcher/Monadic/
H A DInteractive.hs50 Just (_, parent) | null pcRest && not (null lastWord) -> parent
59 , lastWord `isPrefixOf` r
60 , lastWord /= r
64 , lastWord `isPrefixOf` s
65 , lastWord /= s
85 Just (_, parent) | null pcRest && not (null lastWord) -> parent
94 , lastWord `isPrefixOf` r
95 , lastWord /= r
100 CompletionString s -> lastWord `isPrefixOf` s && lastWord /= s
143 , lastWord `isPrefixOf` s
[all …]
/dports/www/dillo2/dillo-3.0.5/dw/
H A Dtextblock_linebreaking.cc376 line->lastWord = lastWord; in addLine()
425 for (int i = firstWord; i <= lastWord; i++) { in addLine()
443 for (int i = firstWord; i <= lastWord; i++) { in accumulateWordExtremes()
445 bool atLastWord = i == lastWord; in accumulateWordExtremes()
698 Word *w = words->getRef (lastWord); in searchMinBap()
708 pos = lastWord; in searchMinBap()
818 corrDiffMin = lastWord->origSpace - lastWord->hyphenWidth; in handleWordExtremes()
820 corrDiffMax = lastWord->origSpace - lastWord->hyphenWidth; in handleWordExtremes()
843 lastPar->lastWord = wordIndex; in handleWordExtremes()
1137 Word *lastWord = words->getRef (line->lastWord); in alignLine() local
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/libdruntime/core/internal/gc/
H A Dbits.d171 size_t lastWord = (last >> BITS_SHIFT); in RangeVars() local
225 if (firstWord == lastWord) in copyRangeZ()
232 copyWords(firstWord, lastWord, source); in copyRangeZ()
235 data[lastWord] = (data[lastWord] & ~mask) | (source[lastWord - firstWord] & mask); in copyRangeZ()
244 data[lastWord] = (data[lastWord] & ~mask) | (src & mask); in copyRangeZ()
311 if (firstWord == lastWord) in setRangeZ()
319 setWords(firstWord + 1, lastWord); in setRangeZ()
321 data[lastWord] |= mask; in setRangeZ()
342 if (firstWord == lastWord) in clrRangeZ()
350 clearWords(firstWord + 1, lastWord); in clrRangeZ()
[all …]
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/alertmanager/ui/app/src/Utils/
H A DString.elm31 (Err lastWord) :: restLinkified ->
33 linkifyHelp restWords (Ok word :: Err (lastWord ++ " ") :: restLinkified)
35 (Ok lastWord) :: restLinkified ->
44 (Err lastWord) :: restLinkified ->
46 linkifyHelp restWords (Err (lastWord ++ " " ++ word) :: restLinkified)
48 (Ok lastWord) :: restLinkified ->
/dports/devel/icu-lx/icu/source/test/intltest/
H A Dthcoll.cpp98 UnicodeString lastWord, word; in TestNamesList() local
110 if (lastWord.length() > 0) { in TestNamesList()
111 Collator::EComparisonResult result = coll->compare(lastWord, word); in TestNamesList()
112 doTest(coll, lastWord, word, result); in TestNamesList()
114 lastWord = word; in TestNamesList()
145 UnicodeString lastWord, word; in TestDictionary() local
157 if (lastWord.length() > 0) { in TestDictionary()
158 int32_t result = coll->compare(lastWord, word); in TestDictionary()
167 + " compare(" + IntlTest::prettify(lastWord, str); in TestDictionary()
173 coll->getCollationKey(lastWord, k1, status); in TestDictionary()
[all …]
/dports/devel/icu/icu/source/test/intltest/
H A Dthcoll.cpp98 UnicodeString lastWord, word; in TestNamesList() local
110 if (lastWord.length() > 0) { in TestNamesList()
111 Collator::EComparisonResult result = coll->compare(lastWord, word); in TestNamesList()
112 doTest(coll, lastWord, word, result); in TestNamesList()
114 lastWord = word; in TestNamesList()
145 UnicodeString lastWord, word; in TestDictionary() local
157 if (lastWord.length() > 0) { in TestDictionary()
158 int32_t result = coll->compare(lastWord, word); in TestDictionary()
167 + " compare(" + IntlTest::prettify(lastWord, str); in TestDictionary()
173 coll->getCollationKey(lastWord, k1, status); in TestDictionary()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/runtime/
H A DBitVector.java164 final int lastWord = (int)(length >> BITSHIFT); in setTo() local
166 Arrays.fill(bits, 0, lastWord, ~0L); in setTo()
169 bits[lastWord] |= lastBits; in setTo()
266 final int lastWord = (int)(toIndex - 1 >> BITSHIFT); in setRange() local
269 if (firstWord == lastWord) { in setRange()
273 Arrays.fill(bits, firstWord + 1, lastWord, ~0L); in setRange()
274 bits[lastWord] |= lastBits; in setRange()
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/kubectl/pkg/explain/
H A Dformatter.go109 func shouldStartNewLine(lastWord, str string) bool { argument
111 if strings.HasSuffix(lastWord, ":") {
136 lastWord := ""
139 lastWord = ""
162 if shouldStartNewLine(lastWord, str) {
167 lastWord = word
/dports/sysutils/helm/helm-3.5.2/vendor/k8s.io/kubectl/pkg/explain/
H A Dformatter.go109 func shouldStartNewLine(lastWord, str string) bool { argument
111 if strings.HasSuffix(lastWord, ":") {
136 lastWord := ""
139 lastWord = ""
162 if shouldStartNewLine(lastWord, str) {
167 lastWord = word
/dports/editors/o/o-2.46.0/vendor/github.com/xyproto/mode/mode-da41b2c7708c/
H A Dcontents.go31 lastWord := words[len(words)-1]
32 if strings.Contains(lastWord, "/") {
33 words = strings.Split(lastWord, "/")
34 lastWord = words[len(words)-1]
36 switch lastWord {
/dports/editors/o/o-2.46.0/vendor/github.com/xyproto/syntax/syntax-ca482ff0125a/vendor/github.com/xyproto/mode/
H A Dcontents.go31 lastWord := words[len(words)-1]
32 if strings.Contains(lastWord, "/") {
33 words = strings.Split(lastWord, "/")
34 lastWord = words[len(words)-1]
36 switch lastWord {
/dports/editors/o/o-2.46.0/vendor/github.com/xyproto/mode/
H A Dcontents.go31 lastWord := words[len(words)-1]
32 if strings.Contains(lastWord, "/") {
33 words = strings.Split(lastWord, "/")
34 lastWord = words[len(words)-1]
36 switch lastWord {
/dports/multimedia/mpeg_encode/mpeg_encode/
H A Dbitio.c304 uint32 lastWord; local
348 lastWord = ptr->bits[ptr->currword];
354 charBuf[0] = (lastWord >> 24);
357 lastWord = (lastWord << 8);
397 uint32 lastWord; local
438 lastWord = ptr->bits[ptr->currword];
444 charBuf[0] = (lastWord >> 24);
450 lastWord = (lastWord << 8);
/dports/science/afni/afni-AFNI_21.3.16/src/mpeg_encodedir/
H A Dbitio.c316 uint32 lastWord; local
360 lastWord = ptr->bits[ptr->currword];
366 charBuf[0] = (lastWord >> 24);
369 lastWord = (lastWord << 8);
409 uint32 lastWord; local
450 lastWord = ptr->bits[ptr->currword];
456 charBuf[0] = (lastWord >> 24);
462 lastWord = (lastWord << 8);
/dports/graphics/netpbm/netpbm-10.91.01/converter/ppm/ppmtompeg/
H A Dbitio.c339 uint32 lastWord; in Bitio_Flush() local
390 lastWord = ptr->bits[ptr->currword]; in Bitio_Flush()
396 charBuf[0] = (lastWord >> 24); in Bitio_Flush()
399 lastWord = (lastWord << 8); in Bitio_Flush()
446 uint32 lastWord; in Bitio_WriteToSocket() local
490 lastWord = ptr->bits[ptr->currword]; in Bitio_WriteToSocket()
496 charBuf[0] = (lastWord >> 24); in Bitio_WriteToSocket()
502 lastWord = (lastWord << 8); in Bitio_WriteToSocket()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/prometheus/alertmanager/ui/app/src/Utils/
H A DString.elm31 (Err lastWord) :: restLinkified ->
33 linkifyHelp restWords (Ok word :: Err (lastWord ++ " ") :: restLinkified)
44 (Err lastWord) :: restLinkified ->
46 linkifyHelp restWords (Err (lastWord ++ " " ++ word) :: restLinkified)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/prometheus/alertmanager/ui/app/src/Utils/
H A DString.elm31 (Err lastWord) :: restLinkified ->
33 linkifyHelp restWords (Ok word :: Err (lastWord ++ " ") :: restLinkified)
44 (Err lastWord) :: restLinkified ->
46 linkifyHelp restWords (Err (lastWord ++ " " ++ word) :: restLinkified)
/dports/math/cantor/cantor-21.12.3/src/backends/qalculate/
H A Dqalculatehighlighter.cpp68 QString lastWord = words[i-1].trimmed(); in highlightBlock() local
69 if ( !lastWord.isEmpty() && lastWord.at(lastWord.size()-1).isNumber() ) { in highlightBlock()

12345678910>>...18