Uses of Class
fr.umlv.tatoo.cc.lexer.charset.encoding.Encoding

Packages that use Encoding
fr.umlv.tatoo.cc.ebnf   
fr.umlv.tatoo.cc.ebnf.ast.analysis   
fr.umlv.tatoo.cc.lexer.charset   
fr.umlv.tatoo.cc.lexer.charset.encoding   
fr.umlv.tatoo.cc.lexer.main   
fr.umlv.tatoo.cc.lexer.regex   
fr.umlv.tatoo.cc.lexer.regex.pattern   
fr.umlv.tatoo.cc.lexer.xml   
fr.umlv.tatoo.cc.main.main   
 

Uses of Encoding in fr.umlv.tatoo.cc.ebnf
 

Methods in fr.umlv.tatoo.cc.ebnf with parameters of type Encoding
static boolean Analysis.analyse(EBNFASTImpl ast, RuleFactory ruleFactory, Encoding encoding, GrammarFactory grammarFactory, EBNFSupport ebnfSupport, ToolsFactory toolsFactory)
           
 

Constructors in fr.umlv.tatoo.cc.ebnf with parameters of type Encoding
EBNFParserImpl(RuleFactory ruleFactory, Encoding encoding, GrammarFactory grammarFactory, ToolsFactory toolsFactory)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.ebnf.ast.analysis
 

Constructors in fr.umlv.tatoo.cc.ebnf.ast.analysis with parameters of type Encoding
EnterPassOne(BindingMap bindingMap, Map<String,Type> importMap, Encoding encoding, RuleFactory ruleFactory, GrammarFactory grammarFactory, ToolsFactory toolsFactory, TypeVerifier typeVerifier, ASTDiagnosticReporter diagnostic)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.charset
 

Methods in fr.umlv.tatoo.cc.lexer.charset with parameters of type Encoding
 String CharacterInterval.toString(Encoding encoding)
           
static String CharacterInterval.toString(int v, Encoding encoding)
           
 

Constructors in fr.umlv.tatoo.cc.lexer.charset with parameters of type Encoding
CharacterInterval(char begin, char end, Encoding encoding)
           
CharacterInterval(char c, Encoding encoding)
           
CharacterSet(List<CharacterInterval> intervalList, boolean negate, Encoding encoding)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.charset.encoding
 

Subclasses of Encoding in fr.umlv.tatoo.cc.lexer.charset.encoding
 class ASCIIEncoding
           
 class ISO8859_1Encoding
           
 class UTF16Encoding
           
 class UTF8Encoding
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.main
 

Methods in fr.umlv.tatoo.cc.lexer.main that return Encoding
 Encoding LexerType.getEncoding()
           
 

Methods in fr.umlv.tatoo.cc.lexer.main with parameters of type Encoding
 LexerXMLDigester LexerBatch.digest(List<? extends File> lexerFiles, boolean validating, RuleFactory factory, Encoding charset)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.regex
 

Methods in fr.umlv.tatoo.cc.lexer.regex with parameters of type Encoding
static Regex RegexFactory.characterSequence(CharSequence s, boolean ignoreCase, Encoding encoding)
           
static RegexIntervalTable RegexFactory.createDollarRegexTable(Encoding encoding)
          Build the table which tests wether end of line follows.
static Regex RegexFactory.createSet(boolean negate, List<CharacterInterval> intervals, Encoding encoding)
           
static Regex RegexFactory.interval(char from, char to, Encoding encoding)
           
static Regex RegexFactory.leaf(List<CharacterInterval> intervalList, boolean negate, Encoding encoding)
           
static Regex RegexFactory.letter(char c, Encoding encoding)
           
static Regex RegexFactory.letterIgnoreCase(char letter, Encoding encoding)
           
static RegexIntervalTable RegexFactory.makeTable(Set<Leaf> first, MultiMap<Leaf,Leaf> transitions, Leaf acceptPosition, Encoding encoding)
           
static RegexIntervalTable RegexFactory.table(Regex rootNode, Encoding encoding)
           
 

Constructors in fr.umlv.tatoo.cc.lexer.regex with parameters of type Encoding
RegexIntervalTable(int firstState, CharacterSet[][] trans, boolean[] accepts, Encoding encoding)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.regex.pattern
 

Constructors in fr.umlv.tatoo.cc.lexer.regex.pattern with parameters of type Encoding
PatternRuleCompilerImpl(Map<String,Regex> macroes, Encoding charset)
           
RegexGrammarEvaluator(Map<String,Regex> macroes, Encoding charset)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.lexer.xml
 

Constructors in fr.umlv.tatoo.cc.lexer.xml with parameters of type Encoding
LexerXMLDigester(RuleFactory lexerFactory, Encoding charset)
           
XMLRuleCompiler(LexerXMLDigester digester, Encoding charset)
           
 

Uses of Encoding in fr.umlv.tatoo.cc.main.main
 

Methods in fr.umlv.tatoo.cc.main.main with parameters of type Encoding
static EBNFParser EBNFParser.createEBNFParser(RuleFactory ruleFactory, Encoding encoding, GrammarFactory grammarFactory, ToolsFactory toolsFactory)