Home
last modified time | relevance | path

Searched refs:ruleNames (Results 1 – 25 of 221) sorted by path

123456789

/dports/cad/magic/magic-8.3.245/database/
H A DDBtpaint.c359 static char *ruleNames[] = local
371 i = Lookup(*argv, ruleNames);
376 for (i = 0; ruleNames[i]; i++)
377 TxError("\"%s\" ", ruleNames[i]);
/dports/deskutils/treeline/TreeLine/source/
H A Dconditional.py466 ruleNames = sorted(list(savedRules.keys()))
467 if ruleNames:
468 self.saveListBox.addItems(ruleNames)
469 if selNum >= len(ruleNames):
470 selNum = len(ruleNames) - 1
472 self.loadSavedButton.setEnabled(len(ruleNames) > 0)
473 self.delSavedButton.setEnabled(len(ruleNames) > 0)
/dports/devel/antlr/antlr-2.7.7/antlr/debug/
H A DDebuggingCharScanner.java11 protected String ruleNames[]; field in DebuggingCharScanner
79 return ruleNames[num]; in getRuleName()
H A DLLkDebuggingParser.java16 protected String ruleNames[]; field in LLkDebuggingParser
87 return ruleNames[num]; in getRuleName()
/dports/devel/antlr/antlr-2.7.7/lib/csharp/antlr.runtime/antlr.debug/
H A DDebuggingCharScanner.cs22 protected internal string[] ruleNames; field in antlr.debug.DebuggingCharScanner
113 return ruleNames[num]; in getRuleName()
H A DLLkDebuggingParser.cs20 protected internal string[] ruleNames; field in antlr.debug.LLkDebuggingParser
111 return ruleNames[num]; in getRuleName()
/dports/devel/codeworker/CodeWorker4_5_3/
H A DCGRuntime.cpp4368 …void CGBNFRuntimeEnvironment::storeClauseMatching(DtaScriptVariable& ruleNames, std::map<int, std:… in storeClauseMatching() argument
4373 DtaScriptVariable* pClauseNode = ruleNames.getArrayElement(pClauseMatching->clause); in storeClauseMatching()
4376 storeClauseMatching(ruleNames, mapOfAreas, *i); in storeClauseMatching()
H A DCGRuntime.h688 …void storeClauseMatching(DtaScriptVariable& ruleNames, std::map<int, std::map<int, std::list<CGRun…
H A DDtaBNFScript.cpp297 …void DtaBNFScript::storeClauseMatching(DtaScriptVariable& ruleNames, std::map<int, std::map<int, s… in storeClauseMatching() argument
302 …DtaScriptVariable* pClauseNode = ruleNames.getArrayElement(pClauseMatching->clause->getSignature()… in storeClauseMatching()
305 storeClauseMatching(ruleNames, mapOfAreas, *i); in storeClauseMatching()
H A DDtaBNFScript.h216 …void storeClauseMatching(DtaScriptVariable& ruleNames, std::map<int, std::map<int, std::list<Tempo…
/dports/devel/codeworker/CodeWorker4_5_3/Generation/
H A DCGRuntime.h_653 …void storeClauseMatching(DtaScriptVariable& ruleNames, std::map<int, std::map<int, std::list<CGRun…
/dports/devel/kdev-python/kdev-python-21.12.3/documentation_files/PyKDE4/
H A Dsoprano.py3216 def ruleNames(self): member in Soprano.Inference.RuleSet
/dports/devel/libantlr4/libantlr4-4.9.3/runtime/src/
H A DDiagnosticErrorListener.cpp58 const std::vector<std::string>& ruleNames = recognizer->getRuleNames(); in getDecisionDescription() local
59 if (ruleIndex == INVALID_INDEX || ruleIndex >= ruleNames.size()) { in getDecisionDescription()
63 std::string ruleName = ruleNames[ruleIndex]; in getDecisionDescription()
H A DLexerInterpreter.cpp18 …const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames, const std… in LexerInterpreter() argument
20 …: LexerInterpreter(grammarFileName, dfa::Vocabulary::fromTokenNames(tokenNames), ruleNames, channe… in LexerInterpreter()
24 …const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames, const std… in LexerInterpreter() argument
26 : Lexer(input), _grammarFileName(grammarFileName), _atn(atn), _ruleNames(ruleNames), in LexerInterpreter()
H A DLexerInterpreter.h18 … const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames,
21 … const std::vector<std::string> &ruleNames, const std::vector<std::string> &channelNames,
H A DParser.cpp535 std::vector<std::string> const& ruleNames = getRuleNames(); in getRuleInvocationStack() local
544 stack.push_back(ruleNames[ruleIndex]); in getRuleInvocationStack()
H A DParserInterpreter.cpp39 const std::vector<std::string>& ruleNames, const atn::ATN &atn, TokenStream *input) in ParserInterpreter() argument
40 …: ParserInterpreter(grammarFileName, dfa::Vocabulary::fromTokenNames(tokenNames), ruleNames, atn, … in ParserInterpreter()
44 const std::vector<std::string> &ruleNames, const atn::ATN &atn, TokenStream *input) in ParserInterpreter() argument
45 …: Parser(input), _grammarFileName(grammarFileName), _atn(atn), _ruleNames(ruleNames), _vocabulary(… in ParserInterpreter()
H A DParserInterpreter.h34 const std::vector<std::string>& ruleNames, const atn::ATN &atn, TokenStream *input);
36 … const std::vector<std::string> &ruleNames, const atn::ATN &atn, TokenStream *input);
H A DRecognizer.cpp66 const std::vector<std::string>& ruleNames = getRuleNames(); in getRuleIndexMap() local
67 if (ruleNames.empty()) { in getRuleIndexMap()
73 auto iterator = _ruleIndexMapCache.find(ruleNames); in getRuleIndexMap()
77 result = antlrcpp::toMap(ruleNames); in getRuleIndexMap()
78 _ruleIndexMapCache[ruleNames] = result; in getRuleIndexMap()
H A DRuleContext.cpp82 std::string RuleContext::toStringTree(std::vector<std::string> &ruleNames, bool pretty) { in toStringTree() argument
83 return tree::Trees::toStringTree(this, ruleNames, pretty); in toStringTree()
91 std::string RuleContext::toString(const std::vector<std::string> &ruleNames) { in toString() argument
92 return toString(ruleNames, nullptr); in toString()
96 std::string RuleContext::toString(const std::vector<std::string> &ruleNames, RuleContext *stop) { in toString() argument
102 if (ruleNames.empty()) { in toString()
109 …std::string ruleName = (ruleIndex < ruleNames.size()) ? ruleNames[ruleIndex] : std::to_string(rule… in toString()
116 if (!ruleNames.empty() || !currentParent->isEmpty()) { in toString()
H A DRuleContext.h119 virtual std::string toStringTree(std::vector<std::string> &ruleNames, bool pretty = false);
124 std::string toString(const std::vector<std::string> &ruleNames);
129 virtual std::string toString(const std::vector<std::string> &ruleNames, RuleContext *stop);
/dports/devel/libantlr4/libantlr4-4.9.3/runtime/src/misc/
H A DInterpreterDataReader.cpp80 result.ruleNames.push_back(line); in parseFile()
H A DInterpreterDataReader.h16 std::vector<std::string> ruleNames; member
/dports/devel/libantlr4/libantlr4-4.9.3/runtime/src/tree/
H A DTrees.cpp38 std::string Trees::toStringTree(ParseTree *t, const std::vector<std::string> &ruleNames, bool prett… in toStringTree() argument
39 std::string temp = antlrcpp::escapeWhitespace(Trees::getNodeText(t, ruleNames), false); in toStringTree()
57 temp = antlrcpp::escapeWhitespace(Trees::getNodeText(child, ruleNames), false); in toStringTree()
98 std::string Trees::getNodeText(ParseTree *t, const std::vector<std::string> &ruleNames) { in getNodeText() argument
99 if (ruleNames.size() > 0) { in getNodeText()
102 std::string ruleName = ruleNames[ruleIndex]; in getNodeText()
H A DTrees.h31 …static std::string toStringTree(ParseTree *t, const std::vector<std::string> &ruleNames, bool pret…
33 static std::string getNodeText(ParseTree *t, const std::vector<std::string> &ruleNames);

123456789