Searched refs:message (Results 1 - 25 of 5913) sorted by path

1234567891011>>

/external/aac/libFDK/include/
H A Dfixmul.h118 #pragma message ("Extremely slow implementation of fixmuldiv2_DD !!")
131 #pragma message ("Extremely slow implementation of fixmuldiv2BitExact_DD !!")
150 #pragma message ("Extremely slow implementation of fixmulBitExact_DD !!")
/external/ant-glob/src/org/apache/tools/ant/
H A DBuildException.java35 * Constructs an exception with the given descriptive message.
37 * @param message A description of or information about the exception.
40 public BuildException(String message) { argument
41 super(message);
45 * Constructs an exception with the given message and exception as
48 * @param message A description of or information about the exception.
53 public BuildException(String message, Throwable cause) { argument
54 super(message);
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
H A DAntlr3ErrorLog.java58 * Sends an informational message to the Maven log sink.
59 * @param s The message to send to Maven
61 public void info(String message) { argument
62 log.info(message);
66 * Sends an error message from ANTLR analysis to the Maven Log sink.
68 * @param message The message to send to Maven.
70 public void error(Message message) { argument
71 log.error(message.toString());
75 * Sends a warning message t
79 warning(Message message) argument
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as175 /** What error message should be generated for the various
178 * Not very object-oriented code, but I like having all error message
183 * the message for an exception type would be difficult because you
194 * Override this to change the message generated for one or more
198 var msg:String = e.message;
294 /** How should a token be displayed in an error message? The default
H A DRecognizerSharedState.as19 * matched a token. Prevents generation of more than one error message
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3defs.h556 ANTLR3_API pANTLR3_EXCEPTION antlr3ExceptionNew (ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage);
H A Dantlr3exception.h121 /** The printable message that goes with this exception, in your preferred
128 void * message; member in struct:ANTLR3_EXCEPTION_struct
134 /** If set to ANTLR3_TRUE, this indicates that the message element of this structure
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c342 ex->message = "Unexpected character";
359 ex->message = "Unexpected token";
391 ex->message = "Unexpected node";
997 /// No generic error message display funciton coudl possibly do everything correctly
1050 (pANTLR3_UINT8) (recognizer->state->exception->message));
1482 recognizer->state->exception->message = ANTLR3_UNWANTED_TOKEN_EXCEPTION_NAME;
1532 recognizer->state->exception->message = ANTLR3_MISSING_TOKEN_EXCEPTION_NAME;
H A Dantlr3cyclicdfa.c67 rec->state->exception->message = cdfa->description;
H A Dantlr3debughandlers.c207 // Buffer to construct our message in
209 char message[256]; local
310 sprintf (message, "ANTLR %d\n", delboy->PROTOCOL_VERSION);
311 sockSend (delboy->socket, message, (int)strlen(message));
312 sprintf (message, "grammar \"%s\n", delboy->grammarFileName->chars);
313 sockSend (delboy->socket, message, (int)strlen(message));
552 // Create the message (speed is not of the essence)
563 // Create the message (spee
[all...]
H A Dantlr3exception.c47 * \param[in] message
48 * Pointer to message string
51 * Set to ANTLR3_TRUE if the message parameter should be freed by a call to
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, void * name, void * message, ANTLR3_BOOLEAN freeMessage) argument
89 ex->message = message; /* Install message string */
105 * Prints out the message in all the exceptions in the supplied chain.
124 /* Number if no message, else the message
[all...]
H A Dantlr3lexer.c451 (pANTLR3_UINT8) (ex->message),
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteCardinalityException.cs61 public RewriteCardinalityException(string message, string elementDescription) argument
62 : base(message) {
66 public RewriteCardinalityException(string message, string elementDescription, Exception innerException) argument
67 : base(message, innerException) {
H A DRewriteEarlyExitException.cs52 public RewriteEarlyExitException(string message, string elementDescription) argument
53 : base(message, elementDescription) {
56 public RewriteEarlyExitException(string message, string elementDescription, Exception innerException) argument
57 : base(message, elementDescription, innerException) {
H A DRewriteEmptyStreamException.cs52 public RewriteEmptyStreamException(string message, string elementDescription) argument
53 : base(message, elementDescription) {
56 public RewriteEmptyStreamException(string message, string elementDescription, Exception innerException) argument
57 : base(message, elementDescription, innerException) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DEarlyExitException.cs47 public EarlyExitException(string message) argument
48 : base(message) {
51 public EarlyExitException(string message, Exception innerException) argument
52 : base(message, innerException) {
60 public EarlyExitException(string message, int decisionNumber, IIntStream input) argument
61 : base(message, input) {
65 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException) argument
66 : base(message, input, innerException) {
H A DFailedPredicateException.cs54 public FailedPredicateException(string message) argument
55 : base(message) {
58 public FailedPredicateException(string message, Exception innerException) argument
59 : base(message, innerException) {
68 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) argument
69 : base(message, input) {
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) argument
75 : base(message, input, innerException) {
H A DMismatchedNotSetException.cs43 public MismatchedNotSetException(string message) argument
44 : base(message) {
47 public MismatchedNotSetException(string message, Exception innerException) argument
48 : base(message, innerException) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
H A DMismatchedRangeException.cs47 public MismatchedRangeException(string message) argument
48 : base(message) {
51 public MismatchedRangeException(string message, Exception innerException) argument
52 : base(message, innerException) {
61 public MismatchedRangeException(string message, int a, int b, IIntStream input) argument
62 : base(message, input) {
67 public MismatchedRangeException(string message, int a, int b, IIntStream input, Exception innerException) argument
68 : base(message, input, innerException) {
H A DMismatchedSetException.cs46 public MismatchedSetException(string message) argument
47 : base(message) {
50 public MismatchedSetException(string message, Exception innerException) argument
51 : base(message, innerException) {
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) argument
60 : base(message, input) {
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
65 : base(message, input, innerException) {
H A DMismatchedTokenException.cs53 public MismatchedTokenException(string message) argument
54 : base(message) {
57 public MismatchedTokenException(string message, Exception innerException) argument
58 : base(message, innerException) {
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames) argument
73 : base(message, input) {
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException) argument
82 : base(message, input, innerException) {
H A DMismatchedTreeNodeException.cs47 public MismatchedTreeNodeException(string message) argument
48 : base(message) {
51 public MismatchedTreeNodeException(string message, Exception innerException) argument
52 : base(message, innerException) {
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input) argument
61 : base(message, input) {
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException) argument
66 : base(message, input, innerException) {
H A DMissingTokenException.cs51 public MissingTokenException(string message) argument
52 : base(message) {
55 public MissingTokenException(string message, Exception innerException) argument
56 : base(message, innerException) {
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) argument
69 : base(message, expecting, input, tokenNames) {
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) argument
74 : base(message, expecting, input, tokenNames, innerException) {

Completed in 271 milliseconds

1234567891011>>