/external/nist-sip/java/gov/nist/javax/sip/parser/ |
SupportedParser.java | 56 * @param lexer the lexer to use to parse the header 58 protected SupportedParser(Lexer lexer) { 59 super(lexer); 75 while (lexer.lookAhead(0) != '\n') { 76 this.lexer.SPorHT(); 81 this.lexer.match(TokenTypes.ID); 82 Token token = lexer.getNextToken(); 84 this.lexer.SPorHT() [all...] |
UnsupportedParser.java | 54 * @param lexer - the lexer to use to parse the header 56 protected UnsupportedParser(Lexer lexer) { 57 super(lexer); 73 while (lexer.lookAhead(0) != '\n') { 74 this.lexer.SPorHT(); 79 this.lexer.match(TokenTypes.ID); 80 Token token = lexer.getNextToken(); 82 this.lexer.SPorHT() [all...] |
ProxyRequireParser.java | 53 * @param lexer the lexer to use to parse the header 55 protected ProxyRequireParser(Lexer lexer) { 56 super(lexer); 72 while (lexer.lookAhead(0) != '\n') { 77 this.lexer.match(TokenTypes.ID); 78 Token token = lexer.getNextToken(); 80 this.lexer.SPorHT(); 84 while (lexer.lookAhead(0) == ',') [all...] |
RequireParser.java | 56 * @param lexer the lexer to use to parse the header 58 protected RequireParser(Lexer lexer) { 59 super(lexer); 75 while (lexer.lookAhead(0) != '\n') { 80 this.lexer.match(TokenTypes.ID); 81 Token token = lexer.getNextToken(); 83 this.lexer.SPorHT(); 87 while (lexer.lookAhead(0) == ',') [all...] |
CallIDParser.java | 51 * @param lexer Lexer to set 53 protected CallIDParser(Lexer lexer) { 54 super(lexer); 66 this.lexer.match(TokenTypes.CALL_ID); 67 this.lexer.SPorHT(); 68 this.lexer.match(':'); 69 this.lexer.SPorHT(); 73 this.lexer.SPorHT() [all...] |
ExpiresParser.java | 54 * @param lexer is the lexer passed in from the enclosing parser. 56 protected ExpiresParser(Lexer lexer) { 57 super(lexer); 68 lexer.match(TokenTypes.EXPIRES); 69 lexer.SPorHT(); 70 lexer.match(':'); 71 lexer.SPorHT(); 72 String nextId = lexer.getNextId() [all...] |
ErrorInfoParser.java | 54 * @param lexer the lexer to use to parse the header 56 protected ErrorInfoParser(Lexer lexer) { 57 super(lexer); 74 while (lexer.lookAhead(0) != '\n') { 79 this.lexer.SPorHT(); 80 this.lexer.match('<'); 81 URLParser urlParser = new URLParser((Lexer) this.lexer); [all...] |
ServerParser.java | 53 * @param lexer the lexer to use to parse the header 55 protected ServerParser(Lexer lexer) { 56 super(lexer); 71 if (this.lexer.lookAhead(0) == '\n') 75 while (this.lexer.lookAhead(0) != '\n' 76 && this.lexer.lookAhead(0) != '\0') { 77 if (this.lexer.lookAhead(0) == '(') { 78 String comment = this.lexer.comment() [all...] |
StatusLineParser.java | 42 this.lexer = new Lexer("status_lineLexer", statusLine); 45 public StatusLineParser(Lexer lexer) { 46 this.lexer = lexer; 47 this.lexer.selectLexer("status_lineLexer"); 51 String scode = this.lexer.number(); 59 lexer.getBuffer() + ":" + ex.getMessage(), 60 lexer.getPtr()) [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
ReferredByParser.java | 28 protected ReferredByParser(Lexer lexer) { 29 super(lexer); 36 this.lexer.match('\n');
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
AddressHeaderParser.java | 35 import gov.nist.javax.sip.parser.Lexer; 48 protected AddressHeaderParser(Lexer lexer) { 49 super(lexer);
|
SecurityClientParser.java | 42 import gov.nist.javax.sip.parser.Lexer; 57 protected SecurityClientParser(Lexer lexer) 59 super(lexer);
|
SecurityVerifyParser.java | 41 import gov.nist.javax.sip.parser.Lexer; 56 protected SecurityVerifyParser(Lexer lexer) 58 super(lexer);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
generate_glslang_lexer.sh | 6 # Generates GLSL ES lexer - glslang_lex.cpp
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t026actions.html | 20 lexer = new t026actionsLexer(stream), 21 tstream = new org.antlr.runtime.CommonTokenStream(lexer), 28 assertArrayEquals(lexer.xlog, ["action;", "foobar 4 1 0 -1 0 0 5", "attribute;", "action;", "_Ab98 4 1 7 -1 0 7 11", "attribute;", "action;", "A12sdf 4 2 1 -1 0 15 20", "attribute;"]);
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t012lexerXML.py | 31 lexer = self.getLexer(stream) 34 token = lexer.nextToken() 39 output = unicode(lexer.outbuf.getvalue(), 'utf-8') 61 lexer = self.getLexer(stream) 65 token = lexer.nextToken() 85 lexer = self.getLexer(stream) 89 token = lexer.nextToken() 109 lexer = self.getLexer(stream) 113 token = lexer.nextToken() 169 ## lexer = Lexer(stream [all...] |
t026actions.py | 53 lexer = self.getLexer(cStream) 54 tStream = antlr3.CommonTokenStream(lexer) 62 lexer._output,
|
/external/webkit/Source/WebCore/storage/ |
IDBKeyPath.cpp | 175 IDBKeyPathLexer lexer(keyPath); 176 IDBKeyPathLexer::TokenType tokenType = lexer.nextTokenType(); 192 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType(); 195 IDBKeyPathElement element = lexer.currentElement(); 199 tokenType = lexer.nextTokenType(); 213 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType(); 216 tokenType = lexer.nextTokenType(); 223 IDBKeyPathElement element = lexer.currentElement(); 227 tokenType = lexer.nextTokenType(); 233 tokenType = lexer.nextTokenType() [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitBaseTest.java | 63 // Invoke target lexer.rule 80 Class lexer = null; local 84 /** Use Reflection to create instances of lexer and parser */ 85 lexer = Class.forName(lexerPath); 86 Class[] lexArgTypes = new Class[]{CharStream.class}; // assign type to lexer's args 87 Constructor lexConstructor = lexer.getConstructor(lexArgTypes); 88 Object[] lexArgs = new Object[]{input}; // assign value to lexer's args 89 Lexer lexObj = (Lexer)lexConstructor.newInstance(lexArgs); // makes new instance of lexer 171 Class lexer = null; local 317 Class lexer = null; local [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCLexer.h | 38 /* interface lexer class */ 40 /* ObjC start of actions.lexer.memVars */ 41 /* ObjC end of actions.lexer.memVars */ 45 /* ObjC start actions.lexer.methodsDecl */ 46 /* ObjC end actions.lexer.methodsDecl */
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/ |
Fuzzy.h | 39 /* interface lexer class */ 50 /* ObjC start of actions.lexer.memVars */ 51 /* ObjC end of actions.lexer.memVars */ 55 /* ObjC start actions.lexer.methodsDecl */ 56 /* ObjC end actions.lexer.methodsDecl */
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
SymbolTableLexer.h | 32 /* interface lexer class */ 34 /* ObjC start of actions.lexer.memVars */ 35 /* ObjC end of actions.lexer.memVars */ 39 /* ObjC start actions.lexer.methodsDecl */ 40 /* ObjC end actions.lexer.methodsDecl */
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCLexer.h | 44 /* interface lexer class */ 46 /* ObjC start of actions.lexer.memVars */ 47 /* ObjC end of actions.lexer.memVars */ 51 /* ObjC start actions.lexer.methodsDecl */ 52 /* ObjC end actions.lexer.methodsDecl */
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/ |
basic.rb | 32 lexer = FlatList::Lexer.new( "abc 34" ) 33 tokens = ANTLR3::CommonTokenStream.new( lexer ) 68 lexer = SimpleTree::Lexer.new( "abc 34" ) 69 tokens = ANTLR3::CommonTokenStream.new( lexer ) 107 lexer = FlatVsTreeDecision::Lexer.new( "a 1 b 2" ) 108 tokens = ANTLR3::CommonTokenStream.new( lexer ) 145 lexer = FlatVsTreeDecision2::Lexer.new( "a 1 2 3 b 4 5" [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestTokenRewriteStream.java | 45 "lexer grammar t;\n"+ 60 "lexer grammar t;\n"+ 75 "lexer grammar t;\n"+ 92 "lexer grammar t;\n"+ 108 "lexer grammar t;\n"+ 124 "lexer grammar t;\n"+ 140 "lexer grammar t;\n"+ 174 "lexer grammar t;\n"+ 227 "lexer grammar t;\n"+ 244 "lexer grammar t;\n" [all...] |