HomeSort by relevance Sort by last modified time
    Searched refs:Token (Results 276 - 300 of 1327) sorted by null

<<11121314151617181920>>

  /external/clang/include/clang/AST/
CommentParser.h 54 /// Current lookahead token. We can safely assume that all tokens are from
56 Token Tok;
59 SmallVector<Token, 8> MoreLATokens;
68 void putBack(const Token &OldTok) {
73 void putBack(ArrayRef<Token> Toks) {
  /external/icu/icu4c/source/i18n/
nortrans.h 83 Token context);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ParseException.java 41 public ParseException(Token currentTokenVal,
73 * This is the last token that has been consumed successfully. If
74 * this object has been created due to a parse error, the token
75 * followng this token will (therefore) be the first error token.
77 public Token currentToken;
100 private static String initialise(Token currentToken,
119 Token tok = currentToken.next;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
EOF.java 8 public final class EOF extends Token
  /external/libtextclassifier/annotator/contact/
contact-engine-dummy.h 48 const std::vector<Token>& tokens,
  /external/libtextclassifier/annotator/installed_app/
installed-app-engine-dummy.h 48 const std::vector<Token>& tokens,
  /external/libtextclassifier/annotator/
types-test-util.h 39 TC3_DECLARE_PRINT_OPERATOR(Token)
  /external/snakeyaml/src/test/java/org/pyyaml/
CanonicalScanner.java 41 import org.yaml.snakeyaml.tokens.Token;
52 public ArrayList<Token> tokens;
59 this.tokens = new ArrayList<Token>();
64 public boolean checkToken(Token.ID... choices) {
72 Token first = this.tokens.get(0);
73 for (Token.ID choice : choices) {
82 public Token peekToken() {
92 public Token getToken() {
99 public Token getToken(Token.ID choice)
100 Token token = getToken(); local
215 Token token; local
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/scanner/
ScannerImplTest.java 31 import org.yaml.snakeyaml.tokens.Token;
41 LinkedList<Token> etalonTokens = new LinkedList<Token>();
54 scanner.checkToken(new Token.ID[0]));
61 fail("TAB cannot start a token.");
64 "while scanning for the next token\n"
65 + "found character '\\t(TAB)' that cannot start any token. (Do not use \\t(TAB) for indentation)\n"
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/tokens/
BlockEntryTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 BlockEntryToken token = new BlockEntryToken(mark, mark); local
28 assertEquals(ID.BlockEntry, token.getTokenId());
BlockSequenceStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 BlockSequenceStartToken token = new BlockSequenceStartToken(mark, mark); local
28 assertEquals(ID.BlockSequenceStart, token.getTokenId());
DocumentEndTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 DocumentEndToken token = new DocumentEndToken(mark, mark); local
28 assertEquals(ID.DocumentEnd, token.getTokenId());
DocumentStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 DocumentStartToken token = new DocumentStartToken(mark, mark); local
28 assertEquals(ID.DocumentStart, token.getTokenId());
FlowEntryTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowEntryToken token = new FlowEntryToken(mark, mark); local
28 assertEquals(ID.FlowEntry, token.getTokenId());
FlowMappingStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowMappingStartToken token = new FlowMappingStartToken(mark, mark); local
28 assertEquals(ID.FlowMappingStart, token.getTokenId());
FlowSequenceStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 FlowSequenceStartToken token = new FlowSequenceStartToken(mark, mark); local
28 assertEquals(ID.FlowSequenceStart, token.getTokenId());
StreamStartTokenTest.java 21 import org.yaml.snakeyaml.tokens.Token.ID;
27 StreamStartToken token = new StreamStartToken(mark, mark); local
28 assertEquals(ID.StreamStart, token.getTokenId());
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
PBlackBox.h 50 template<class Lexer, class Parser, class Token>
89 tok = new Token;
115 tok = new Token;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
PBlackBox.h 48 template<class Lexer, class Parser, class Token>
67 tok = new Token;
85 tok = new Token;
  /device/linaro/bootloader/edk2/EmulatorPkg/Include/Protocol/
EmuBlockIo.h 65 @param[in, out] Token A pointer to the token associated with the transaction.
71 @retval EFI_SUCCESS The read request was queued if Token->Event is
73 device if the Token->Event is NULL.
91 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
109 @param[in, out] Token A pointer to the token associated with the transaction.
133 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
146 @param[in,out] Token A pointer to the token associated with the transaction
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BlockIo2.h 32 The struct of Block IO2 Token.
83 @param[in, out] Token A pointer to the token associated with the transaction.
89 @retval EFI_SUCCESS The read request was queued if Token->Event is
91 device if the Token->Event is NULL.
109 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
127 @param[in, out] Token A pointer to the token associated with the transaction.
151 IN OUT EFI_BLOCK_IO2_TOKEN *Token,
164 @param[in,out] Token A pointer to the token associated with the transaction
    [all...]
DiskIo2.h 29 The struct of Disk IO2 Token.
68 @param Token A pointer to the token associated with the transaction.
90 IN OUT EFI_DISK_IO2_TOKEN *Token,
101 @param Token A pointer to the token associated with the transaction.
123 IN OUT EFI_DISK_IO2_TOKEN *Token,
133 @param Token A pointer to the token associated with the transaction.
149 IN OUT EFI_DISK_IO2_TOKEN *Token
    [all...]
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 66 if ( expectedTokenType==Token.EOF ) tokenText = "<missing EOF>";
69 Token current = ((TokenStream)input).LT(1);
70 if ( current.getType() == Token.EOF ) {
80 /** Set the token stream and reset the parser */
  /external/nist-sip/java/gov/nist/javax/sip/parser/
InReplyToParser.java 79 Token token = lexer.getNextToken(); local
83 Token secToken = lexer.getNextToken();
85 token.getTokenValue() + "@" + secToken.getTokenValue());
87 inReplyTo.setCallId(token.getTokenValue());
101 token = lexer.getNextToken();
105 Token secToken = lexer.getNextToken();
107 token.getTokenValue()
111 inReplyTo.setCallId(token.getTokenValue());
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 63 t[i].Token = --j;
67 t[i].Token = a;
76 const vp8_extra_bit_struct *p = vp8_extra_bits + t[i].Token;
103 int pt; /* near block/prev token context index */
110 int band, rc, v, token; local
122 t->Token = DCT_EOB_TOKEN;
135 token = vp8_dct_value_tokens_ptr[v].Token;
136 t->Token = token;
188 int token; local
    [all...]

Completed in 2436 milliseconds

<<11121314151617181920>>