HomeSort by relevance Sort by last modified time
    Searched defs:token (Results 1 - 25 of 170) sorted by null

1 2 3 4 5 6 7

  /cts/tools/dasm/src/java_cup/runtime/
token.java 13 public class token extends symbol { class in inherits:symbol
16 public token(int term_num) method in class:token
  /external/clearsilver/util/
missing.c 33 char *token; local
46 /* Find the end of the token. */
47 token = s;
48 s = strpbrk (token, delim);
50 /* This token finishes the string. */
51 /**save_ptr = __rawmemchr (token, '\0');*/
52 *save_ptr = strchr (token, '\0');
55 /* Terminate the token and make
60 return token;
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
OIDTokenizer.java 33 String token; local
38 token = oid.substring(index);
40 return token;
43 token = oid.substring(index, end);
46 return token;
  /frameworks/base/core/java/android/app/backup/
RestoreSet.java 42 * Token that identifies this backup set unambiguously to the backup/restore
46 public long token; field in class:RestoreSet
56 token = _token;
68 out.writeLong(token);
85 token = in.readLong();
  /frameworks/base/opengl/libagl/
TokenManager.cpp 27 // token 0 is always reserved
47 const GLuint token = *tokens++; local
48 if (token) {
49 mTokenizer.release(token);
54 bool TokenManager::isTokenValid(GLuint token) const
57 return mTokenizer.isAcquired(token);
Tokenizer.cpp 50 uint32_t token = run.first + run.length; local
51 _insertTokenAt(token, 1);
52 return token;
55 bool Tokenizer::isAcquired(uint32_t token) const
57 return (_indexOrderOf(token) >= 0);
60 status_t Tokenizer::reserve(uint32_t token)
63 const ssize_t i = _indexOrderOf(token, &o);
65 return BAD_VALUE; // this token is already taken
67 ssize_t err = _insertTokenAt(token, o);
71 status_t Tokenizer::release(uint32_t token)
    [all...]
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 64 ArrayList<Token> tokens = part.getTokens();
67 Token token = tokens.get(i); local
69 builder.append(token.getRawText());
70 if (token.getType() == AbstractMessageParser.Token.Type.SMILEY) {
71 int resid = mRes.getSmileyRes(token.getRawText());
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 56 * it's role. A token "close" indicates that the connection cannot
57 * be reused. If there is no such token, a token "keep-alive" indicates
58 * that the connection should be re-used. If neither token is found,
119 // documented in RFC 2068, section 19.7.1. A token "keep-alive" is
125 // RFC 2616 specifies "close" as the only connection token with a
129 // but is commonly used to carry one token, "close" or "keep-alive".
131 // sequence of tokens, where each token is a header name, and the
132 // token "close" has the above-mentioned additional meaning.
146 final String token = ti.nextToken() local
    [all...]
  /frameworks/base/cmds/servicemanager/
bctest.c 55 unsigned token; variable
91 svcmgr_publish(bs, svcmgr, argv[1], &token);
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedTextRequest.java 32 public int token; field in class:ExtractedTextRequest
58 dest.writeInt(token);
71 res.token = source.readInt();
  /frameworks/base/include/surfaceflinger/
ISurfaceFlingerClient.h 51 int32_t token; member in struct:android::ISurfaceFlingerClient::surface_data_t
  /system/core/nexus/
SupplicantStatus.cpp 56 char *token = strsep(&line_next, "="); local
58 if (!strcmp(token, "bssid"))
60 else if (!strcmp(token, "ssid"))
62 else if (!strcmp(token, "id"))
64 else if (!strcmp(token, "wpa_state")) {
86 LOGD("Ignoring unsupported status token '%s'", token);
  /external/v8/test/cctest/
test-parsing.cc 32 #include "token.h"
43 i::Token::Value token; member in struct:KeywordToken
47 #define KEYWORD(t, s, d) { s, i::Token::t },
51 { NULL, i::Token::IDENTIFIER }
68 if (key_token.token == i::Token::INSTANCEOF && j == 2) {
71 CHECK_EQ(i::Token::IN, matcher.token());
73 CHECK_EQ(i::Token::IDENTIFIER, matcher.token())
    [all...]
  /frameworks/base/media/libdrm/mobile2/src/util/xml/
XMLElementImpl.cpp 94 string token; local
98 token.assign(tag);
99 nodeList = getElementsByTagName(&token);
  /packages/apps/IM/libwbxml/include/
wbxml_tabledef.h 27 int token; member in struct:tagTokenData
33 int token; member in struct:tagAttrData
  /packages/apps/Mms/src/com/android/mms/util/
SendingProgressTokenManager.java 38 Long token = TOKEN_POOL.get(key); local
40 Log.v(TAG, "TokenManager.get(" + key + ") -> " + token);
42 return token != null ? token : NO_TOKEN;
45 synchronized public static void put(Object key, long token) {
47 Log.v(TAG, "TokenManager.put(" + key + ", " + token + ")");
49 TOKEN_POOL.put(key, token);
  /system/core/adb/
remount_service.c 39 char *token = NULL; local
51 token = strtok(buf, delims);
53 while (token) {
57 res = sscanf(token, "mtd%d: %x %x %15s",
63 token = strtok(NULL, delims);
  /frameworks/base/core/java/android/os/
TokenWatcher.java 57 * Record that this token has been acquired. When acquire is called, and
61 * @param token An IBinder object. If this token has already been acquired,
66 public void acquire(IBinder token, String tag)
73 Death d = new Death(token, tag);
75 token.linkToDeath(d, 0);
79 mTokens.put(token, d);
88 public void cleanup(IBinder token, boolean unlink)
91 Death d = mTokens.remove(token);
93 d.token.unlinkToDeath(d, 0)
164 IBinder token; field in class:TokenWatcher.Death
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
PropertyPermission.java 67 String token = tokenizer.nextToken(); local
68 if (token.equals("read")) { //$NON-NLS-1$
70 } else if (token.equals("write")) { //$NON-NLS-1$
  /external/proguard/src/proguard/ant/
MemberSpecificationElement.java 181 String token = tokenizer.nextToken(); local
183 if (token.startsWith("!") ^ set)
185 String strippedToken = token.startsWith("!") ?
186 token.substring(1) :
187 token;
  /external/srec/srec/crec/
priority_q.c 77 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->next_token_index
189 word_token *token; local
    [all...]
srec_tokens.c 66 /*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->duration[i] = MAXframeID
    [all...]
  /external/webkit/WebCore/page/
Navigator.cpp 216 // The specification requires that it is a SYNTAX_ERR if the the "%s" token is not present.
217 static const char token[] = "%s"; local
218 int index = url.find(token);
225 // the "%s" token and prepending the base url, does not resolve.
227 newURL.remove(index, sizeof(token) / sizeof(token[0]));
  /frameworks/base/libs/surfaceflinger/
Tokenizer.cpp 49 uint32_t token = run.first + run.length; local
50 _insertTokenAt(token, 1);
51 return token;
54 bool Tokenizer::isAcquired(uint32_t token) const
56 return (_indexOrderOf(token) >= 0);
59 status_t Tokenizer::reserve(uint32_t token)
62 const ssize_t i = _indexOrderOf(token, &o);
64 return BAD_VALUE; // this token is already taken
66 ssize_t err = _insertTokenAt(token, o);
70 status_t Tokenizer::release(uint32_t token)
    [all...]
  /packages/apps/IM/libwbxml/src/
imps_encoder.cpp 26 * - so called "token" based IMPS value encoding
163 int token = csp13ValueTokenToKey(chars, len); local
164 if (token == -1) {
168 encodeMbuint(token);

Completed in 540 milliseconds

1 2 3 4 5 6 7