Searched refs:token (Results 401 - 425 of 1600) sorted by last modified time

<<11121314151617181920>>

/external/e2fsprogs/intl/
H A Dplural.y134 token, to save space in the array generated by bison. */
144 %token <op> EQUOP2 CMPOP2 ADDOP2 MULOP2
145 %token <num> NUMBER
/external/e2fsprogs/lib/blkid/
H A Dblkid.h85 extern char *blkid_get_devname(blkid_cache cache, const char *token,
98 extern int blkid_parse_tag_string(const char *token, char **ret_type,
H A Dblkid.h.in85 extern char *blkid_get_devname(blkid_cache cache, const char *token,
98 extern int blkid_parse_tag_string(const char *token, char **ret_type,
H A Dresolve.c56 * Locate a device name from a token (NAME=value string), or (name, value)
57 * pair. In the case of a token, value is ignored. If the "token" is not
61 char *blkid_get_devname(blkid_cache cache, const char *token, argument
69 if (!token)
78 printf("looking for %s%s%s %s\n", token, value ? "=" : "",
82 if (!strchr(token, '=')) {
83 ret = blkid_strdup(token);
86 blkid_parse_tag_string(token, &t, &v);
89 token
[all...]
H A Dtag.c217 * this will assume that an unquoted value is the rest of the token (e.g.
224 int blkid_parse_tag_string(const char *token, char **ret_type, char **ret_val) argument
228 DBG(DEBUG_TAG, printf("trying to parse '%s' as a tag\n", token));
230 if (!token || !(cp = strchr(token, '=')))
233 name = blkid_strdup(token);
236 value = name + (cp - token);
/external/e2fsprogs/misc/
H A Ddumpe2fs.c447 char *buf, *token, *next, *p, *arg, *badopt = 0; local
459 for (token = buf; token && *token; token = next) {
460 p = strchr(token, ',');
466 arg = strchr(token, '=');
471 if (strcmp(token, "superblock") == 0 ||
472 strcmp(token, "sb") == 0) {
475 badopt = token;
[all...]
H A Dmke2fs.c661 char *buf, *token, *next, *p, *arg, *badopt = 0; local
673 for (token = buf; token && *token; token = next) {
674 p = strchr(token, ',');
680 arg = strchr(token, '=');
685 if (strcmp(token, "desc-size") == 0 ||
686 strcmp(token, "desc_size") == 0) {
692 _("%s requires '-O 64bit'\n"), token);
[all...]
H A Dtune2fs.c774 char *buf, *token, *next, *p; local
785 for (token = buf; token && *token; token = next) {
786 p = strchr(token, ',');
793 if (strcmp(token, "usrquota") == 0) {
795 } else if (strcmp(token, "^usrquota") == 0) {
797 } else if (strcmp(token, "grpquota") == 0) {
799 } else if (strcmp(token, "
1151 char *buf, *token, *next, *p, *arg; local
[all...]
H A Dutil.c174 char *buf, *token, *next, *p, *arg; local
186 for (token = buf; token && *token; token = next) {
187 p = strchr(token, ',');
193 arg = strchr(token, '=');
199 printf("Journal option=%s, argument=%s\n", token,
202 if (strcmp(token, "device") == 0) {
212 } else if (strcmp(token, "siz
[all...]
/external/dhcpcd/
H A Ddhcp.c213 char *token, *o, *p, *t; local
218 while ((token = strsep(&p, ", "))) {
219 if (*token == '\0')
225 if (strcmp(opt->var, token) == 0)
229 n = strtol(token, &t, 0);
/external/dnsmasq/src/
H A Dcache.c730 static int gettok(FILE *f, char *token) argument
747 token[count++] = c;
748 token[count] = 0;
756 char *token = daemon->namebuff, *domain_suffix = NULL; local
770 while ((atnl = gettok(f, token)) != EOF)
776 if (inet_pton(AF_INET, token, &addr) > 0)
782 else if (inet_pton(AF_INET6, token, &addr) > 0)
789 if ((addr.addr.addr4.s_addr = inet_addr(token)) != (in_addr_t) -1)
800 atnl = gettok(f, token);
827 if ((atnl = gettok(f, token))
[all...]
H A Dnetwork.c1185 char *token = strtok(line, " \t\n\r"); local
1187 if (!token)
1189 if (strcmp(token, "nameserver") != 0 && strcmp(token, "server") != 0)
1191 if (!(token = strtok(NULL, " \t\n\r")))
1197 if ((addr.in.sin_addr.s_addr = inet_addr(token)) != (in_addr_t) -1)
1208 else if (inet_pton(AF_INET6, token, &addr.in6.sin6_addr) > 0)
H A Doption.c2953 char *token = strtok(line, " \t\n\r"); local
2955 if (!token || strcmp(token, "search") != 0)
2958 if ((token = strtok(NULL, " \t\n\r")) &&
2959 (daemon->domain_suffix = canonicalise_opt(token)))
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java1826 CommonToken token = (CommonToken) tree.payload;
1828 int line = token.getLine();
1829 int column = token.getCharPositionInLine();
1830 String fileName = ((ANTLRFileStream) token.getInputStream()).getSourceName();
/external/doclava/src/com/google/doclava/apicheck/
H A DApiFile.java71 String token = tokenizer.getToken();
72 if (token == null) {
75 if ("package".equals(token)) {
78 throw new ApiParseException("expected package got " + token, tokenizer.getLine());
90 String token;
94 token = tokenizer.requireToken();
95 assertIdent(tokenizer, token);
96 name = token;
98 token = tokenizer.requireToken();
99 if (!"{".equals(token)) {
113 parseClass(ApiInfo api, PackageInfo pkg, Tokenizer tokenizer, String token) argument
222 parseConstructor(Tokenizer tokenizer, ClassInfo cl, String token) argument
273 parseMethod(Tokenizer tokenizer, ClassInfo cl, String token) argument
346 parseField(Tokenizer tokenizer, ClassInfo cl, String token, boolean isEnum) argument
471 parseParameterList(Tokenizer tokenizer, AbstractMethodInfo method, String token) argument
529 isIdent(String token) argument
533 assertIdent(Tokenizer tokenizer, String token) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceQueryTests.cpp120 std::ostringstream token; local
124 if ((de::isDigit((char)name.peek()) || de::isUpper((char)name.peek())) && token.tellp())
127 token << de::toLower((char)name.get());
131 buf << token.str();
133 buf << '_' << token.str();
137 if (token.tellp() == (std::streamoff)1)
139 if (!previousTokenWasDigit || token.str()[0] != 'd')
142 previousTokenWasDigit = de::isDigit(token.str()[0]);
H A Des31fSSBOLayoutCase.cpp75 const char* token; member in struct:deqp::gles31::bb::__anon20299
93 str << bitDesc[descNdx].token;
/external/deqp/modules/glshared/
H A DglsShaderLibrary.cpp183 void assumeToken (Token token);
184 DataType mapDataTypeToken (Token token);
185 const char* getTokenName (Token token);
348 // Skip old token.
351 // Reset token (for safety).
381 Token token; member in struct:deqp::gls::sl::Named
447 m_curToken = s_named[ndx].token;
529 Token token; member in struct:deqp::gls::sl::SimpleToken
553 m_curToken = s_simple[ndx].token;
559 // Otherwise invalid token
571 assumeToken(Token token) argument
578 mapDataTypeToken(Token token) argument
611 getTokenName(Token token) argument
1087 const Token token = m_curToken; local
1177 const Token token = m_curToken; local
[all...]
H A DglsUniformBlockCase.cpp88 const char* token; member in struct:deqp::gls::ub::__anon20417
105 str << bitDesc[descNdx].token;
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp6732 // We have been woken up by a token in the emergency pipe. We
6733 // can't be sure the token is still in the pipe at this point
6740 char token; local
6742 read(appData->fdsEmergency[0], &token, 1);
6768 char token = '*'; local
6771 write(appData->fdsEmergency[1], &token, 1);
/external/deqp/executor/
H A DxeXMLParser.hpp45 TOKEN_INCOMPLETE = 0, //!< Not enough data to determine token.
74 const char* getTokenName (Token token);
128 Token m_curToken; //!< Current token.
129 int m_curTokenLen; //!< Length of current token.
/external/deqp/framework/delibs/debase/
H A DdeDefs.h276 #define DE_MAKE_NAME(line, token) DE_MAKE_NAME2(line, token)
277 #define DE_MAKE_NAME2(line, token) _static_assert_##line##_##token
/external/deqp/framework/delibs/decpp/
H A DdeStringUtil.cpp99 string token; local
101 while (std::getline(tokenStream, token, delim))
102 ret.push_back(token);
/external/deqp/framework/randomshaders/
H A DrsgPrettyPrinter.cpp123 inline const char* PrettyPrinter::getSimpleTokenStr (Token::Type token) argument
125 DE_ASSERT(de::inBounds<int>(token, 0, (int)DE_LENGTH_OF_ARRAY(s_tokenStr)));
126 return s_tokenStr[token];
140 void PrettyPrinter::processToken (const Token& token) argument
144 switch (token.getType())
149 m_line += token.getIdentifier();
154 std::string f = de::toString(token.getFloat());
162 m_line += de::toString(token.getInt());
166 m_line += (token.getBool() ? "true" : "false");
189 const char* tokenStr = getSimpleTokenStr(token
[all...]
H A DrsgPrettyPrinter.hpp44 void processToken (const Token& token);
46 static const char* getSimpleTokenStr (Token::Type token);

Completed in 294 milliseconds

<<11121314151617181920>>