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

1 2 3 4 5

  /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();
  /system/core/init/parser/
tokenizer.h 42 enum TokenType { TOK_START, TOK_END, TOK_NEWLINE, TOK_TEXT };
44 TokenType type;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.m 396 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87];
398 [self match:input TokenType:DOWN Follow:nil];
407 [self match:input TokenType:UP Follow:nil];
415 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101];
417 [self match:input TokenType:DOWN Follow:nil];
434 [self match:input TokenType:UP Follow:nil];
470 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126];
472 [self match:input TokenType:DOWN Follow:nil];
489 [self match:input TokenType:UP Follow:nil];
523 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150];
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.m 378 [self match:input TokenType:FUNC_DECL Follow:FOLLOW_FUNC_DECL_in_declaration87]; /* element() */
380 [self match:input TokenType:ANTLRTokenTypeDOWN Follow:nil];
387 [self match:input TokenType:ANTLRTokenTypeUP Follow:nil]; /* element() */
394 [self match:input TokenType:FUNC_DEF Follow:FOLLOW_FUNC_DEF_in_declaration101]; /* element() */
396 [self match:input TokenType:ANTLRTokenTypeDOWN Follow:nil];
408 [self match:input TokenType:ANTLRTokenTypeUP Follow:nil]; /* element() */
437 [self match:input TokenType:VAR_DEF Follow:FOLLOW_VAR_DEF_in_variable126]; /* element() */
439 [self match:input TokenType:ANTLRTokenTypeDOWN Follow:nil];
451 [self match:input TokenType:ANTLRTokenTypeUP Follow:nil]; /* element() */
478 [self match:input TokenType:K_ID Follow:FOLLOW_K_ID_in_declarator150]; /* element() *
    [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);
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/
security_windows.go 60 //sys DuplicateTokenEx(hExistingToken syscall.Token, dwDesiredAccess uint32, lpTokenAttributes *syscall.SecurityAttributes, impersonationLevel uint32, tokenType TokenType, phNewToken *syscall.Token) (err error) = advapi32.DuplicateTokenEx
78 type TokenType uint32
81 TokenPrimary TokenType = 1
82 TokenImpersonation TokenType = 2
  /prebuilts/go/linux-x86/src/internal/syscall/windows/
security_windows.go 60 //sys DuplicateTokenEx(hExistingToken syscall.Token, dwDesiredAccess uint32, lpTokenAttributes *syscall.SecurityAttributes, impersonationLevel uint32, tokenType TokenType, phNewToken *syscall.Token) (err error) = advapi32.DuplicateTokenEx
78 type TokenType uint32
81 TokenPrimary TokenType = 1
82 TokenImpersonation TokenType = 2
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
149 TokenType:(NSInteger) expectedTokenType
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
149 TokenType:(NSInteger) expectedTokenType
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseRecognizer.h 113 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
115 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
139 TokenType:(NSInteger)ttype
149 TokenType:(NSInteger) expectedTokenType
153 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.h 105 - (id) match:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype Follow:(ANTLRBitSet *)follow;
107 - (BOOL) mismatchIsUnwantedToken:(id<ANTLRIntStream>)anInput TokenType:(NSInteger) ttype;
131 TokenType:(NSInteger)ttype
141 TokenType:(NSInteger) expectedTokenType
145 - (void) consumeUntilTType:(id<ANTLRIntStream>)anInput TokenType:(NSInteger)ttype;
  /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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.m 144 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45];
146 [self match:input TokenType:DOWN Follow:nil];
163 [self match:input TokenType:UP Follow:nil];
200 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
237 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator95];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.m 457 [self match:input TokenType:11 Follow:FOLLOW_11_in_declaration62];
538 [self match:input TokenType:11 Follow:FOLLOW_11_in_variable103];
572 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator122];
622 ID3=(ANTLRCommonToken *)[self match:input TokenType:ID Follow:FOLLOW_ID_in_functionHeader153];
624 [self match:input TokenType:7 Follow:FOLLOW_7_in_functionHeader155];
657 [self match:input TokenType:10 Follow:FOLLOW_10_in_functionHeader163];
683 [self match:input TokenType:8 Follow:FOLLOW_8_in_functionHeader173];
810 [self match:input TokenType:19 Follow:FOLLOW_19_in_block286];
    [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);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 78 // similar to those that make up the C language; see the TokenType enum for
90 enum TokenType {
117 TokenType type;
307 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 78 // similar to those that make up the C language; see the TokenType enum for
90 enum TokenType {
117 TokenType type;
307 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
tokenizer.h 78 // similar to those that make up the C language; see the TokenType enum for
90 enum TokenType {
117 TokenType type;
307 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  /prebuilts/tools/darwin-x86_64/protoc/include/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);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
tokenizer.h 78 // similar to those that make up the C language; see the TokenType enum for
90 enum TokenType {
117 TokenType type;
307 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 346 [self match:input TokenType:12 Follow:FOLLOW_12_in_method116];
348 [self match:input TokenType:ID Follow:FOLLOW_ID_in_method118];
350 [self match:input TokenType:7 Follow:FOLLOW_7_in_method120];
352 [self match:input TokenType:8 Follow:FOLLOW_8_in_method122];
398 [self match:input TokenType:13 Follow:FOLLOW_13_in_block153];
460 [self match:input TokenType:14 Follow:FOLLOW_14_in_block165];
517 [self match:input TokenType:ID Follow:FOLLOW_ID_in_stat189];
519 [self match:input TokenType:10 Follow:FOLLOW_10_in_stat191];
521 [self match:input TokenType:INT Follow:FOLLOW_INT_in_stat193];
523 [self match:input TokenType:9 Follow:FOLLOW_9_in_stat195];
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableParser.m 363 [self match:input TokenType:7 Follow:FOLLOW_7_in_method110]; /* element() */
364 [self match:input TokenType:ID Follow:FOLLOW_ID_in_method112]; /* element() */
365 [self match:input TokenType:8 Follow:FOLLOW_8_in_method114]; /* element() */
366 [self match:input TokenType:9 Follow:FOLLOW_9_in_method116]; /* element() */
406 [self match:input TokenType:10 Follow:FOLLOW_10_in_block147]; /* element() */
461 [self match:input TokenType:11 Follow:FOLLOW_11_in_block159]; /* element() */
510 [self match:input TokenType:ID Follow:FOLLOW_ID_in_stat183]; /* element() */
511 [self match:input TokenType:12 Follow:FOLLOW_12_in_stat185]; /* element() */
512 [self match:input TokenType:INT Follow:FOLLOW_INT_in_stat187]; /* element() */
513 [self match:input TokenType:13 Follow:FOLLOW_13_in_stat189]; /* element() *
    [all...]
  /frameworks/base/media/java/android/media/
SessionToken2.java 47 public @interface TokenType {
144 public @TokenType int getType() {

Completed in 669 milliseconds

1 2 3 4 5