HomeSort by relevance Sort by last modified time
    Searched refs:TokenType (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/antlr/runtime/Cpp/include/
antlr3tokenstream.hpp 53 typedef typename ImplTraits::CommonTokenType TokenType;
54 typedef TokenType CommonTokenType;
64 TokenType m_eofToken;
71 TokenType m_skipToken;
81 TokenType& get_eofToken();
82 const TokenType& get_eofToken() const;
83 TokenType& get_skipToken();
108 TokenType* nextToken();
129 TokenType* nextTokenStr();
145 typedef typename ImplTraits::CommonTokenType TokenType;
    [all...]
antlr3rewritestreams.hpp 66 typedef typename SuperType::TokenType TokenType;
67 typedef typename AllocPolicyType::template VectorType< TokenType* > ElementsType;
72 TokenType* m_singleElement;
106 RewriteRuleElementStream(TreeAdaptorType* adaptor, RecognizerType* rec, ANTLR_UINT8* description, TokenType* oneElement);
119 void add(TokenType* el);
124 TokenType* next();
126 TokenType* nextToken();
127 TokenType* _next();
133 TokenType* dup( TokenType* el )
    [all...]
antlr3exception.hpp 57 typedef typename StreamType::UnitType TokenType;
89 const TokenType* m_token;
108 TokenType* m_node;
144 const TokenType* get_token() const;
148 TokenType* get_node() const;
159 void set_token( const TokenType* token );
163 void set_node( TokenType* node );
antlr3cyclicdfa.hpp 56 typedef typename StreamType::TokenType TokenType;
57 typedef TokenType CommonTokenType;
antlr3treeparser.hpp 49 typedef TreeType TokenType;
82 TokenType* getMissingSymbol( IntStreamType* istream,
antlr3commontree.hpp 48 typedef CommonTree TokenType;
91 TokenType* get_token() const;
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java 37 import org.owasp.html.CssTokens.TokenType;
144 CssTokens.TokenType type = it.type();
174 private static final EnumMap<CssTokens.TokenType, Pattern> TOKEN_TYPE_FILTERS
175 = Maps.newEnumMap(CssTokens.TokenType.class);
182 CssTokens.TokenType.AT, Pattern.compile("@" + IDENT));
184 CssTokens.TokenType.COLON, Pattern.compile(":"));
186 CssTokens.TokenType.COLUMN, Pattern.compile("\\|\\|"));
188 CssTokens.TokenType.COMMA, Pattern.compile(","));
190 CssTokens.TokenType.DELIM,
193 CssTokens.TokenType.DIMENSION, Pattern.compile(NUMBER + "[a-z]+"))
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 77 private final TokenType[] tokenTypes;
144 if (type() != TokenType.WHITESPACE) { return true; }
151 public TokenType type() {
176 TokenType[] tokenTypes) {
183 public enum TokenType {
283 private static final TokenType[] ZERO_TYPES = new TokenType[0];
299 private List<TokenType> tokenTypes = null;
335 TokenType openBracket(char bracketChar) {
337 TokenType type
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.h 87 enum TokenType {
133 util::Status ParseValue(TokenType type);
161 util::Status ParseEntry(TokenType type);
164 util::Status ParseEntryMid(TokenType type);
167 util::Status ParseObjectMid(TokenType type);
173 util::Status ParseArrayValue(TokenType type);
176 util::Status ParseArrayMid(TokenType type);
201 TokenType GetNextTokenType();
  /external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.m 398 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87];
400 [self match:input TokenType:DOWN Follow:nil];
410 [self match:input TokenType:UP Follow:nil];
420 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101];
422 [self match:input TokenType:DOWN Follow:nil];
440 [self match:input TokenType:UP Follow:nil];
482 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126];
484 [self match:input TokenType:DOWN Follow:nil];
502 [self match:input TokenType:UP Follow:nil];
541 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150];
    [all...]
SimpleCWalker.m 398 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87];
400 [self match:input TokenType:DOWN Follow:nil];
410 [self match:input TokenType:UP Follow:nil];
420 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101];
422 [self match:input TokenType:DOWN Follow:nil];
440 [self match:input TokenType:UP Follow:nil];
482 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126];
484 [self match:input TokenType:DOWN Follow:nil];
502 [self match:input TokenType:UP Follow:nil];
541 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150];
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliLexer.java 35 import com.intellij.psi.TokenType;
84 private IElementType mapTokenTypeToElementType(int tokenType) {
85 if (tokenType == smaliParser.WHITE_SPACE) {
86 return TokenType.WHITE_SPACE;
88 if (tokenType == smaliParser.INVALID_TOKEN) {
89 return TokenType.BAD_CHARACTER;
91 if (tokenType == smaliParser.EOF) {
94 return SmaliTokens.getElementType(tokenType);
  /external/antlr/runtime/ObjC/Framework/examples/polydiff/
PolyPrinter.m 241 [self match:input TokenType:8 Follow:FOLLOW_8_in_poly43];
243 [self match:input TokenType:DOWN Follow:nil];
259 [self match:input TokenType:UP Follow:nil];
275 [self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly74];
277 [self match:input TokenType:DOWN Follow:nil];
293 [self match:input TokenType:UP Follow:nil];
309 [self match:input TokenType:9 Follow:FOLLOW_9_in_poly104];
311 [self match:input TokenType:DOWN Follow:nil];
327 [self match:input TokenType:UP Follow:nil];
343 INT1=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly134];
    [all...]
Simplifier.m 571 char_literal1=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly52]; if ( state.failed ) return retval;
575 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
579 a=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly56]; if ( state.failed ) return retval;
585 b=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly60]; if ( state.failed ) return retval;
589 [self match:input TokenType:TokenTypeUP Follow:nil]; if ( state.failed ) return retval;
640 char_literal2=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly73]; if ( state.failed ) return retval;
644 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
655 char_literal3=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly76]; if ( state.failed ) return retval;
659 [self match:input TokenType:TokenTypeDOWN Follow:nil]; if ( state.failed ) return retval;
663 a=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly80]; if ( state.failed ) return retval;
    [all...]
PolyDifferentiator.m 344 char_literal1=(CommonTree *)[self match:input TokenType:8 Follow:FOLLOW_8_in_poly44];
351 [self match:input TokenType:TokenTypeDOWN Follow:nil];
377 [self match:input TokenType:TokenTypeUP Follow:nil];
400 MULT4=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly55];
404 [self match:input TokenType:TokenTypeDOWN Follow:nil];
408 INT5=(CommonTree *)[self match:input TokenType:INT Follow:FOLLOW_INT_in_poly57];
414 ID6=(CommonTree *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_poly59];
418 [self match:input TokenType:TokenTypeUP Follow:nil];
467 MULT7=(CommonTree *)[self match:input TokenType:MULT Follow:FOLLOW_MULT_in_poly71];
471 [self match:input TokenType:TokenTypeDOWN Follow:nil];
    [all...]
  /external/antlr/runtime/ObjC/Framework/
BaseRecognizer.h 104 - (id) match:(id<IntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
106 - (BOOL) mismatchIsUnwantedToken:(id<IntStream>)anInput TokenType:(NSInteger) ttype;
130 TokenType:(NSInteger)ttype
140 TokenType:(NSInteger) expectedTokenType
144 - (void) consumeUntilTType:(id<IntStream>)anInput TokenType:(NSInteger)ttype;
DebugTreeParser.h 49 tokenType:(TokenType)ttype
Token.h 41 } TokenType;
ANTLRBitSet.h 47 + (ANTLRBitSet *) newBitSetWithType:(TokenType)type;
63 - (ANTLRBitSet *) initWithType:(TokenType)type;
  /external/jsoncpp/include/json/
reader.h 157 enum TokenType {
176 TokenType type_;
190 bool expectToken(TokenType type, Token& token, const char* message);
217 bool recoverFromError(TokenType skipUntilToken);
220 TokenType skipUntilToken);
  /external/syzkaller/vendor/golang.org/x/oauth2/
token.go 35 // TokenType is the type of token.
37 TokenType string `json:"token_type,omitempty"`
56 // Type returns t.TokenType if non-empty, else "Bearer".
58 if strings.EqualFold(t.TokenType, "bearer") {
61 if strings.EqualFold(t.TokenType, "mac") {
64 if strings.EqualFold(t.TokenType, "basic") {
67 if t.TokenType != "" {
68 return t.TokenType
142 TokenType: t.TokenType,
    [all...]
  /external/antlr/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.m 136 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45];
138 [self match:input TokenType:DOWN Follow:nil];
156 [self match:input TokenType:UP Follow:nil];
199 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
240 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator95];
  /external/antlr/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.m 492 [self match:input TokenType:11 Follow:FOLLOW_11_in_declaration62];
580 [self match:input TokenType:11 Follow:FOLLOW_11_in_variable103];
618 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator122];
669 ID3=(CommonToken *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_functionHeader153];
671 [self match:input TokenType:7 Follow:FOLLOW_7_in_functionHeader155];
707 [self match:input TokenType:10 Follow:FOLLOW_10_in_functionHeader163];
733 [self match:input TokenType:8 Follow:FOLLOW_8_in_functionHeader173];
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.h 87 // similar to those that make up the C language; see the TokenType enum for
99 enum TokenType {
126 TokenType type;
334 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  /external/antlr/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 355 [self match:input TokenType:12 Follow:FOLLOW_12_in_method116];
357 [self match:input TokenType:ID Follow:FOLLOW_ID_in_method118];
359 [self match:input TokenType:7 Follow:FOLLOW_7_in_method120];
361 [self match:input TokenType:8 Follow:FOLLOW_8_in_method122];
412 [self match:input TokenType:13 Follow:FOLLOW_13_in_block153];
478 [self match:input TokenType:14 Follow:FOLLOW_14_in_block165];
541 [self match:input TokenType:ID Follow:FOLLOW_ID_in_stat189];
543 [self match:input TokenType:10 Follow:FOLLOW_10_in_stat191];
545 [self match:input TokenType:INT Follow:FOLLOW_INT_in_stat193];
547 [self match:input TokenType:9 Follow:FOLLOW_9_in_stat195];
    [all...]

Completed in 447 milliseconds

1 2 3 4