Symbol: ParseException
headers/private/shared/ExpressionParser.h
17
class ParseException {
headers/private/shared/ExpressionParser.h
19
ParseException(const char* message, int32 position)
headers/private/shared/ExpressionParser.h
25
ParseException(const ParseException& other)
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Commands.cpp
708
} catch (ParseException& exception) {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Protocol.cpp
355
} catch (ParseException& exception) {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
115
throw ParseException("Malformed base64!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
120
throw ParseException("Base64 encoding ends early!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
124
throw ParseException("Malformed base64!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
141
throw ParseException("Malformed base64!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
376
ParseException::ParseException()
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
382
ParseException::ParseException(const char* format, ...)
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
473
throw ParseException("Unexpected response begin");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
573
throw ParseException("Unexpected end of qouted string!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
598
throw ParseException("Not enough memory for literal of %"
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
646
throw ParseException("Unexpected end of string");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.cpp
658
throw ParseException("Invalid number!");
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
100
ParseException();
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
101
ParseException(const char* format, ...);
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
121
class ExpectedParseException : public ParseException {
src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/Response.h
98
class ParseException : public std::exception {
src/apps/deskcalc/CalcView.cpp
1116
} catch (ParseException& e) {
src/apps/deskcalc/DeskCalc.cpp
40
} catch (ParseException& e) {
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1337
throw ParseException("Cannot perform mathematical operations "
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1360
throw ParseException("Cannot perform mathematical operations "
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1369
throw ParseException(errorMessage.String(), 0);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1380
throw ParseException(error.String(), 0);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1419
throw ParseException(error.String(), 0);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1459
throw ParseException("parse error", token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1532
throw ParseException("division by zero", token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1541
throw ParseException("modulo by zero", token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1610
throw ParseException("unexpected end of expression", token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1707
throw ParseException(errorMessage.String(), token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1715
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1728
throw ParseException("Expected identifier after member "
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1743
throw ParseException("Unexpected end of expression", token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1774
throw ParseException("Expected value or variable expression after"
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1787
throw ParseException("Unable to create value node for typecast"
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1829
throw ParseException(temp.String(), token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1859
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1867
throw ParseException("Cannot specify type name as array"
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1875
throw ParseException("Non-zero array size required in type"
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1888
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1915
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1925
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1935
throw ParseException(errorMessage, token.position);
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1946
throw ParseException("Out of memory while creating type object.",
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1953
throw ParseException("Out of memory while creating location object.",
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1961
throw ParseException("Out of memory populating location"
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1968
throw ParseException("Failed to generate internal variable name.",
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1974
throw ParseException("Out of memory while creating ID object.",
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1982
throw ParseException("Out of memory while creating variable object.",
src/kits/debugger/source_language/c_family/CLanguageExpressionEvaluator.cpp
1990
throw ParseException("Out of memory while creating node child object.",
src/kits/debugger/source_language/c_family/CLanguageFamily.cpp
23
using CLanguage::ParseException;
src/kits/debugger/source_language/c_family/CLanguageFamily.cpp
54
} catch (ParseException& ex) {
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
146
throw ParseException("unexpected character", _CurrentPos());
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
157
throw ParseException("error in constant", _CurrentPos() - length);
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
20
using CLanguage::ParseException;
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
250
throw ParseException("unexpected character",
src/kits/debugger/source_language/c_family/CLanguageTokenizer.cpp
446
throw ParseException("expected hex digit", _CurrentPos());
src/kits/debugger/source_language/c_family/CLanguageTokenizer.h
80
class ParseException {
src/kits/debugger/source_language/c_family/CLanguageTokenizer.h
82
ParseException(const char* message, int32 position)
src/kits/debugger/source_language/c_family/CLanguageTokenizer.h
88
ParseException(const ParseException& other)
src/kits/shared/ExpressionParser.cpp
193
throw ParseException("missing exponent in constant",
src/kits/shared/ExpressionParser.cpp
210
throw ParseException("error in constant",
src/kits/shared/ExpressionParser.cpp
263
throw ParseException("unexpected character", _CurrentPos());
src/kits/shared/ExpressionParser.cpp
307
throw ParseException("expected hex digit", _CurrentPos());
src/kits/shared/ExpressionParser.cpp
389
throw ParseException("parse error", token.position);
src/kits/shared/ExpressionParser.cpp
398
throw ParseException("out of memory", 0);
src/kits/shared/ExpressionParser.cpp
425
throw ParseException("parse error", token.position);
src/kits/shared/ExpressionParser.cpp
442
throw ParseException("parse error", token.position);
src/kits/shared/ExpressionParser.cpp
517
throw ParseException("division by zero", token.position);
src/kits/shared/ExpressionParser.cpp
524
throw ParseException("modulo by zero", token.position);
src/kits/shared/ExpressionParser.cpp
558
throw ParseException("unexpected end of expression", token.position);
src/kits/shared/ExpressionParser.cpp
623
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
632
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
675
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
681
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
700
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
710
throw ParseException("out of domain", token.position);
src/kits/shared/ExpressionParser.cpp
719
throw ParseException("unknown identifier", token.position);
src/kits/shared/ExpressionParser.cpp
728
throw ParseException("unexpected end of expression", token.position);
src/kits/shared/ExpressionParser.cpp
831
throw ParseException(temp.String(), token.position);
src/tools/gensyscalls/gensyscallinfos.cpp
182
throw ParseException(string("Unexpected token `") + token
src/tools/gensyscalls/gensyscallinfos.cpp
482
throw ParseException("Error while parsing function "
src/tools/gensyscalls/gensyscallinfos.cpp
524
throw ParseException("Error while parsing function parameter.");
src/tools/gensyscalls/gensyscallinfos.cpp
546
throw ParseException("Error parsing function parameter. "
src/tools/gensyscalls/gensyscallinfos.cpp
558
throw ParseException("Error while parsing function parameter. "
src/tools/gensyscalls/gensyscalls_common.h
49
struct ParseException : public Exception {
src/tools/gensyscalls/gensyscalls_common.h
50
ParseException() {}
src/tools/gensyscalls/gensyscalls_common.h
51
ParseException(const string &message) : Exception(message) {}
src/tools/gensyscalls/gensyscalls_common.h
52
virtual ~ParseException() throw() {}