Searched refs:token (Results 276 - 300 of 1600) sorted by last modified time

<<11121314151617181920>>

/external/libxml2/include/libxml/
H A Dparser.h224 int token; /* next char look-ahead */ member in struct:_xmlParserCtxt
H A Dxmlautomata.h59 const xmlChar *token,
65 const xmlChar *token,
72 const xmlChar *token,
80 const xmlChar *token,
88 const xmlChar *token,
97 const xmlChar *token,
105 const xmlChar *token,
H A Dxmlregexp.h66 * @token: the current token string
73 const xmlChar *token,
145 * and for the set with just the empty token
/external/libxml2/
H A Dparser.c1958 * RAW same as CUR but in the input buffer, bypass any token
3693 * Okay someone managed to make a huge token, so he's ready to pay
5749 "standalone: attribute notation value token %s duplicated\n",
5817 "standalone: attribute enumeration value token %s duplicated\n",
14849 ctxt->token = 0;
H A DparserInternals.c1621 ctxt->token = 0;
H A Dpattern.c922 xmlChar *token = NULL; local
954 token = xmlPatScanName(ctxt);
977 if (token == NULL) {
988 PUSH(XML_OP_ATTR, token, URL);
997 if (token != NULL)
998 XML_PAT_FREE_STRING(ctxt, token);
1014 xmlChar *token = NULL; local
1075 token = xmlPatScanName(ctxt);
1099 if (token == NULL) {
1110 PUSH(XML_OP_ELEM, token, UR
[all...]
H A Drelaxng.c2634 if (xmlStrEqual(type, BAD_CAST "token"))
2662 if (xmlStrEqual(type, BAD_CAST "token")) {
2694 } else if (xmlStrEqual(type, BAD_CAST "token")) {
7913 * @token: the token which matched
7921 const xmlChar * token,
7930 "Compiled callback for: '%s'\n", token);
7933 fprintf(stderr, "callback on %s missing context\n", token);
7937 if (token[0] == '#')
7939 fprintf(stderr, "callback on %s missing define\n", token);
7920 xmlRelaxNGValidateCompiledCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED, const xmlChar * token, void *transdata, void *inputdata) argument
8132 xmlRelaxNGValidateProgressiveCallback(xmlRegExecCtxtPtr exec ATTRIBUTE_UNUSED, const xmlChar * token, void *transdata, void *inputdata) argument
[all...]
H A Dxmlregexp.c3679 * @value: a string token input
3680 * @data: data associated to the token to reuse in callbacks
3682 * Push one input token in the execution context
3741 * current token
3761 * @value: a string token input
3762 * @data: data associated to the token to reuse in callbacks
3765 * Push one input token in the execution context
4121 * @value: a string token input
4122 * @data: data associated to the token to reuse in callbacks
4124 * Push one input token i
5699 xmlAutomataNewTransition(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, void *data) argument
5739 xmlAutomataNewTransition2(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, const xmlChar *token2, void *data) argument
5799 xmlAutomataNewNegTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, const xmlChar *token2, void *data) argument
5866 xmlAutomataNewCountTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, const xmlChar *token2, int min, int max, void *data) argument
5953 xmlAutomataNewCountTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, int min, int max, void *data) argument
6021 xmlAutomataNewOnceTrans2(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, const xmlChar *token2, int min, int max, void *data) argument
6101 xmlAutomataNewOnceTrans(xmlAutomataPtr am, xmlAutomataStatePtr from, xmlAutomataStatePtr to, const xmlChar *token, int min, int max, void *data) argument
[all...]
H A Dxpath.c10652 * maintain parsed token content through the recursive function
11229 * @name: a preparsed name token
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/asm/
H A Dkvm_host.h759 u32 token; member in struct:kvm_arch_async_pf
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.c929 * For strings (double quotes) check the next token.
1012 /* reset back to original token */
1045 * @tok: The token to return
1050 * Returns the token type.
1058 * pevent_free_token - free a token returned by pevent_read_token
1059 * @token: the token to free
1061 void pevent_free_token(char *token) argument
1063 free_token(token);
1094 static int test_type_token(enum event_type type, const char *token, argument
1131 char *token; local
1158 char *token; local
1178 char *token; local
1258 char *token; local
1543 char *token; local
1581 char *token; local
1597 char *token = NULL; local
1650 char *token = NULL; local
1752 char *token; local
1932 char *token; local
2266 char *token = *tok; local
2346 char *token; local
2399 char *token; local
2437 char *token; local
2487 char *token; local
2551 char *token; local
2613 char *token; local
2676 char *token; local
2717 process_function(struct event_format *event, struct print_arg *arg, char *token, char **tok) argument
2760 char *token; local
2849 char *token; local
2905 char *token; local
4745 char *token; local
[all...]
H A Devent-parse.h673 void pevent_free_token(char *token);
H A Dparse-filter.c78 static void free_token(char *token) argument
80 pevent_free_token(token);
86 char *token = NULL; local
89 free_token(token);
90 type = pevent_read_token(&token);
93 /* If token is = or ! check to see if the next char is ~ */
94 if (token &&
95 (strcmp(token, "=") == 0 || strcmp(token, "!") == 0) &&
99 sprintf(*tok, "%c%c", *token, '~');
336 create_arg_item(struct event_format *event, const char *token, enum event_type type, char **error_str) argument
631 process_op(const char *token, enum filter_op_type *btype, enum filter_cmp_type *ctype, enum filter_exp_type *etype) argument
892 char *token = NULL; local
[all...]
/external/libselinux/src/
H A Dandroid.c284 char *token; local
332 token = strtok_r(p, " \t", &saveptr);
333 if (!token) {
339 name = token;
440 token = strtok_r(NULL, " \t", &saveptr);
441 if (!token)
/external/libpcap/
H A Dgrammar.c335 /* Enabling the token table. */
1054 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
1055 token YYLEX-NUM. */
1222 positive, shift that token. If negative, reduce the rule which
1583 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
1790 about the unexpected token YYTOKEN for the state stack whose top is
1825 that there is no unexpected or expected token to report. In that
1831 - Of course, the expected token list depends on states to have
1836 token list. However, the list is correct for canonical LR with
1837 one exception: it will still contain any token tha
[all...]
H A Dgrammar.y273 %token DST SRC HOST GATEWAY
274 %token NET NETMASK PORT PORTRANGE LESS GREATER PROTO PROTOCHAIN CBYTE
275 %token ARP RARP IP SCTP TCP UDP ICMP IGMP IGRP PIM VRRP CARP
276 %token ATALK AARP DECNET LAT SCA MOPRC MOPDL
277 %token TK_BROADCAST TK_MULTICAST
278 %token NUM INBOUND OUTBOUND
279 %token PF_IFNAME PF_RSET PF_RNR PF_SRNR PF_REASON PF_ACTION
280 %token TYPE SUBTYPE DIR ADDR1 ADDR2 ADDR3 ADDR4 RA TA
281 %token LINK
282 %token GE
[all...]
H A Dpcap-usb-linux.c676 char token[USB_LINE_LEN]; local
726 ntok = sscanf(ptr, "%s%n", token, &cnt);
731 if (strcmp(token, "nreaders") == 0)
/external/libpng/contrib/pngminus/
H A Dpnm2png.c54 void get_token(FILE *pnm_file, char *token);
497 void get_token(FILE *pnm_file, char *token) argument
515 token[i] = (unsigned char) ret;
517 while ((token[i] == '\n') || (token[i] == '\r') || (token[i] == ' '));
525 token[i] = (unsigned char) ret;
527 while ((token[i] != '\n') && (token[i] != '\r') && (token[
576 png_byte token[16]; local
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Dconfig.cpp164 string token; local
205 token.erase();
208 token.push_back(c);
214 token.push_back('\0');
218 token.push_back(c);
305 pParam = new CNfcParam(token.c_str(), strValue);
307 pParam = new CNfcParam(token.c_str(), numValue);
318 pParam = new CNfcParam(token.c_str(), strValue);
/external/libnfc-nci/src/adaptation/
H A Dconfig.cpp164 string token; local
216 token.erase();
219 token.push_back(c);
225 token.push_back('\0');
229 token.push_back(c);
316 pParam = new CNfcParam(token.c_str(), strValue);
318 pParam = new CNfcParam(token.c_str(), numValue);
329 pParam = new CNfcParam(token.c_str(), strValue);
/external/libnfc-nci/src/include/
H A Dbt_trace.h153 /* Special token definitions */
181 UINT16 token);
184 UINT16 token,
188 UINT16 token,
193 UINT16 token,
199 UINT16 token,
206 UINT16 token,
214 UINT16 token,
/external/libnl/lib/route/
H A Dpktloc_syntax.y33 %token <i> ERROR NUMBER LAYER
34 %token <s> NAME
/external/jsoncpp/include/json/
H A Dreader.h127 bool expectToken( TokenType type, Token &token, const char *message );
128 bool readToken( Token &token );
138 bool readObject( Token &token );
139 bool readArray( Token &token );
140 bool decodeNumber( Token &token );
141 bool decodeString( Token &token );
142 bool decodeString( Token &token, std::string &decoded );
143 bool decodeDouble( Token &token );
144 bool decodeUnicodeCodePoint( Token &token,
148 bool decodeUnicodeEscapeSequence( Token &token,
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp163 Token token; local
164 skipCommentTokens( token );
171 // Set error location to start of doc, ideally should be first token found in doc
172 token.type_ = tokenError;
173 token.start_ = beginDoc;
174 token.end_ = endDoc;
176 token );
187 Token token; local
188 skipCommentTokens( token );
198 switch ( token
254 expectToken( TokenType type, Token &token, const char *message ) argument
677 decodeString( Token &token, std::string &decoded ) argument
723 decodeUnicodeCodePoint( Token &token, Location &current, Location end, unsigned int &unicode ) argument
753 decodeUnicodeEscapeSequence( Token &token, Location &current, Location end, unsigned int &unicode ) argument
779 addError( const std::string &message, Token &token, Location extra ) argument
810 addErrorAndRecover( const std::string &message, Token &token, TokenType skipUntilToken ) argument
[all...]
/external/jsmn/
H A Djsmn.c6 * Allocates a fresh unused token from the token pull.
24 * Fills token type and boundaries.
26 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, argument
28 token->type = type;
29 token->start = start;
30 token->end = end;
31 token->size = 0;
35 * Fills next available token with JSON primitive.
39 jsmntok_t *token; local
88 jsmntok_t *token; local
157 jsmntok_t *token; local
[all...]

Completed in 379 milliseconds

<<11121314151617181920>>