HomeSort by relevance Sort by last modified time
    Searched full:token (Results 51 - 75 of 1146) sorted by null

1 23 4 5 6 7 8 91011>>

  /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...]
  /external/qemu/android/
charmap.c 48 /* Maximum length of a token in a key map line. */
281 /* Checks if a character represents a token separator.
282 * Returns a non-zero value if ch is a token separator.
283 * Returns zero value if ch is not a token separator.
334 /* Gets first token from a string.
335 * line - String to get token from. End of the string should be
337 * token - String where to copy token. Token, copied to this
339 * token string must be large enough to fit token of any size
442 char token[KCM_MAX_TOKEN_LEN]; local
469 char token[KCM_MAX_TOKEN_LEN]; local
    [all...]
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 42 * This implementation parses <tt>#token<tt> sequences as
67 * The token to be returned by the next call to {@link #currentToken}.
102 * Obtains the next token from this iteration.
104 * @return the next token in this iteration
125 * Returns the next token.
128 * @return the next token in this iteration
153 * Determines the next token.
154 * If found, the token is stored in {@link #currentToken}.
155 * The return value indicates the position after the token
163 * @return the position after the found token in the current header, o
    [all...]
  /external/iproute2/tc/
emp_ematch.y 10 %token-table
27 %token <i> ERROR
28 %token <b> ATTRIBUTE
29 %token <i> AND OR NOT
  /external/quake/quake/src/QW/server/
notes.txt 3 - server includes 32bit random token S
  /frameworks/base/core/java/android/app/
IApplicationThread.java 46 void schedulePauseActivity(IBinder token, boolean finished, boolean userLeaving,
48 void scheduleStopActivity(IBinder token, boolean showWindow,
50 void scheduleWindowVisibility(IBinder token, boolean showWindow) throws RemoteException;
51 void scheduleResumeActivity(IBinder token, boolean isForward) throws RemoteException;
52 void scheduleSendResult(IBinder token, List<ResultInfo> results) throws RemoteException;
53 void scheduleLaunchActivity(Intent intent, IBinder token, int ident,
57 void scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults,
60 void scheduleNewIntent(List<Intent> intent, IBinder token) throws RemoteException;
61 void scheduleDestroyActivity(IBinder token, boolean finished,
70 void scheduleCreateService(IBinder token, ServiceInfo info) throws RemoteException
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserConstants.java 74 "<token of kind 39>",
76 "<token of kind 41>",
77 "<token of kind 42>",
80 "<token of kind 45>",
  /external/libxml2/include/libxml/
xmlautomata.h 59 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,
  /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/icu4c/test/intltest/
tokiter.h 39 * Return the next token from this iterator.
40 * @return TRUE if a token was read, or FALSE if no more tokens
43 UBool next(UnicodeString& token, UErrorCode& ec);
46 * Return the one-based line number of the line of the last token
61 UBool nextToken(UnicodeString& token, UErrorCode& ec);
  /external/v8/src/
parser.cc 51 // PositionStack is used for on-stack allocation of token positions for
131 void ReportUnexpectedToken(Token::Value token);
246 INLINE(Token::Value peek()) { return scanner_.peek(); }
247 INLINE(Token::Value Next()) { return scanner_.Next(); }
248 INLINE(void Consume(Token::Value token));
249 void Expect(Token::Value token, bool* ok);
250 bool Check(Token::Value token)
3917 const char* token = scanner_.literal_string(); local
4046 Token::Value token = peek(); local
    [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...]
  /frameworks/base/services/java/com/android/server/
VibratorService.java 50 Vibration(IBinder token, long millis) {
51 this(token, millis, null, 0);
54 Vibration(IBinder token, long[] pattern, int repeat) {
55 this(token, 0, pattern, repeat);
58 private Vibration(IBinder token, long millis, long[] pattern,
60 mToken = token;
111 public void vibrate(long milliseconds, IBinder token) {
125 Vibration vib = new Vibration(token, milliseconds);
127 removeVibrationLocked(token);
144 public void vibratePattern(long[] pattern, int repeat, IBinder token) {
    [all...]
  /external/srec/srec/EventLog/include/
SR_EventLogImpl.h 76 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value);
78 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenInt(SR_EventLog* self, const LCHAR* token, int value);
80 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value);
82 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value);
84 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value);
86 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_TokenFloat(SR_EventLog* self, const LCHAR* token, float value);
  /external/srec/srec/Semproc/include/
SR_LexicalAnalyzer.h 44 * Pointer to the next token in the script.
71 * Gets the next token.
73 * @param token buffer to hold the next token
74 * @param tokenLen length of token
76 SREC_SEMPROC_API ESR_ReturnCode LA_nextToken(LexicalAnalyzer *self, LCHAR* token, size_t* tokenLen);
  /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);
  /external/webkit/WebCore/xml/
XPathParser.cpp 127 /* Returns whether the last parsed token matches the [32] Operator rule
153 Token Parser::makeTokenAndAdvance(int code, int advance)
156 return Token(code);
159 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance)
162 return Token(code, val);
165 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
168 return Token(code, val);
192 Token Parser::lexString()
203 return Token(LITERAL, value);
208 return Token(XPATH_ERROR)
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/info/
cppinternals.info 44 written with the preprocessing token as the fundamental unit; the
60 * Token Spacing:: Spacing and paste avoidance issues.
107 interface for obtaining the next token, `cpp_get_token', takes care of
110 clients of the library can easily spell a given token, such as
114 Lexing a token
117 Lexing of an individual token is handled by `_cpp_lex_direct' and its
125 The job of `_cpp_lex_direct' is simply to lex a token. It is not
132 The lexer places the token it lexes into storage pointed to by the
136 `line' and `col' values of the token just before the location that
139 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/info/
cppinternals.info 45 written with the preprocessing token as the fundamental unit; the
61 * Token Spacing:: Spacing and paste avoidance issues.
108 interface for obtaining the next token, `cpp_get_token', takes care of
111 clients of the library can easily spell a given token, such as
115 Lexing a token
118 Lexing of an individual token is handled by `_cpp_lex_direct' and its
126 The job of `_cpp_lex_direct' is simply to lex a token. It is not
133 The lexer places the token it lexes into storage pointed to by the
137 `line' and `col' values of the token just before the location that
140 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/info/
cppinternals.info 45 written with the preprocessing token as the fundamental unit; the
61 * Token Spacing:: Spacing and paste avoidance issues.
108 interface for obtaining the next token, `cpp_get_token', takes care of
111 clients of the library can easily spell a given token, such as
115 Lexing a token
118 Lexing of an individual token is handled by `_cpp_lex_direct' and its
126 The job of `_cpp_lex_direct' is simply to lex a token. It is not
133 The lexer places the token it lexes into storage pointed to by the
137 `line' and `col' values of the token just before the location that
140 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/info/
cppinternals.info 44 written with the preprocessing token as the fundamental unit; the
60 * Token Spacing:: Spacing and paste avoidance issues.
107 interface for obtaining the next token, `cpp_get_token', takes care of
110 clients of the library can easily spell a given token, such as
114 Lexing a token
117 Lexing of an individual token is handled by `_cpp_lex_direct' and its
125 The job of `_cpp_lex_direct' is simply to lex a token. It is not
132 The lexer places the token it lexes into storage pointed to by the
136 `line' and `col' values of the token just before the location that
139 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/info/
cppinternals.info 45 written with the preprocessing token as the fundamental unit; the
61 * Token Spacing:: Spacing and paste avoidance issues.
108 interface for obtaining the next token, `cpp_get_token', takes care of
111 clients of the library can easily spell a given token, such as
115 Lexing a token
118 Lexing of an individual token is handled by `_cpp_lex_direct' and its
126 The job of `_cpp_lex_direct' is simply to lex a token. It is not
133 The lexer places the token it lexes into storage pointed to by the
137 `line' and `col' values of the token just before the location that
140 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/info/
cppinternals.info 45 written with the preprocessing token as the fundamental unit; the
61 * Token Spacing:: Spacing and paste avoidance issues.
108 interface for obtaining the next token, `cpp_get_token', takes care of
111 clients of the library can easily spell a given token, such as
115 Lexing a token
118 Lexing of an individual token is handled by `_cpp_lex_direct' and its
126 The job of `_cpp_lex_direct' is simply to lex a token. It is not
133 The lexer places the token it lexes into storage pointed to by the
137 `line' and `col' values of the token just before the location that
140 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/info/
cppinternals.info 44 written with the preprocessing token as the fundamental unit; the
60 * Token Spacing:: Spacing and paste avoidance issues.
107 interface for obtaining the next token, `cpp_get_token', takes care of
110 clients of the library can easily spell a given token, such as
114 Lexing a token
117 Lexing of an individual token is handled by `_cpp_lex_direct' and its
125 The job of `_cpp_lex_direct' is simply to lex a token. It is not
132 The lexer places the token it lexes into storage pointed to by the
136 `line' and `col' values of the token just before the location that
139 The lexer does not consider whitespace to be a token in its ow
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
HanziToPinyin.java 308 public static class Token {
318 public Token() {
321 public Token(int type, String source, String target) {
327 * Type of this token, ASCII, PINYIN or UNKNOWN.
364 private Token getToken(char character) {
365 Token token = new Token(); local
367 token.source = letter;
371 token.type = Token.LATIN
    [all...]

Completed in 203 milliseconds

1 23 4 5 6 7 8 91011>>