HomeSort by relevance Sort by last modified time
    Searched full:lexer (Results 176 - 200 of 1025) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PCalledPartyIDParser.java 36 import gov.nist.javax.sip.parser.Lexer;
60 protected PCalledPartyIDParser(Lexer lexer)
62 super(lexer);
73 this.lexer.match(TokenTypes.P_CALLED_PARTY_ID);
74 this.lexer.SPorHT();
75 this.lexer.match(':');
76 this.lexer.SPorHT();
PPreferredIdentityParser.java 34 import gov.nist.javax.sip.parser.Lexer;
58 protected PPreferredIdentityParser(Lexer lexer) {
59 super(lexer);
69 this.lexer.match(TokenTypes.P_PREFERRED_IDENTITY);
70 this.lexer.SPorHT();
71 this.lexer.match(':');
72 this.lexer.SPorHT();
PAssociatedURIParser.java 44 import gov.nist.javax.sip.parser.Lexer;
73 protected PAssociatedURIParser(Lexer lexer)
75 super(lexer);
96 this.lexer.SPorHT();
97 while (lexer.lookAhead(0) == ',')
99 this.lexer.match(',');
100 this.lexer.SPorHT();
106 this.lexer.SPorHT();
108 this.lexer.SPorHT()
    [all...]
PMediaAuthorizationParser.java 42 import gov.nist.javax.sip.parser.Lexer;
63 public PMediaAuthorizationParser(Lexer lexer)
65 super(lexer);
88 while (lexer.lookAhead(0) != '\n')
90 this.lexer.match(TokenTypes.ID);
91 Token token = lexer.getNextToken();
99 this.lexer.SPorHT();
100 if (lexer.lookAhead(0) == ',')
102 this.lexer.match(',')
    [all...]
  /external/qemu/include/qapi/qmp/
json-streamer.h 18 #include "qapi/qmp/json-lexer.h"
23 JSONLexer lexer; member in struct:JSONMessageParser
  /external/qemu/qobject/
json-streamer.c 18 #include "qapi/qmp/json-lexer.h"
24 static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTokenType type, int x, int y)
26 JSONMessageParser *parser = container_of(lexer, JSONMessageParser, lexer);
104 json_lexer_init(&parser->lexer, json_message_process_token);
110 return json_lexer_feed(&parser->lexer, buffer, size);
115 return json_lexer_flush(&parser->lexer);
120 json_lexer_destroy(&parser->lexer);
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t022scopes.html 29 lexer = new t022scopesLexer(cstream),
30 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
39 lexer = new t022scopesLexer(cstream),
40 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
53 lexer = new t022scopesLexer(cstream),
54 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
70 lexer = new t022scopesLexer(cstream),
71 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
91 lexer = new t022scopesLexer(cstream),
92 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
    [all...]
t013parser.html 19 lexer = new t013parserLexer(cstream),
20 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
30 lexer = new t013parserLexer(cstream),
31 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
t021hoist.html 20 lexer = new t021hoistLexer(cstream),
21 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
32 lexer = new t021hoistLexer(cstream),
33 tstream = new org.antlr.runtime.CommonTokenStream(lexer),
t038lexerRuleLabel.g 0 lexer grammar t038lexerRuleLabel;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java 75 * @param lexer Lexer to set
77 protected AcceptEncodingParser(Lexer lexer) {
78 super(lexer);
94 if (lexer.lookAhead(0) == '\n') {
98 while (lexer.lookAhead(0) != '\n') {
100 if (lexer.lookAhead(0) != ';') {
102 lexer.match(TokenTypes.ID);
103 Token value = lexer.getNextToken()
    [all...]
AcceptLanguageParser.java 72 * @param lexer Lexer to set
74 protected AcceptLanguageParser(Lexer lexer) {
75 super(lexer);
91 while (lexer.lookAhead(0) != '\n') {
94 if (lexer.lookAhead(0) != ';') {
96 lexer.match(TokenTypes.ID);
97 Token value = lexer.getNextToken();
101 while (lexer.lookAhead(0) == ';')
    [all...]
InReplyToParser.java 54 * @param lexer the lexer to use to parse the header
56 protected InReplyToParser(Lexer lexer) {
57 super(lexer);
74 while (lexer.lookAhead(0) != '\n') {
78 this.lexer.match(TokenTypes.ID);
79 Token token = lexer.getNextToken();
80 if (lexer.lookAhead(0) == '@') {
81 this.lexer.match('@')
    [all...]
AcceptParser.java 54 * @param lexer the lexer to use to parse the header
56 protected AcceptParser(Lexer lexer) {
57 super(lexer);
77 this.lexer.SPorHT();
78 this.lexer.match(TokenTypes.ID);
79 Token token = lexer.getNextToken();
81 this.lexer.match('/');
82 this.lexer.match(TokenTypes.ID)
    [all...]
CallInfoParser.java 53 * @param lexer the lexer to use to parse the header
55 protected CallInfoParser(Lexer lexer) {
56 super(lexer);
72 while (lexer.lookAhead(0) != '\n') {
76 this.lexer.SPorHT();
77 this.lexer.match('<');
78 URLParser urlParser=new URLParser((Lexer)this.lexer);
    [all...]
AddressParametersParser.java 42 protected AddressParametersParser(Lexer lexer) {
43 super(lexer);
57 lexer.SPorHT();
58 char la = this.lexer.lookAhead(0);
59 if ( this.lexer.hasMoreChars() &&
62 this.lexer.startsId()) {
OrganizationParser.java 52 * @param lexer the lexer to use to parse the header
54 protected OrganizationParser(Lexer lexer) {
55 super(lexer);
73 this.lexer.SPorHT();
74 String value = this.lexer.getRest();
  /external/chromium_org/tools/idl_parser/
idl_lexer_test.py 16 def FileToTokens(lexer, filename):
18 lexer.Tokenize(srcfile.read(), filename)
19 return lexer.GetTokens()
27 def TextToTokens(lexer, text):
28 lexer.Tokenize(text)
29 return lexer.GetTokens()
34 self.lexer = IDLLexer()
49 tokens1 = FileToTokens(self.lexer, filename)
51 tokens2 = TextToTokens(self.lexer, to_text)
74 tokens = FileToTokens(self.lexer, filename
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TParser.g 21 // lexer. Maven knows how to work out the relationship
22 // between the lexer and parser and will build the
23 // lexer before the parser. It will also rebuild the
24 // parser if the lexer changes.
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/
VecMath_Lexer.g3 0 lexer grammar VecMath_Lexer;
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
IDLexer.g 0 lexer grammar IDLexer;
  /external/antlr/antlr-3.4/runtime/Python/tests/
t038lexerRuleLabel.g 0 lexer grammar t038lexerRuleLabel;
  /external/clang/test/Lexer/
pragma-mark.c 4 // Lexer diagnostics shouldn't be included in #pragma mark.
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 25 /* interface lexer class */
27 /* ObjC start of actions.lexer.memVars */
28 /* ObjC end of actions.lexer.memVars */
32 /* ObjC start actions.lexer.methodsDecl */
33 /* ObjC end actions.lexer.methodsDecl */
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexerLexer.h 24 /* interface lexer class */
26 /* ObjC start of actions.lexer.memVars */
27 /* ObjC end of actions.lexer.memVars */
31 /* ObjC start actions.lexer.methodsDecl */
32 /* ObjC end actions.lexer.methodsDecl */

Completed in 517 milliseconds

1 2 3 4 5 6 78 91011>>