| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/parse_py/ |
| H A D | ConfHandler.py | 18 from bb.parse import ParseError, resolve_file, ast, logger, handle 94 raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno) 98 … raise ParseError("Could not %s file %s: %s" % (error_out, fn, exc.strerror), parentfn, lineno) 100 raise ParseError("Error parsing %s: %s" % (fn, exc.strerror), parentfn, lineno) 192 raise ParseError("unparsed line: '%s'" % s, fn, lineno);
|
| H A D | BBHandler.py | 19 from .. import resolve_file, ast, logger, ParseError 131 …raise ParseError("Shell function %s is never closed" % __infunc__[0], __infunc__[1], __infunc__[2]) 133 raise ParseError("Leftover unparsed (incomplete?) data %s from %s" % __residue__, fn) 236 …raise ParseError("Task name '%s' contains a keyword which is not recommended/supported.\nPlease re…
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/parse/ |
| H A D | __init__.py | 29 class ParseError(Exception): class 108 raise ParseError("not a BitBake file", fn) 149 …raise ParseError("Unable to generate default variables from filename (too many underscores)", mypk…
|
| /OK3568_Linux_fs/yocto/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | parsing.py | 57 … raise ParseError("empty state: '%s' does not contain a valid bootchart" % ", ".join(paths)) 252 class ParseError(Exception): class 279 raise ParseError('expected a timed-block consisting a timestamp followed by data lines') 283 … raise ParseError("expected a timed-block, but timestamp '%s' is not an integer" % lines[0]) 527 raise ParseError("Invalid meminfo line \"%s\"" % line) 549 raise ParseError("Invalid monitor_disk line \"%s\"" % line) 782 raise ParseError("error: could not read tarfile '%s': %s." % (path, error))
|
| H A D | main.py | 177 except parsing.ParseError as ex:
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/ |
| H A D | qdeclarativegeocodemodel_p.h | 100 ParseError = QGeoCodeReply::ParseError, enumerator
|
| H A D | qdeclarativegeoroutemodel_p.h | 108 ParseError = QGeoRouteReply::ParseError, enumerator
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutereply/ |
| H A D | tst_qgeoroutereply.cpp | 110 QTest::newRow("error4") << QGeoRouteReply::ParseError << "Parse Error."; in constructor_error_data() 228 QTest::newRow("error4") << QGeoRouteReply::ParseError << "Parse Error."; in error_data()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/ |
| H A D | placesearchreply_esri.cpp | 118 setError(ParseError, tr("Response parse error")); in replyFinished() 125 setError(ParseError, tr("Response parse error")); in replyFinished()
|
| H A D | georoutereply_esri.cpp | 84 setError(QGeoRouteReply::ParseError, parser.errorString()); in networkReplyFinished()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocodereply/ |
| H A D | tst_qgeocodereply.cpp | 101 QTest::newRow("error4") << QGeoCodeReply::ParseError << "Parse Error."; in constructor_error_data() 171 QTest::newRow("error4") << QGeoCodeReply::ParseError << "Parse Error."; in error_data()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/ |
| H A D | qgeotiledmapreply_p.h | 68 ParseError, enumerator
|
| H A D | qgeoroutereply.h | 58 ParseError, enumerator
|
| H A D | qgeocodereply.h | 60 ParseError, enumerator
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/places/ |
| H A D | qplacereply.h | 56 ParseError, enumerator
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/ |
| H A D | qgeocodereplymapbox.cpp | 84 setError(ParseError, tr("Response parse error")); in onNetworkReplyFinished()
|
| H A D | qplacesearchsuggestionreplymapbox.cpp | 93 setError(ParseError, tr("Response parse error")); in onReplyFinished()
|
| H A D | qplacesearchreplymapbox.cpp | 174 setError(ParseError, tr("Response parse error")); in onReplyFinished()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/placesv2/ |
| H A D | qplacecontentreplyimpl.cpp | 89 setError(ParseError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, PARSE_ERROR)); in replyFinished()
|
| H A D | qplacesearchsuggestionreplyimpl.cpp | 85 setError(ParseError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, PARSE_ERROR)); in replyFinished()
|
| H A D | qplacesearchreplyhere.cpp | 95 setError(ParseError, QCoreApplication::translate(NOKIA_PLUGIN_CONTEXT_NAME, PARSE_ERROR)); in replyFinished()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/ |
| H A D | qgeocodereply_nokia.cpp | 123 setError(QGeoCodeReply::ParseError, in parseError()
|
| H A D | qgeoroutereply_nokia.cpp | 124 setError(QGeoRouteReply::ParseError, in parserError()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/ |
| H A D | bitbake-user-manual-hello.rst | 265 raise ParseError("Could not %(error_out)s file %(fn)s" % vars(), oldfn, lineno) 266 ParseError: ParseError in configuration INHERITs: Could not inherit file classes/base.bbclass 268 …ERROR: Unable to parse base: ParseError in configuration INHERITs: Could not inherit file classes/…
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/ |
| H A D | parse.py | 59 with self.assertRaises(bb.parse.ParseError):
|