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

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ToolMessage.java 44 public ToolMessage(int msgID) {
45 super(msgID, null, null);
47 public ToolMessage(int msgID, Object arg) {
48 super(msgID, arg, null);
50 public ToolMessage(int msgID, Throwable e) {
51 super(msgID);
54 public ToolMessage(int msgID, Object arg, Object arg2) {
55 super(msgID, arg, arg2);
57 public ToolMessage(int msgID, Object arg, Throwable e) {
58 super(msgID,arg,null)
    [all...]
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...]
GrammarSemanticsMessage.java 43 public GrammarSemanticsMessage(int msgID,
47 this(msgID,g,offendingToken,null,null);
50 public GrammarSemanticsMessage(int msgID,
55 this(msgID,g,offendingToken,arg,null);
58 public GrammarSemanticsMessage(int msgID,
64 super(msgID,arg,arg2);
ErrorManager.java 289 /** From a msgID how can I get the name of the template that describes
514 public static ST getMessage(int msgID) {
515 String msgName = idToMessageTemplateName[msgID];
518 public static String getMessageType(int msgID) {
519 if (getErrorState().warningMsgIDs.member(msgID)) {
522 else if (getErrorState().errorMsgIDs.member(msgID)) {
525 assertTrue(false, "Assertion failed! Message ID " + msgID + " created but is not present in errorMsgIDs or warningMsgIDs.");
579 public static void error(int msgID) {
581 getErrorState().errorMsgIDs.add(msgID);
582 getErrorListener().error(new ToolMessage(msgID));
    [all...]
GrammarSyntaxMessage.java 43 public GrammarSyntaxMessage(int msgID,
48 this(msgID,grammar,offendingToken,null,exception);
51 public GrammarSyntaxMessage(int msgID,
57 super(msgID, arg, null);
NameSpaceChecker.java 99 int msgID = 0;
103 msgID = ErrorManager.MSG_LEXER_RULES_NOT_ALLOWED;
109 msgID = ErrorManager.MSG_PARSER_RULES_NOT_ALLOWED;
112 msgID = ErrorManager.MSG_SYMBOL_CONFLICTS_WITH_GLOBAL_SCOPE;
114 if ( msgID!=0 ) {
115 ErrorManager.grammarError(msgID, grammar, ruleToken, ruleName);
198 int msgID = 0;
202 msgID = ErrorManager.MSG_ATTRIBUTE_CONFLICTS_WITH_RULE;
208 msgID = ErrorManager.MSG_ATTRIBUTE_CONFLICTS_WITH_RULE_ARG_RETVAL;
211 if ( msgID!=0 )
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTemplates.java 357 if (m.msgID==expectedMessage.msgID ) {
361 assertTrue("no error; "+expectedMessage.msgID+" expected", equeue.errors.size()>0);
363 assertTrue("couldn't find expected error: "+expectedMessage.msgID, foundMsg!=null);
BaseTest.java 444 if (m.msgID==expectedMessage.msgID ) {
448 assertNotNull("no error; "+expectedMessage.msgID+" expected", foundMsg);
464 if (m.msgID==expectedMessage.msgID ) {
468 assertNotNull("no error; "+expectedMessage.msgID+" expected", foundMsg);
482 if (m.msgID==expectedMessage.msgID ) {
486 assertTrue("no error; "+expectedMessage.msgID+" expected", equeue.errors.size()>0);
488 assertNotNull("couldn't find expected error: "+expectedMessage.msgID, foundMsg)
    [all...]
TestAttributes.java     [all...]
  /hardware/qcom/gps/core/
LocApiBase.h 218 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
219 if (msgID > (sizeof(mSupportedMsg) << 3)) {
222 uint32_t messageChecker = 1 << msgID;
  /hardware/qcom/gps/msm8909/core/
LocApiBase.h 218 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
219 if (msgID > LOC_API_ADAPTER_MESSAGE_MAX) {
222 uint32_t messageChecker = 1 << msgID;
  /hardware/qcom/gps/msm8909w_3100/core/
LocApiBase.h 226 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
228 // confirm if msgID is not larger than the number of bits in
230 if ((uint64_t)msgID > (sizeof(mSupportedMsg) << 3)) {
233 uint32_t messageChecker = 1 << msgID;
  /hardware/qcom/gps/msm8994/core/
LocApiBase.h 218 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
219 if (msgID > (sizeof(mSupportedMsg) << 3)) {
222 uint32_t messageChecker = 1 << msgID;
  /hardware/qcom/gps/msm8996/core/
LocApiBase.h 218 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
219 if (msgID > (sizeof(mSupportedMsg) << 3)) {
222 uint32_t messageChecker = 1 << msgID;
  /hardware/qcom/gps/msm8998/core/
LocApiBase.h 225 inline bool isMessageSupported (LocCheckingMessagesID msgID) const {
227 // confirm if msgID is not larger than the number of bits in
229 if ((uint64_t)msgID > (sizeof(mSupportedMsg) << 3)) {
232 uint32_t messageChecker = 1 << msgID;
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.util_1.0.500.v20130404-1337.jar 
  /external/mdnsresponder/mDNSShared/
dnsextd.c     [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 521 milliseconds