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

<<11121314151617181920>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ASTParser.stg 35 * token, set, rule, wildcard
46 // TOKEN AST STUFF
49 tokenRef(token, label, elementIndex, terminalOptions) ::= <<
60 tokenRefBang(token,label,elementIndex,terminalOptions) ::= "<super.tokenRef(...)>"
63 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
72 tokenRefBangAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
78 /** label+=TOKEN when output=AST but not rewrite alt */
79 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
85 /** Match label+=TOKEN^ when output=AST but not rewrite alt */
86 tokenRefRuleRootAndListLabel(token,label,terminalOptions,elementIndex) ::= <
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SearchIndexManager.java 178 public void appendToken(String token) {
179 if (TextUtils.isEmpty(token)) {
186 mSbTokens.append(token);
200 // Then, if the name contains more than one FTS token, put each token into the index
213 // So, here, we put each token in a name into the index too. In the case above,
410 * Token separator that matches SQLite's "simple" tokenizer.
424 for (String token : FTS_TOKEN_SEPARATOR_RE.split(s)) {
425 if (!TextUtils.isEmpty(token)) {
426 ret.add(token);
    [all...]
  /development/perftests/panorama/feature_stab/src/dbregtest/
dbregtest.cpp 320 string token; local
322 while (cmdline >> token)
326 int pos = token.find("-");
330 switch (token[1])
333 --c; cmdline >> token; local
334 if (token.compare("rt") == 0)
338 else if (token.compare("a") == 0)
342 else if (token.compare("p") == 0)
371 cerr << progname << "illegal option " << token << endl;
388 image_list_file_name = token;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
AST.stg 86 :{it | stream_<it> = RewriteRule<rewriteElementType>Stream(self._adaptor, "token <it>")}; separator="\n">
110 tokenRefTrack(token,label,elementIndex,terminalOptions) ::= <<
112 <finishedBacktracking({stream_<token>.add(<label>)})>
118 tokenRefTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
124 tokenRefRuleRootTrack(token,label,elementIndex,terminalOptions) ::= <<
126 <finishedBacktracking({stream_<token>.add(<label>)})>
129 /** Match ^(label+=TOKEN ...) track for rewrite */
130 tokenRefRuleRootTrackAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
174 # token labels: <referencedTokenLabels; separator=", ">
176 # token list labels: <referencedTokenListLabels; separator=", "
    [all...]
  /external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
rest_api.py 83 token = ndb.StringProperty() variable in class:_AE_TokenStorage_
89 """Get a fresh authentication token.
96 An ndb.Return with a tuple (token, expiration_time) where expiration_time is
101 token, expires_at = yield rpc
102 raise ndb.Return((token, expires_at))
125 (scopes, service_account_id) -> (token, expires).
193 """Get an authentication token.
195 The token is cached in memcache, keyed by the scopes argument.
196 Uses a random token expiration headroom value generated in the constructor
200 refresh: If True, ignore a cached token; default False
    [all...]
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBarService.aidl 32 void disable(int what, IBinder token, String pkg);
33 void disableForUser(int what, IBinder token, String pkg, int userId);
34 void disable2(int what, IBinder token, String pkg);
35 void disable2ForUser(int what, IBinder token, String pkg, int userId);
40 void setImeWindowStatus(in IBinder token, int vis, int backDisposition,
  /frameworks/native/libs/binder/
IAppOpsService.cpp 63 virtual int32_t startOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
67 data.writeStrongBinder(token);
77 virtual void finishOperation(const sp<IBinder>& token, int32_t code, int32_t uid,
81 data.writeStrongBinder(token);
158 sp<IBinder> token = data.readStrongBinder(); local
162 int32_t res = startOperation(token, code, uid, packageName);
169 sp<IBinder> token = data.readStrongBinder(); local
173 finishOperation(token, code, uid, packageName);
196 sp<IBinder> token = getToken(clientToken); local
198 reply->writeStrongBinder(token);
    [all...]
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 320 string token; local
322 while (cmdline >> token)
326 int pos = token.find("-");
330 switch (token[1])
333 --c; cmdline >> token; local
334 if (token.compare("rt") == 0)
338 else if (token.compare("a") == 0)
342 else if (token.compare("p") == 0)
371 cerr << progname << "illegal option " << token << endl;
388 image_list_file_name = token;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
dbregtest.cpp 320 string token; local
322 while (cmdline >> token)
326 int pos = token.find("-");
330 switch (token[1])
333 --c; cmdline >> token; local
334 if (token.compare("rt") == 0)
338 else if (token.compare("a") == 0)
342 else if (token.compare("p") == 0)
371 cerr << progname << "illegal option " << token << endl;
388 image_list_file_name = token;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 100 tokens.delete(a.token.getTokenIndex());
101 killTrailingNewline(tokens, a.token.getTokenIndex());
109 tokens.delete(a.token.getTokenIndex(),
110 ret.token.getTokenIndex());
117 tokens.replace(a.token.getTokenIndex(), "/*"+a.getText()+"*/");
156 tokens.delete(a.token.getTokenIndex()); // kill "id="
157 tokens.delete(child.token.getTokenIndex());
166 tokens.delete(a.token.getTokenIndex()); // kill "id+="
167 tokens.delete(child.token.getTokenIndex());
183 tokens.delete(a.token.getTokenIndex(), stop)
    [all...]
  /external/elfutils/src/src/
ldscript.y 78 %token kADD_OP
79 %token kALIGN
80 %token kAS_NEEDED
81 %token kENTRY
82 %token kEXCLUDE_FILE
83 %token <str> kFILENAME
84 %token kGLOBAL
85 %token kGROUP
86 %token <str> kID
87 %token kINPU
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.java 96 public boolean finishActivity(IBinder token, int code, Intent data, boolean finishTask)
98 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
99 public boolean finishActivityAffinity(IBinder token) throws RemoteException;
101 public boolean releaseActivityInstance(IBinder token) throws RemoteException;
103 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
116 public void activityResumed(IBinder token) throws RemoteException;
117 public void activityIdle(IBinder token, Configuration config,
119 public void activityPaused(IBinder token) throws RemoteException;
120 public void activityStopped(IBinder token, Bundle state,
122 public void activitySlept(IBinder token) throws RemoteException
    [all...]
ApplicationThreadNative.java 224 IBinder token = data.readStrongBinder(); local
228 scheduleCreateService(token, info, compatInfo, processState);
234 IBinder token = data.readStrongBinder(); local
238 scheduleBindService(token, intent, rebind, processState);
244 IBinder token = data.readStrongBinder(); local
246 scheduleUnbindService(token, intent);
253 IBinder token = data.readStrongBinder(); local
263 scheduleServiceArgs(token, taskRemoved, startId, fl, args);
270 IBinder token = data.readStrongBinder(); local
271 scheduleStopService(token);
616 IBinder token = data.readStrongBinder(); local
626 IBinder token = data.readStrongBinder(); local
663 IBinder token = data.readStrongBinder(); local
672 IBinder token = data.readStrongBinder(); local
682 IBinder token = data.readStrongBinder(); local
    [all...]
  /external/freetype/src/psaux/
psobjs.c 502 /* the first character which isn't part of the just handled token. */
589 " current token is `%c' which is self-delimiting\n"
609 /* `token' here means either something between balanced delimiters */
610 /* or the next token; the delimiters are not removed. */
614 T1_Token token )
621 token->type = T1_TOKEN_TYPE_NONE;
622 token->start = NULL;
623 token->limit = NULL;
638 token->type = T1_TOKEN_TYPE_STRING;
639 token->start = cur
743 T1_TokenRec token; local
1026 T1_TokenRec token; local
1297 T1_Token token; local
    [all...]
  /external/pdfium/third_party/freetype/src/psaux/
psobjs.c 508 /* the first character which isn't part of the just handled token. */
595 " current token is `%c' which is self-delimiting\n"
615 /* `token' here means either something between balanced delimiters */
616 /* or the next token; the delimiters are not removed. */
620 T1_Token token )
627 token->type = T1_TOKEN_TYPE_NONE;
628 token->start = 0;
629 token->limit = 0;
644 token->type = T1_TOKEN_TYPE_STRING;
645 token->start = cur
749 T1_TokenRec token; local
1032 T1_TokenRec token; local
1303 T1_Token token; local
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
AsyncQueryServiceTest.java 113 work[index].token = ++mId;
125 aqs.startQuery(work[index].token, work[index].cookie, work[index].uri,
142 work[index].token = ++mId;
152 aqs.startInsert(work[index].token, work[index].cookie, work[index].uri, work[index].values,
168 work[index].token = ++mId;
180 aqs.startUpdate(work[index].token, work[index].cookie, work[index].uri, work[index].values,
196 work[index].token = ++mId;
206 aqs.startDelete(work[index].token,
226 work[index].token = ++mId;
239 aqs.startBatch(work[index].token,
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3treeparser.c 117 /* Now update it to indicate this is a Mismatched token exception
185 // Default implementation is for parser and assumes a token stream as supplied by the runtime.
200 // Default implementation is for parser and assumes a token stream as supplied by the runtime.
211 pANTLR3_COMMON_TOKEN token; local
237 // Find the newly dupicated token
239 token = node->getToken(node);
241 // Create the token text that shows it has been inserted
243 token->setText8 (token, (pANTLR3_UINT8)"<missing ");
244 text = token->getText (token)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventRepeater.cs 80 public virtual void ConsumeToken(IToken token) {
81 _listener.ConsumeToken(token);
83 public virtual void ConsumeHiddenToken(IToken token) {
84 _listener.ConsumeHiddenToken(token);
146 public virtual void CreateNode(object node, IToken token) {
147 _listener.CreateNode(node, token);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventRepeater.cs 92 public virtual void ConsumeToken( IToken token )
94 _listener.ConsumeToken( token );
96 public virtual void ConsumeHiddenToken( IToken token )
98 _listener.ConsumeHiddenToken( token );
177 public virtual void CreateNode( object node, IToken token )
179 _listener.CreateNode( node, token );
  /external/iptables/extensions/
libxt_bpf.c 43 const char *token; local
61 token = bpf_program;
62 while ((token = strchr(token, separator)) && (++token)[0]) {
67 if (sscanf(token, "%hu %hhu %hhu %u,",
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 14 | Some (Token.Kwd ';') ->
18 | Some token ->
20 try match token with
21 | Token.Def ->
25 | Token.Extern ->
44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 14 | Some (Token.Kwd ';') ->
18 | Some token ->
20 try match token with
21 | Token.Def ->
25 | Token.Extern ->
44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 14 | Some (Token.Kwd ';') ->
18 | Some token ->
20 try match token with
21 | Token.Def ->
25 | Token.Extern ->
44 (* Skip token for error recovery. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 14 | Some (Token.Kwd ';') ->
18 | Some token ->
20 try match token with
21 | Token.Def ->
25 | Token.Extern ->
44 (* Skip token for error recovery. *)
  /frameworks/base/core/java/android/app/backup/
IBackupManager.aidl 71 void restoreAtInstall(String packageName, int token);
192 * UI calls back into the Backup Manager to confirm, passing the correct token. At
203 void acknowledgeFullBackupOrRestore(int token, boolean allow,
287 * corresponding to the given token.
289 * @param token The transaction token passed to the BackupAgent method being
296 void opComplete(int token, long result);
325 * @return The dataset token from which a restore should be attempted, or zero if

Completed in 617 milliseconds

<<11121314151617181920>>