Home
last modified time | relevance | path

Searched refs:secondSpace (Results 1 – 13 of 13) sorted by relevance

/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/musixtex/
H A Dmusixflx.lua424 local secondSpace = string.find(linebuf, " ", firstSpace+1)
425 if not secondSpace then -- NH: possibility that there is no second number in line
428 mulooseness[all_section] = string.sub(linebuf, firstSpace+1, secondSpace-1)
432 if secondSpace then
496 local secondSpace = string.find(linebuf, " ", firstSpace + 1)
542 local secondSpace = string.find(linebuf, " ", firstSpace+1)
543 if not secondSpace then
546 tempholdskip = string.sub(linebuf, firstSpace+1, secondSpace-3)
583 local secondSpace = string.find(linebuf, " ", firstSpace + 1)
585 typ = string.sub(linebuf, firstSpace+1, secondSpace-1)
[all …]
/dports/graphics/pecl-imagick/imagick-3.5.1/tests/
H A Dfunctions.inc27 $secondSpace = strpos($versionInstalledStringComplete, ' ', $firstSpace + 1);
28 if ($secondSpace === false) {
32 …$versionInstalledString = substr($versionInstalledStringComplete, $firstSpace + 1, $secondSpace - …
/dports/graphics/pecl-imagick-im7/imagick-3.5.1/tests/
H A Dfunctions.inc27 $secondSpace = strpos($versionInstalledStringComplete, ' ', $firstSpace + 1);
28 if ($secondSpace === false) {
32 …$versionInstalledString = substr($versionInstalledStringComplete, $firstSpace + 1, $secondSpace - …
/dports/java/icedtea-web/icedtea-web-1.6.2/plugin/icedteanp/java/sun/applet/
H A DPluginStreamHandler.java154 int secondSpace = message.indexOf(' ', firstSpace + 1); in readPair() local
155 if (secondSpace == -1) { in readPair()
159 array[1] = message.substring(firstSpace + 1, secondSpace); in readPair()
160 end = secondSpace + 1; in readPair()
/dports/devel/kf5-kio/kio-5.89.0/src/ioslaves/trash/
H A Dtrashsizecache.cpp126 const int secondSpace = line.indexOf(' ', firstSpace + 1); in calculateSizeAndLatestModDate() local
130 data.mtime = line.mid(firstSpace + 1, secondSpace - firstSpace - 1).toLongLong(); in calculateSizeAndLatestModDate()
131 dirCache.insert(line.mid(secondSpace + 1), data); in calculateSizeAndLatestModDate()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/thirdparty/com/jakewharton/disklrucache/
H A DDiskLruCache.java293 int secondSpace = line.indexOf(' ', keyBegin); in readJournalLine() local
295 if (secondSpace == -1) { in readJournalLine()
302 key = line.substring(keyBegin, secondSpace); in readJournalLine()
311 if (secondSpace != -1 && firstSpace == CLEAN.length() && line.startsWith(CLEAN)) { in readJournalLine()
312 String[] parts = line.substring(secondSpace + 1).split(" "); in readJournalLine()
316 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) { in readJournalLine()
318 } else if (secondSpace == -1 && firstSpace == READ.length() && line.startsWith(READ)) { in readJournalLine()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/thirdparty/com/jakewharton/disklrucache/
H A DDiskLruCache.java293 int secondSpace = line.indexOf(' ', keyBegin); in readJournalLine() local
295 if (secondSpace == -1) { in readJournalLine()
302 key = line.substring(keyBegin, secondSpace); in readJournalLine()
311 if (secondSpace != -1 && firstSpace == CLEAN.length() && line.startsWith(CLEAN)) { in readJournalLine()
312 String[] parts = line.substring(secondSpace + 1).split(" "); in readJournalLine()
316 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) { in readJournalLine()
318 } else if (secondSpace == -1 && firstSpace == READ.length() && line.startsWith(READ)) { in readJournalLine()
/dports/emulators/dolphin-emu/dolphin-3152428/Externals/xxhash/
H A Dxxhsum.c781 const char* const secondSpace = firstSpace + 1; in parseLine() local
786 if (firstSpace == NULL || *secondSpace != ' ') return ParseLine_invalidFormat; in parseLine()
815 parsedLine->filename = secondSpace + 1; in parseLine()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/xxHash/
H A Dxxhsum.c816 const char* const secondSpace = firstSpace + 1; in parseLine() local
821 if (firstSpace == NULL || *secondSpace != ' ') return ParseLine_invalidFormat; in parseLine()
850 parsedLine->filename = secondSpace + 1; in parseLine()
/dports/games/xboard-devel/xboard-f49e7e1/winboard/
H A Djaws.c938 int len, xPos, yPos, moveNr, secondSpace = 0, castle = 0, n; in SayMachineMove() local
956 if(messageText[len] == ' ') { if(++spaceCount == 2) secondSpace = len; } in SayMachineMove()
993 if(secondSpace) len = secondSpace; // position behind move in SayMachineMove()
/dports/games/xboard/xboard-4.9.1/winboard/
H A Djaws.c939 int len, xPos, yPos, moveNr, secondSpace = 0, castle = 0, n; in SayMachineMove() local
957 if(messageText[len] == ' ') { if(++spaceCount == 2) secondSpace = len; } in SayMachineMove()
994 if(secondSpace) len = secondSpace; // position behind move in SayMachineMove()
/dports/databases/pgroonga/pgroonga-2.3.4/vendor/xxHash/
H A Dxxhsum.c1272 { const char* const secondSpace = firstSpace + 1; in parseLine() local
1273 if (*secondSpace != ' ') return ParseLine_invalidFormat; in parseLine()
1315 parsedLine->filename = secondSpace + 1; in parseLine()
/dports/devel/kf5-kio/kio-5.89.0/src/ioslaves/http/
H A Dhttp.cpp898 const int secondSpace = response.indexOf(QLatin1Char(' '), firstSpace + 1); in codeFromResponse() local
903 return QStringView(response).mid(firstSpace + 1, secondSpace - firstSpace - 1).toInt(); in codeFromResponse()
905 return response.midRef(firstSpace + 1, secondSpace - firstSpace - 1).toInt(); in codeFromResponse()