HomeSort by relevance Sort by last modified time
    Searched refs:token (Results 126 - 150 of 1832) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4c/source/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);
  /frameworks/base/core/java/android/service/voice/
IVoiceInteractionSessionService.aidl 27 void newSession(IBinder token, in Bundle args, int startFlags);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pyclbr.py 45 from token import NAME, DEDENT, OP
155 for tokentype, token, start, _end, _line in g:
161 elif token == 'def':
180 elif token == 'class':
189 tokentype, token, start = g.next()[0:3]
191 if token == '(':
197 tokentype, token, start = g.next()[0:3]
198 if token in (')', ',') and level == 1:
217 if token == '(':
219 elif token == ')'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pyclbr.py 45 from token import NAME, DEDENT, OP
155 for tokentype, token, start, _end, _line in g:
161 elif token == 'def':
180 elif token == 'class':
189 tokentype, token, start = g.next()[0:3]
191 if token == '(':
197 tokentype, token, start = g.next()[0:3]
198 if token in (')', ',') and level == 1:
217 if token == '(':
219 elif token == ')'
    [all...]
  /external/google-breakpad/src/processor/
postfix_evaluator-inl.h 71 const string &token,
88 if (token == "+")
90 else if (token == "-")
92 else if (token == "*")
94 else if (token == "/")
96 else if (token == "%")
98 else if (token == "@")
107 "operation " << token << ": " << expression;
143 } else if (token == "^") {
166 } else if (token == "=")
210 string token; local
319 string token; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
InReplyToParser.java 79 Token token = lexer.getNextToken(); local
83 Token secToken = lexer.getNextToken();
85 token.getTokenValue() + "@" + secToken.getTokenValue());
87 inReplyTo.setCallId(token.getTokenValue());
101 token = lexer.getNextToken();
105 Token secToken = lexer.getNextToken();
107 token.getTokenValue()
111 inReplyTo.setCallId(token.getTokenValue());
SubscriptionStateParser.java 78 Token token = lexer.getNextToken(); local
79 subscriptionState.setState(token.getTokenValue());
85 token = lexer.getNextToken();
86 String value = token.getTokenValue();
91 token = lexer.getNextToken();
92 value = token.getTokenValue();
98 token = lexer.getNextToken();
99 value = token.getTokenValue();
112 token = lexer.getNextToken()
    [all...]
  /frameworks/base/core/java/android/security/keymaster/
OperationResult.java 30 public final IBinder token; field in class:OperationResult
50 int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output,
53 this.token = token;
62 token = in.readStrongBinder();
77 out.writeStrongBinder(token);
  /frameworks/base/core/java/android/service/dreams/
IDreamManager.aidl 33 void finishSelf(in IBinder token, boolean immediate);
34 void startDozing(in IBinder token, int screenState, int screenBrightness);
35 void stopDozing(in IBinder token);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
NoNullCursorAsyncQueryHandler.java 36 public void startQuery(int token, Object cookie, Uri uri, String[] projection, String selection,
39 super.startQuery(token, projectionCookie, uri, projection, selection, selectionArgs,
44 protected final void onQueryComplete(int token, Object cookie, Cursor cursor) {
47 super.onQueryComplete(token, projectionCookie.originalCookie, cursor);
52 onNotNullableQueryComplete(token, projectionCookie.originalCookie, cursor);
55 protected abstract void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor);
  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
ecmametadatapass.py 29 """Exception indicating a parse error at the given token.
32 token: The token where the parse error occurred.
35 def __init__(self, token, message=None):
36 """Initialize a parse error at the given token with an optional message.
39 token: The token where the parse error occurred.
43 self.token = token
51 start_token: The token where this context starts
    [all...]
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/appengine/auth/
models.py 135 token = model.StringProperty(required=True) variable in class:UserToken
138 def get_key(cls, user, subject, token):
139 """Returns a token key.
148 :param token:
149 Randomly generated token.
152 ``{user_id}.{subject}.{token}.``
154 return model.Key(cls, '%s.%s.%s' % (str(user), subject, token))
157 def create(cls, user, subject, token=None):
158 """Creates a new token for the given user.
167 :param token
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
parse.py 84 token = XmlToken(ELEMENT_START, name, attributes, line, column)
85 self.tokens.append(token)
90 token = XmlToken(ELEMENT_END, name, None, line, column)
91 self.tokens.append(token)
102 token = XmlToken(CHARACTER_DATA, self.character_data, None, line, column)
103 self.tokens.append(token)
124 token = XmlToken(EOF, None, None, line, column)
126 token = self.tokens[self.index]
128 return token
153 self.token = self.tokenizer.next(
    [all...]
  /system/security/keystore/
operation.cpp 33 sp<IBinder> token = new BBinder(); local
34 mMap[token] = std::move(Operation(handle, keyid, purpose, dev, characteristics, appToken));
36 mLru.push_back(token);
41 mAppTokenMap[appToken].push_back(token);
42 return token;
45 bool OperationMap::getOperation(sp<IBinder> token, keymaster_operation_handle_t* outHandle,
52 auto entry = mMap.find(token);
56 updateLru(token);
68 void OperationMap::updateLru(sp<IBinder> token) {
69 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonToken.as 32 public class CommonToken implements Token {
45 /** What token number is this from 0..n-1 tokens; < 0 implies invalid index */
48 /** The char position into the input buffer where this token starts */
51 /** The char position into the input buffer where this token stops */
60 var token:CommonToken = new CommonToken(type);
61 token._input = input;
62 token._channel = channel;
63 token._start = start;
64 token._stop = stop;
65 return token;
    [all...]
RecognitionException.as 40 * exceptions are built with the expected token type.
57 * state can change before the exception is reported so current token index
59 * perhaps print an entire line of input not just a single token, for example.
67 /** What is index of token/char were we looking at when the error occurred? */
70 /** The current Token when an error occurred. Since not all streams
71 * can retrieve the ith Token, we have to track the Token object.
72 * For parsers. Even when it's a tree parser, token might be set.
74 public var token:Token; variable
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
IVoiceInteractionManagerService.aidl 32 boolean deliverNewSession(IBinder token, IVoiceInteractionSession session,
34 boolean showSessionFromSession(IBinder token, in Bundle sessionArgs, int flags);
35 boolean hideSessionFromSession(IBinder token);
36 int startVoiceActivity(IBinder token, in Intent intent, String resolvedType);
37 void setKeepAwake(IBinder token, boolean keepAwake);
38 void closeSystemDialogs(IBinder token);
39 void finish(IBinder token);
102 * @param activityToken optional token of activity that needs to be on top
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 23 has 'token' => (
25 does => 'ANTLR::Runtime::Token',
69 my $token = $input->LT(1);
70 $new_args->{token} = $token;
71 $new_args->{line} = $token->get_line();
72 $new_args->{char_position_in_line} = $token->get_char_position_in_line();
94 return $self->token->get_type();
117 return $self->token;
  /frameworks/base/core/java/android/view/
IWindowManager.aidl 78 void pauseKeyDispatching(IBinder token);
79 void resumeKeyDispatching(IBinder token);
81 void addWindowToken(IBinder token, int type);
82 void removeWindowToken(IBinder token);
83 void addAppToken(int addPos, IApplicationToken token, int groupId, int stackId,
86 void setAppTask(IBinder token, int taskId);
87 void setAppOrientation(IApplicationToken token, int requestedOrientation);
88 int getAppOrientation(IApplicationToken token);
89 void setFocusedApp(IBinder token, boolean moveFocusNow);
105 void setAppStartingWindow(IBinder token, String pkg, int theme
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 72 int token = msg.what; local
109 // passing the original token value back to the caller
111 Message reply = args.handler.obtainMessage(token);
146 * @param token A token passed into {@link #onQueryComplete} to identify
164 public void startQuery(int token, Object cookie, Uri uri,
167 // Use the token as what so cancelOperations works properly
168 Message msg = mWorkerThreadHandler.obtainMessage(token);
190 * @param token The token representing the operation to be canceled
338 int token = msg.what; local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
ScriptParser.yy 82 %token END 0 /* EOF */
83 %token <string> STRING LNAMESPEC
84 %token <integer> INTEGER
87 %token LINKER_SCRIPT DEFSYM VERSION_SCRIPT DYNAMIC_LIST
90 %token ENTRY
92 %token INCLUDE
93 %token INPUT
94 %token GROUP
95 %token AS_NEEDED
96 %token OUTPU
    [all...]
GroupCmd.cpp 87 InputToken* token = llvm::cast<InputToken>(*it); local
88 if (token->asNeeded())
93 switch (token->type()) {
100 (token->name().size() > 0 && token->name()[0] == '/')) {
102 path.append(token->name());
105 path.assign(token->name());
109 script.directories().find(token->name(), Input::Script);
130 path = script.directories().find(token->name(), Input::Archive);
134 path = script.directories().find(token->name(), Input::DynObj)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 39 * exceptions are built with the expected token type.
56 * state can change before the exception is reported so current token index
58 * perhaps print an entire line of input not just a single token, for example.
66 /** What is index of token/char were we looking at when the error occurred? */
69 /** The current Token when an error occurred. Since not all streams
70 * can retrieve the ith Token, we have to track the Token object.
71 * For parsers. Even when it's a tree parser, token might be set.
73 public Token token; field in class:RecognitionException
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 8 * exceptions are built with the expected token type.
20 * state can change before the exception is reported so current token index
22 * perhaps print an entire line of input not just a single token, for example.
36 this.token = input.LT(1);
37 this.line = this.token.getLine();
38 this.charPositionInLine = this.token.getCharPositionInLine();
65 /** What is index of token/char were we looking at when the error occurred?
70 /** The current Token when an error occurred. Since not all streams
71 * can retrieve the ith Token, we have to track the Token object
    [all...]
  /external/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 286 for token in self.alias:
287 if token is not None and name == token.name:
341 for token in token_list:
342 if token.name == node.name:
466 token = tokens[end]
468 if token.name == '<':
470 elif token.name == '>':
477 """Convert [Token,...] to [Class(...), ] useful for base classes.
506 token = tokens[i
    [all...]

Completed in 482 milliseconds

1 2 3 4 56 7 8 91011>>