Home
last modified time | relevance | path

Searched refs:lne (Results 1 – 25 of 2445) sorted by relevance

12345678910>>...98

/dports/deskutils/calibre/calibre-src-5.34.0/recipes/
H A Dla_nueva.recipe8 www.lne.es
52 (u'General', u'http://www.lne.es/elementosInt/rss/55'),
59 (u'Sucesos', u'http://www.lne.es/elementosInt/rss/48'),
60 (u'Galeria', u'http://www.lne.es/elementosInt/rss/51'),
62 (u'Motor', u'http://www.lne.es/elementosInt/rss/62'),
65 (u'Oviedo', u'http://www.lne.es/elementosInt/rss/31'),
66 (u'Gijon', u'http://www.lne.es/elementosInt/rss/35'),
67 (u'Aviles', u'http://www.lne.es/elementosInt/rss/36'),
68 (u'Nalon', u'http://www.lne.es/elementosInt/rss/37'),
70 (u'Caudal', u'http://www.lne.es/elementosInt/rss/39'),
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/projectexplorer/
H A Dldparser.cpp63 QString lne = rightTrimmed(line); in handleLine() local
64 if (!lne.isEmpty() && !lne.at(0).isSpace() && !m_incompleteTask.isNull()) { in handleLine()
69 if (lne.startsWith(QLatin1String("TeamBuilder ")) in handleLine()
70 || lne.startsWith(QLatin1String("distcc[")) in handleLine()
76 if (lne.startsWith("Undefined symbols for architecture") && lne.endsWith(":")) { in handleLine()
81 m_incompleteTask.details.append(lne); in handleLine()
93 if (lne.startsWith("collect2:") || lne.startsWith("collect2.exe:")) { in handleLine()
98 QRegularExpressionMatch match = m_ranlib.match(lne); in handleLine()
105 match = m_regExpGccNames.match(lne); in handleLine()
119 match = m_regExpLinker.match(lne); in handleLine()
[all …]
H A Dclangparser.cpp67 const QString lne = rightTrimmed(line); in handleLine() local
68 QRegularExpressionMatch match = m_summaryRegExp.match(lne); in handleLine()
75 match = m_commandRegExp.match(lne); in handleLine()
78 createOrAmendTask(taskType(match.captured(3)), match.captured(4), lne); in handleLine()
82 match = m_inLineRegExp.match(lne); in handleLine()
90 createOrAmendTask(Task::Unknown, lne.trimmed(), lne, false, in handleLine()
95 match = m_messageRegExp.match(lne); in handleLine()
109 createOrAmendTask(taskType(match.captured(8)), match.captured(9), lne, false, in handleLine()
114 match = m_codesignRegExp.match(lne); in handleLine()
117 createOrAmendTask(Task::Error, match.captured(1), lne, false); in handleLine()
[all …]
H A Dgccparser.cpp154 const QString lne = rightTrimmed(line); in handleLine() local
163 if (lne.startsWith(QLatin1String("ERROR:")) || lne == QLatin1String("* cpp failed")) { in handleLine()
164 createOrAmendTask(Task::Error, lne, lne); in handleLine()
182 match = m_regExpIncluded.match(lne); in handleLine()
184 match = m_regExpInlined.match(lne); in handleLine()
191 … createOrAmendTask(Task::Unknown, lne.trimmed(), lne, false, filePath, lineNo, column, linkSpecs); in handleLine()
195 match = m_regExpCc1plus.match(lne); in handleLine()
207 match = m_regExp.match(lne); in handleLine()
231 match = m_regExpScope.match(lne); in handleLine()
243 if ((lne.startsWith(' ') && !m_currentTask.isNull()) || isContinuation(lne)) { in handleLine()
[all …]
H A Dxcodebuildparser.cpp57 const QString lne = rightTrimmed(line); in handleLine() local
68 match = m_successRe.match(lne); in handleLine()
73 if (lne.endsWith(QLatin1String(signatureChangeEndsWithPattern))) { in handleLine()
74 const int filePathEndPos = lne.size() in handleLine()
79 lne.left(filePathEndPos)))); in handleLine()
88 const QRegularExpressionMatch match = m_failureRe.match(lne); in handleLine()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/baremetal/
H A Diarewparser.cpp150 if (!lne.startsWith("Error in command line")) in parseErrorInCommandLineMessage()
173 const QString lne = rightTrimmed(line); in handleLine() local
177 || parseErrorMessage1(lne); in handleLine()
185 if (parseErrorOrFatalErrorDetailsMessage1(lne)) in handleLine()
187 if (parseErrorOrFatalErrorDetailsMessage2(lne)) in handleLine()
194 if (lne.endsWith(']')) { in handleLine()
195 const QString lastPart = lne.left(lne.size() - 1); in handleLine()
200 m_filePathParts.push_back(lne); in handleLine()
204 if (m_expectSnippet && lne.startsWith(' ')) { in handleLine()
206 m_snippets.push_back(lne); in handleLine()
[all …]
H A Dkeilparser.cpp76 const QRegularExpressionMatch match = re.match(lne); in parseArmWarningOrErrorDetailsMessage()
197 QString lne = rightTrimmed(line); in handleLine() local
208 if (parseMcs51FatalErrorMessage2(lne)) in handleLine()
220 if (hasDetailsEntry(lne) || hasDetailsPointer(lne)) { in handleLine()
221 lne.replace(0, 4, " "); in handleLine()
222 m_snippets.push_back(lne); in handleLine()
228 if (lne.startsWith(' ')) { in handleLine()
229 m_snippets.push_back(lne); in handleLine()
241 if (parseArmErrorOrFatalErorrMessage(lne)) in handleLine()
244 if (lne.startsWith(' ')) { in handleLine()
[all …]
H A Dkeilparser.h48 Result parseArmWarningOrErrorDetailsMessage(const QString &lne);
49 bool parseArmErrorOrFatalErorrMessage(const QString &lne);
52 Result parseMcs51WarningOrErrorDetailsMessage1(const QString &lne);
53 Result parseMcs51WarningOrErrorDetailsMessage2(const QString &lne);
54 bool parseMcs51WarningOrFatalErrorMessage(const QString &lne);
55 bool parseMcs51FatalErrorMessage2(const QString &lne);
H A Diarewparser.h49 bool parseErrorOrFatalErrorDetailsMessage1(const QString &lne);
50 bool parseErrorOrFatalErrorDetailsMessage2(const QString &lne);
51 Result parseWarningOrErrorOrFatalErrorDetailsMessage1(const QString &lne);
52 bool parseErrorInCommandLineMessage(const QString &lne);
53 bool parseErrorMessage1(const QString &lne);
H A Dsdccparser.cpp82 const QString lne = rightTrimmed(line); in handleLine() local
88 match = re.match(lne); in handleLine()
105 match = re.match(lne); in handleLine()
122 match = re.match(lne); in handleLine()
132 match = re.match(lne); in handleLine()
142 amendDescription(lne); in handleLine()
/dports/graphics/grx/grx249/src/fdrivers/
H A Dgenstrch.c70 _GR_lineData lne; in stretch() local
77 if(!XLineInit(&lne,0,sx,dw,sw)) { in stretch()
86 xsrc[lne.x] = min(lne.y,maxi); in stretch()
87 DBGPRINTF(DBG_DRIVER,("xsrc[%d] = %d\n",lne.x,xsrc[lne.x])); in stretch()
88 XLineStep(&lne); in stretch()
89 } while (!XLineCheckDone(&lne)); in stretch()
91 if(!XLineInit(&lne,dy,sy,dh,sh)) { in stretch()
99 int y = min(lne.y,maxi); in stretch()
103 putscl(dx,lne.x,dw,pixels,op); in stretch()
104 XLineStep(&lne); in stretch()
[all …]
/dports/devel/doxygen/doxygen-1.9.3/src/
H A Dindex.cpp951 bool addToIndex = lne==0 || lne->visible(); in writeHierarchicalIndex()
1058 bool addToIndex = lne==0 || lne->visible(); in writeHierarchicalInterfaceIndex()
1164 bool addToIndex = lne==0 || lne->visible(); in writeHierarchicalExceptionIndex()
1377 bool addToIndex = lne==0 || lne->visible(); in writeFileIndex()
1817 bool addToIndex = lne==0 || lne->visible(); in writeNamespaceIndex()
2232 bool addToIndex = lne==0 || lne->visible(); in writeAlphabeticalIndex()
2261 bool addToIndex = lne==0 || lne->visible(); in writeAlphabeticalInterfaceIndex()
2290 bool addToIndex = lne==0 || lne->visible(); in writeAlphabeticalStructIndex()
2319 bool addToIndex = lne==0 || lne->visible(); in writeAlphabeticalExceptionIndex()
2382 bool addToIndex = lne==0 || lne->visible(); in writeAnnotatedIndexGeneric()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmakeprojectmanager/
H A Dqmakeparser.cpp46 QString lne = rightTrimmed(line); in handleLine() local
47 QRegularExpressionMatch match = m_error.match(lne); in handleLine()
76 if (lne.startsWith(QLatin1String("Project ERROR: ")) in handleLine()
77 || lne.startsWith(QLatin1String("ERROR: "))) { in handleLine()
78 const QString description = lne.mid(lne.indexOf(QLatin1Char(':')) + 2); in handleLine()
82 if (lne.startsWith(QLatin1String("Project WARNING: ")) in handleLine()
83 || lne.startsWith(QLatin1String("WARNING: "))) { in handleLine()
84 const QString description = lne.mid(lne.indexOf(QLatin1Char(':')) + 2); in handleLine()
/dports/audio/zmusic/ZMusic-1.1.8/thirdparty/wildmidi/
H A Dwm_error.cpp44 void _WM_ERROR(const char * func, unsigned int lne, int wmerno, in _WM_ERROR() argument
70 _WM_ERROR_NEW("libWildMidi(%s:%u): ERROR %s %s (%s)\n", func, lne, in _WM_ERROR()
73 _WM_ERROR_NEW("libWildMidi(%s:%u): ERROR %s %s\n", func, lne, in _WM_ERROR()
78 _WM_ERROR_NEW("libWildMidi(%s:%u): ERROR %s (%s)\n", func, lne, in _WM_ERROR()
81 _WM_ERROR_NEW("libWildMidi(%s:%u): ERROR %s\n", func, lne, in _WM_ERROR()
/dports/games/zdoom/zdoom-2.8.1/src/wildmidi/
H A Dwm_error.cpp44 void _WM_ERROR(const char * func, unsigned int lne, int wmerno, in _WM_ERROR() argument
71 lne, errors[wmerno], wmfor, strerror(error)); in _WM_ERROR()
73 Printf(TEXTCOLOR_RED "libWildMidi(%s:%u): ERROR %s %s\n", func, lne, in _WM_ERROR()
78 Printf(TEXTCOLOR_RED "libWildMidi(%s:%u): ERROR %s (%s)\n", func, lne, in _WM_ERROR()
81 Printf(TEXTCOLOR_RED "libWildMidi(%s:%u): ERROR %s\n", func, lne, in _WM_ERROR()
/dports/security/nmap/nmap-7.91/
H A Dchecklibs.sh20 … PCRE_LATEST=$(curl -ls $PCRE_SOURCE | perl -lne 'if(/pcre-(\d+.\d+).tar.gz$/){print $1}' | newest)
32 … PCAP_LATEST=$(curl -s $PCAP_SOURCE | perl -lne 'if(/libpcap-([\d.]+).tar.gz/){print $1}' | newest)
55 LUA_LATEST=$(curl -s $LUA_SOURCE | perl -lne 'if(/lua-([\d.]+).tar.gz/){print $1}' | newest)
67 …LINEAR_LATEST=$(curl -s $LINEAR_SOURCE | perl -lne 'if(/The current release \(([^)]+)\) of <b>LIBL…
74 ZLIB_LATEST=$(curl -s $ZLIB_SOURCE | perl -lne 'if(/zlib-([\d.]+).tar.gz/){print $1}' | newest)
86 …LIBSSH2_LATEST=$(curl -s $LIBSSH2_SOURCE | perl -lne 'if(/libssh2-([\d.]+).tar.gz/){print $1}' | n…
/dports/audio/wildmidi/wildmidi-wildmidi-0.4.2/src/
H A Dwm_error.c70 void _WM_GLOBAL_ERROR(const char *func, int lne, int wmerno, const char *wmfor, int error) { in _WM_GLOBAL_ERROR() argument
86 func, lne, errors[wmerno]); in _WM_GLOBAL_ERROR()
89 func, lne, wmfor, errors[wmerno]); in _WM_GLOBAL_ERROR()
94 func, lne, errors[wmerno], strerror(error)); in _WM_GLOBAL_ERROR()
97 func, lne, wmfor, errors[wmerno], strerror(error)); in _WM_GLOBAL_ERROR()
/dports/www/bluefish/bluefish-2.2.12/src/plugin_entities/po/
H A Dsk.po98 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
103 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
108 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
113 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
118 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
123 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
128 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
133 msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
137 #~ msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
141 #~ msgstr "/Úpravy/Prepísať špeciálne/Na _Veľké písmena"
/dports/lang/mono/mono-5.10.1.57/mono/mini/
H A Ddebug-mini.c40 MonoDebugLineNumberEntry lne; in record_line_number() local
42 lne.native_offset = address; in record_line_number()
43 lne.il_offset = offset; in record_line_number()
45 g_array_append_val (info->line_numbers, lne); in record_line_number()
172 g_assert (lne->offset <= header->code_size); in mono_debug_add_vg_method()
174 if ((addresses [lne->offset] == 0) || (lne->address < addresses [lne->offset])) in mono_debug_add_vg_method()
175 addresses [lne->offset] = lne->address; in mono_debug_add_vg_method()
494 prev_offset = lne->il_offset; in mono_debug_serialize_debug_info()
495 prev_native_offset = lne->native_offset; in mono_debug_serialize_debug_info()
588 lne->native_offset = native_offset; in deserialize_debug_info()
[all …]
/dports/www/bluefish/bluefish-2.2.12/src/plugin_htmlbar/po/
H A Dsk.po1102 msgstr "_Vertikálne"
1107 msgstr "_Vertikálne"
2374 msgstr "_Horizontálne"
2378 msgstr "_Vertikálne"
2462 #~ msgstr "/Značky/Š_peciálne"
2514 #~ msgstr "/Značky/Špeciálne/Iné/«"
2518 #~ msgstr "/Značky/Špeciálne/Iné/»"
2522 #~ msgstr "/Značky/Špeciálne/Iné/®"
2589 #~ msgstr "_Vertikálne zarovnávanie:"
2836 #~ msgstr "/Značky/Špeciálne/Me_na"
[all …]
/dports/multimedia/obs-studio/obs-studio-27.1.3/plugins/obs-transitions/data/locale/
H A Dsk-SK.ini36 LumaWipe.Type.BarndoorHorizontal="Vráta - Horizontálne"
38 LumaWipe.Type.BarndoorVertical="Vráta - Vertikálne"
39 LumaWipe.Type.BlindsHorizontal="Rolety - Horizontálne"
51 LumaWipe.Type.LinearHorizontal="Lineárny - Horizontálne"
54 LumaWipe.Type.LinearVertical="Lineárny - Vertikálne"
62 LumaWipe.Type.StripsHorizontal="Pásiky Horizontálne"
63 LumaWipe.Type.StripsVertical="Pásiky Vertikálne"
/dports/lang/newlisp/newlisp-10.7.5/modules/
H A Dsmtp.lsp101 (dolist (lne (parse mail-body "\r\n"))
102 (if (starts-with lne ".")
103 (net-send-get-result (append "." lne))
104 (net-send-get-result lne)))
/dports/lang/slib/slib-3b6/
H A Dhtml4each.scm98 (let loop ((lne (substring line idx (string-length line)))
101 (define edx (or (eof-object? lne)
103 (string-index lne quot)
105 (string-index lne #\" #\' #\>)
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/link/internal/ld/
H A Ddwarf_test.go1142 var lne dwarf.LineEntry
1221 var lne dwarf.LineEntry
1360 var lne dwarf.LineEntry
1362 err := lnrdr.Next(&lne)
1366 rows = append(rows, lne)
1370 if lne.Address < lowpc || lne.Address > highpc {
1435 var lne dwarf.LineEntry
1444 if lne.EndSequence {
1447 if lne.Address == lastAddr && (lne.File.Name != lastFile || lne.Line != lastLine) {
1450 lastAddr = lne.Address
[all …]
/dports/editors/calligra/calligra-3.2.1/po/sk/
H A Dcalligrastage.po1357 msgstr "Vetrák von vertikálne"
1367 msgstr "Vetrák dnu vertikálne"
1392 msgstr "Paralelne vertikálne"
1397 msgstr "Paralelne diagonálne"
1402 msgstr "Oproti vertikálne"
1407 msgstr "Oproti horizontálne"
1696 msgstr "Vertikálne"
1708 msgstr "Horizontálne"
1733 msgstr "Vertikálne obrátene"
1826 msgstr "Diagonálne"
[all …]

12345678910>>...98