Searched defs:token (Results 226 - 250 of 705) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parser-struct.h65 int token; /* enum tokentype or any character */ member in struct:yasm_parser_nasm
67 char tokch; /* first character of token */
69 /* one token of lookahead; used sparingly */
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dparser.c31 Scanner_fatal(in, "more than one token of lookahead?");
78 re = RegExp_new_RuleOp(re, look, yylval.token, accept++);
207 char * token; local
217 token = strtok( fnamebuf, "\\" );
219 fprintf(o, "%s", token);
220 token = strtok( NULL, "\\" );
221 if( token == NULL ) break;
/external/chromium_org/tools/gn/
H A Derr.cc108 Err::Err(const Token& token, argument
112 location_(token.location()),
115 ranges_.push_back(token.range());
H A Doperators_unittest.cc26 // given token. The token must outlive the list (since the list will just
28 scoped_ptr<ListNode> ListWithLiteral(const Token& token) { argument
30 list->append_item(scoped_ptr<ParseNode>(new LiteralNode(token)));
/external/chromium_org/tools/idl_parser/
H A Didl_lexer.py40 # literal tokens, meaning the token type and token value are identical.
47 # of valid token types.
62 # 'keywords' is a map of string to token type. All tokens matching
64 # if the token is actually a keyword.
115 # regular expression where a match will emit a token of type <TYPE>. In the
198 # Generate a message containing the file and line number of a token.
219 # The token function returns the next token provided by IDLLexer for matching
222 def token(sel member in class:IDLLexer
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDefaultHdfParser.java94 * Reads lines from a reader until a line is encountered that matches token (or end of stream).
96 private String readToToken(LineNumberReader reader, String token) throws IOException { argument
99 while ((line = reader.readLine()) != null && !line.trim().equals(token)) {
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dcgroup.c15 char *token, *saved_ptr = NULL; local
33 token = strtok_r(tokens, ",", &saved_ptr);
35 while (token != NULL) {
36 if (!strcmp(token, "perf_event")) {
40 token = strtok_r(NULL, ",", &saved_ptr);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocevents.cpp325 const TPtrC token = line.NextToken(); local
326 if(token.Length() == 0)
331 TLex lex(token);
/external/smack/src/org/xbill/DNS/
H A DResolverConfig.java98 parseNdots(String token) { argument
99 token = token.substring(6);
101 int ndots = Integer.parseInt(token);
104 System.out.println("setting ndots " + token);
257 String token = st.nextToken();
258 if (token.startsWith("ndots:")) {
259 lndots = parseNdots(token);
/external/srec/srec/EventLog/include/
H A DSR_EventLog.h55 * Log a string token using the basic logging level.
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
62 * Log an integer token using the basic logging level.
69 * Log a pointer token using the basic logging level.
76 * Log a uint16 token using the basic logging level.
83 * Log a size_t token using the basic logging level.
90 * Log a boolean token using the basic logging level.
97 * Log a float token using the basic logging level.
111 * Log a string token using the audio logging level.
115 log->token(lo
150 ESR_ReturnCode(*token)(struct SR_EventLog_t* self, const LCHAR* token, const LCHAR *value); member in struct:SR_EventLog_t
[all...]
/external/srec/srec/crec/
H A Dpriority_q.c77 word_token *token; local
87 token = &(word_token_array[*ptoken_index]);
88 if (token->end_node != end_node)
91 *ptoken_index = token->next_token_index;
98 if ((pq->max_cost_in_q == MAXcostdata) || (token->cost > pq->max_cost_in_q))
100 pq->max_cost_in_q = token->cost;
102 ptoken_index = &(token->next_token_index);
164 word_token* token; local
169 token = &(word_token_array[token_index]);
170 token_index = token
189 word_token *token; local
[all...]
H A Dsrec_tokens.c66 /*allocates the token and sets it up for a given arc*/
71 fsmarc_token *token; local
93 token = &(rec->fsmarc_token_array[token_to_return]);
95 token->FSMarc_index = fsm_arc_index;
97 token->num_hmm_states = rec->context->hmm_info_for_ilabel[arc->ilabel].num_states;
99 for (i = 0;i < token->num_hmm_states;i++)
101 token->cost[i] = MAXcostdata;
102 token->word[i] = MAXwordID;
103 token->word_backtrace[i] = MAXwtokenID;
104 token
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pwd_common.h51 u8 token[4]; member in struct:eap_pwd_id
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pwd_common.h51 u8 token[4]; member in struct:eap_pwd_id
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pwd_common.h51 u8 token[4]; member in struct:eap_pwd_id
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3exception.h39 /** Indicates that the recognizer received a token
48 /** Indicates that the recognizer was expecting one token and found a
139 /** Indicates the index of the 'token' we were looking at when the
144 /** Indicates what the current token/tree was when the error occurred. Since not
145 * all input streams will be able to retrieve the nth token, we track it here
148 void * token; member in struct:ANTLR3_EXCEPTION_struct
150 /** Indicates the token we were expecting to see next when the error occurred
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontoken.c2 * Contains the default implementation of the common token used within
40 static pANTLR3_STRING getText (pANTLR3_COMMON_TOKEN token);
41 static void setText (pANTLR3_COMMON_TOKEN token, pANTLR3_STRING text);
42 static void setText8 (pANTLR3_COMMON_TOKEN token, pANTLR3_UINT8 text);
43 static ANTLR3_UINT32 getType (pANTLR3_COMMON_TOKEN token);
44 static void setType (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type);
45 static ANTLR3_UINT32 getLine (pANTLR3_COMMON_TOKEN token);
46 static void setLine (pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 line);
47 static ANTLR3_INT32 getCharPositionInLine (pANTLR3_COMMON_TOKEN token);
48 static void setCharPositionInLine (pANTLR3_COMMON_TOKEN token, ANTLR3_INT3
75 pANTLR3_COMMON_TOKEN token; local
193 pANTLR3_COMMON_TOKEN token; local
247 ANTLR3_UINT32 token; local
306 pANTLR3_COMMON_TOKEN token; local
326 antlr3SetTokenAPI(pANTLR3_COMMON_TOKEN token) argument
351 getText(pANTLR3_COMMON_TOKEN token) argument
415 setText8(pANTLR3_COMMON_TOKEN token, pANTLR3_UINT8 text) argument
451 setText(pANTLR3_COMMON_TOKEN token, pANTLR3_STRING text) argument
464 getType(pANTLR3_COMMON_TOKEN token) argument
469 setType(pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 type) argument
474 getLine(pANTLR3_COMMON_TOKEN token) argument
479 setLine(pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 line) argument
484 getCharPositionInLine(pANTLR3_COMMON_TOKEN token) argument
489 setCharPositionInLine(pANTLR3_COMMON_TOKEN token, ANTLR3_INT32 pos) argument
494 getChannel(pANTLR3_COMMON_TOKEN token) argument
499 setChannel(pANTLR3_COMMON_TOKEN token, ANTLR3_UINT32 channel) argument
504 getTokenIndex(pANTLR3_COMMON_TOKEN token) argument
509 setTokenIndex(pANTLR3_COMMON_TOKEN token, ANTLR3_MARKER index) argument
514 getStartIndex(pANTLR3_COMMON_TOKEN token) argument
519 setStartIndex(pANTLR3_COMMON_TOKEN token, ANTLR3_MARKER start) argument
524 getStopIndex(pANTLR3_COMMON_TOKEN token) argument
529 setStopIndex(pANTLR3_COMMON_TOKEN token, ANTLR3_MARKER stop) argument
534 toString(pANTLR3_COMMON_TOKEN token) argument
[all...]
H A Dantlr3lexer.c5 * An ANTLR3 lexer implements a base recongizer, a token source and
47 static void emitNew (pANTLR3_LEXER lexer, pANTLR3_COMMON_TOKEN token);
103 /* Now install the token source interface
147 /* Initialise the eof token
160 // Initialize the skip token.
181 lexer->rec->state->token = NULL;
191 // a token factory that needs a reset. Do that here
201 /// Returns the next available token from the current input stream.
204 /// Points to the implementation of a token source. The lexer is
208 /// The next token i
636 emitNew(pANTLR3_LEXER lexer, pANTLR3_COMMON_TOKEN token) argument
644 pANTLR3_COMMON_TOKEN token; local
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DBlankDebugEventListener.cs71 public virtual void ConsumeToken(IToken token) { argument
73 public virtual void ConsumeHiddenToken(IToken token) { argument
118 public virtual void CreateNode(object node, IToken token) { argument
H A DDebugEventHub.cs128 public virtual void ConsumeToken(IToken token) { argument
131 listener.ConsumeToken(token);
135 public virtual void ConsumeHiddenToken(IToken token) { argument
138 listener.ConsumeHiddenToken(token);
269 public virtual void CreateNode(object node, IToken token) { argument
272 listener.CreateNode(node, token);
H A DDebugEventRepeater.cs80 public virtual void ConsumeToken(IToken token) { argument
81 _listener.ConsumeToken(token);
83 public virtual void ConsumeHiddenToken(IToken token) { argument
84 _listener.ConsumeHiddenToken(token);
146 public virtual void CreateNode(object node, IToken token) { argument
147 _listener.CreateNode(node, token);
H A DIDebugEventListener.cs95 * An input token was consumed; matched by any kind of element.
96 * Trigger after the token was matched by things like match(), matchAny().
102 * An off-channel input token was consumed.
103 * Trigger after the token was matched by things like match(), matchAny().
104 * (unless of course the hidden token is first stuff in the input stream).
113 * what token was seen at that depth. A remote debugger cannot look
114 * ahead into a file it doesn't have so LT events must pass the token
122 * the token stream's marker is sent in case you need it.
181 * data fields are transmitted. The token object or whatever that
323 /** <summary>Announce a new node built from token element
341 CreateNode(object node, IToken token) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DBlankDebugEventListener.java46 public void consumeToken(Token token) {} argument
47 public void consumeHiddenToken(Token token) {} argument
71 public void createNode(Object node, Token token) {} argument
H A DDebugEventHub.java126 public void consumeToken(Token token) { argument
129 listener.consumeToken(token);
133 public void consumeHiddenToken(Token token) { argument
136 listener.consumeHiddenToken(token);
265 public void createNode(Object node, Token token) { argument
268 listener.createNode(node, token);
H A DDebugEventListener.java87 /** An input token was consumed; matched by any kind of element.
88 * Trigger after the token was matched by things like match(), matchAny().
92 /** An off-channel input token was consumed.
93 * Trigger after the token was matched by things like match(), matchAny().
94 * (unless of course the hidden token is first stuff in the input stream).
101 * what token was seen at that depth. A remote debugger cannot look
102 * ahead into a file it doesn't have so LT events must pass the token
108 * the token stream's marker is sent in case you need it.
155 * data fields are transmitted. The token object or whatever that
274 /** Announce a new node built from token element
288 createNode(Object node, Token token) argument
[all...]

Completed in 1253 milliseconds

1234567891011>>