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

1 2 3 4 5 6 7 8 91011>>

  /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
char_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class char_token extends token {
int_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class int_token extends token {
long_token.java 4 /** This subclass of token represents symbols that need to maintain one
13 public class long_token extends token {
  /frameworks/base/core/java/android/os/
IVibratorService.aidl 22 void vibrate(long milliseconds, IBinder token);
23 void vibratePattern(in long[] pattern, int repeat, IBinder token);
24 void cancelVibrate(IBinder token);
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...]
  /cts/tools/dasm/src/dasm/
ReservedWords.java 21 import java_cup.runtime.token;
24 static Hashtable<String, token> reserved_words;
26 public static token get(String name) {
27 return (token) reserved_words.get(name);
35 reserved_words = new Hashtable<String, token>();
38 reserved_words.put(".annotation", new token(sym.DANNOTATION));
39 reserved_words.put(".attribute", new token(sym.DATTRIBUTE));
40 reserved_words.put(".bytecode", new token(sym.DBYTECODE));
41 reserved_words.put(".catch", new token(sym.DCATCH));
42 reserved_words.put(".class", new token(sym.DCLASS))
    [all...]
  /external/srec/tools/cmd/
srecres2utd.pl 51 if(defined %token) {
52 process(\%token, \%results);
53 dump_record($hUTD, \%token);
57 undef %token;
58 $token{file} = $file;
60 $token{gender} = $gender{$1};
61 $token{"snr"} = get_snr($file) if($additional_fieldh{"snr"});
62 $token{"snrr"} = sprintf("%.2d",int(get_snr($file)/5+0.5)*5) if($additional_fieldh{"snrr"});
64 $token{ortho} = normalize($1);
68 $token{parsed_ortho} = $augval
    [all...]
  /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;
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 156 String token = ""; local
160 token = tokenizer.nextToken();
164 (token.equals(" ") || token.equals("\t") || token.equals("=")))
167 String name = token;
170 token = tokenizer.nextToken();
172 (token.equals(" " ) || token.equals("\t") || token.equals("="))
    [all...]
  /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);
  /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...]
Tokenizer.h 35 status_t reserve(uint32_t token);
36 status_t release(uint32_t token);
37 bool isAcquired(uint32_t token) const;
48 ssize_t _indexOrderOf(uint32_t token, size_t* order=0) const;
49 ssize_t _insertTokenAt(uint32_t token, size_t index);
  /frameworks/base/opengl/libagl/
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...]
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.h 37 status_t reserve(uint32_t token);
38 status_t release(uint32_t token);
39 bool isAcquired(uint32_t token) const;
50 ssize_t _indexOrderOf(uint32_t token, size_t* order=0) const;
51 ssize_t _insertTokenAt(uint32_t token, size_t index);
  /external/webkit/JavaScriptCore/runtime/
LiteralParser.cpp 38 LiteralParser::TokenType LiteralParser::Lexer::lex(LiteralParserToken& token)
45 token.type = TokEnd;
46 token.start = token.end = m_ptr;
49 token.type = TokError;
50 token.start = m_ptr;
53 token.type = TokLBracket;
54 token.end = ++m_ptr;
57 token.type = TokRBracket;
58 token.end = ++m_ptr
    [all...]
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 59 void pauseKeyDispatching(IBinder token);
60 void resumeKeyDispatching(IBinder token);
62 void addWindowToken(IBinder token, int type);
63 void removeWindowToken(IBinder token);
64 void addAppToken(int addPos, IApplicationToken token,
66 void setAppGroupId(IBinder token, int groupId);
67 void setAppOrientation(IApplicationToken token, int requestedOrientation);
68 int getAppOrientation(IApplicationToken token);
69 void setFocusedApp(IBinder token, boolean moveFocusNow);
74 void setAppStartingWindow(IBinder token, String pkg, int theme
    [all...]
  /packages/apps/IM/libwbxml/include/
wbxml_tabledef.h 27 int token; member in struct:tagTokenData
33 int token; member in struct:tagAttrData
  /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;
  /frameworks/base/core/jni/
android_util_XmlBlock.cpp 72 jint token)
74 ResXMLTree* osb = (ResXMLTree*)token;
84 jint token)
86 ResXMLTree* osb = (ResXMLTree*)token;
104 jint token)
106 ResXMLParser* st = (ResXMLParser*)token;
136 jint token)
138 ResXMLParser* st = (ResXMLParser*)token;
147 jint token)
149 ResXMLParser* st = (ResXMLParser*)token;
    [all...]
  /external/srec/srec/EventLog/src/
EventLog.c 36 ESR_ReturnCode SR_EventLogToken(SR_EventLog* self, const LCHAR* token, const LCHAR *value)
43 return self->token(self, token, value);
46 ESR_ReturnCode SR_EventLogTokenInt(SR_EventLog* self, const LCHAR* token, int value)
53 return self->tokenInt(self, token, value);
56 ESR_ReturnCode SR_EventLogTokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value)
63 return self->tokenUint16_t(self, token, value);
66 ESR_ReturnCode SR_EventLogTokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value)
73 return self->tokenSize_t(self, token, value);
76 ESR_ReturnCode SR_EventLogTokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value
    [all...]
  /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...]
  /external/icu4c/test/intltest/
tokiter.cpp 25 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) {
29 token.truncate(0);
40 if (!nextToken(token, ec)) {
54 * Read the next token from 'this->line' and append it to 'token'.
59 * @param token the token is appended to this StringBuffer
61 * @return TRUE if a valid token is found, or FALSE if the end
64 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) {
79 token.append(c)
    [all...]
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 278 int token = 0;
290 token = ';';
302 token = URSHIFTEQUAL;
306 token = URSHIFT;
312 token = RSHIFTEQUAL;
316 token = RSHIFT;
321 token = GE;
325 token = '>';
331 token = STREQ;
335 token = EQEQ
    [all...]

Completed in 542 milliseconds

1 2 3 4 5 6 7 8 91011>>