HomeSort by relevance Sort by last modified time
    Searched defs:msgID (Results 1 - 4 of 4) sorted by null

  /external/antlr/tool/src/main/java/org/antlr/tool/
Message.java 49 public int msgID;
61 public Message(int msgID) {
62 this(msgID, null, null);
65 public Message(int msgID, Object arg, Object arg2) {
66 setMessageID(msgID);
79 public void setMessageID(int msgID) {
80 this.msgID = msgID;
81 msgST = ErrorManager.getMessage(msgID);
113 messageFormatST.add("id", msgID);
    [all...]
NameSpaceChecker.java 94 int msgID = 0;
98 msgID = ErrorManager.MSG_LEXER_RULES_NOT_ALLOWED;
104 msgID = ErrorManager.MSG_PARSER_RULES_NOT_ALLOWED;
107 msgID = ErrorManager.MSG_SYMBOL_CONFLICTS_WITH_GLOBAL_SCOPE;
109 if ( msgID!=0 ) {
110 ErrorManager.grammarError(msgID, grammar, ruleToken, ruleName);
190 int msgID = 0;
194 msgID = ErrorManager.MSG_ATTRIBUTE_CONFLICTS_WITH_RULE;
200 msgID = ErrorManager.MSG_ATTRIBUTE_CONFLICTS_WITH_RULE_ARG_RETVAL;
203 if ( msgID!=0 )
    [all...]
ErrorManager.java 294 /** From a msgID how can I get the name of the template that describes
541 public static ST getMessage(int msgID) {
542 String msgName = idToMessageTemplateName[msgID];
545 public static String getMessageType(int msgID) {
546 if (getErrorState().warningMsgIDs.member(msgID)) {
549 else if (getErrorState().errorMsgIDs.member(msgID)) {
552 assertTrue(false, "Assertion failed! Message ID " + msgID + " created but is not present in errorMsgIDs or warningMsgIDs.");
606 public static void error(int msgID) {
608 getErrorState().errorMsgIDs.add(msgID);
609 getErrorListener().error(new ToolMessage(msgID));
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c     [all...]

Completed in 3046 milliseconds