/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PAccessNetworkInfoParser.java | 37 import gov.nist.core.Token; 58 * "3GPP-UTRAN-TDD" / "3GPP-CDMA2000" / token 61 * cgi-3gpp = "cgi-3gpp" EQUAL (token / quoted-string) 62 * utran-cell-id-3gpp = "utran-cell-id-3gpp" EQUAL (token / quoted-string) 99 Token token = lexer.getNextToken(); local 100 accessNetworkInfo.setAccessType(token.getTokenValue());
|
PMediaAuthorizationParser.java | 39 import gov.nist.core.Token; 91 Token token = lexer.getNextToken(); local 93 mediaAuthorization.setMediaAuthorizationToken(token.getTokenValue());
|
/external/webkit/Source/WebCore/inspector/front-end/ |
DOMSyntaxHighlighter.js | 64 var token = line.substring(column, newColumn); 65 node.appendChild(this.createSpan(token, tokenType));
|
/frameworks/base/core/java/android/os/ |
Handler.java | 307 public final boolean postAtTime(Runnable r, Object token, long uptimeMillis) 309 return sendMessageAtTime(getPostMessage(r, token), uptimeMillis); 364 * <var>token</var> that are in the message queue. If <var>token</var> is null, 367 public final void removeCallbacks(Runnable r, Object token) 369 mQueue.removeMessages(this, r, token); 521 * 'object' that are in the message queue. If <var>token</var> is null, 530 * <var>obj</var> is <var>token</var>. If <var>token</var> is null, 533 public final void removeCallbacksAndMessages(Object token) { [all...] |
/frameworks/base/core/java/com/android/internal/backup/ |
IBackupTransport.aidl | 140 * Get the identifying token of the backup set currently being stored from 144 * @return A token that can be passed to {@link #startRestore}, or 0 if there 154 * @param token A backup token as returned by {@link #getAvailableRestoreSets} 162 int startRestore(long token, in PackageInfo[] packages);
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
IStatusBar.aidl | 35 void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
ContextMenuBuilder.java | 72 * @param token Optional, the window token that should be set on the context 77 public MenuDialogHelper show(View originalView, IBinder token) { 88 helper.show(token);
|
/hardware/ril/mock-ril/src/java/com/android/internal/communication/ |
Msg.java | 120 * Send a message with cmd, token, status followed by the data. 124 * @param token for the header 129 public static final void send(RilChannel rc, int cmd, long token, int status, MessageMicro pb) 133 mh.setToken(token); 146 * Send a message with cmd, token, status followed by the data. 150 * @param token for the header 154 public static final void send(RilChannel rc, int cmd, long token, MessageMicro pb) 156 send(rc, cmd, token, 0, pb); 172 * Send a message with cmd, token and status but no data 176 * @param token for the heade [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
ProgressCallbackEntity.java | 40 public ProgressCallbackEntity(Context context, long token, byte[] b) { 45 mToken = token; 85 intent.putExtra("token", mToken);
|
/system/core/sh/ |
mktokens | 37 # token marks the end of a list. The third column is the name to print in 71 exec > token.h
|
/external/icu4c/i18n/ |
plurfmt.cpp | 132 UnicodeString token; local 158 token += ch; 164 if (token.length()==0) { 172 token += ch; 177 if (fParsedValuesHash->get(token)!= NULL) { 181 if (token.length()==0) { 185 if (!pluralRules->isKeyword(token)) { 189 hashKeyword = token; 191 token.remove(); 199 token += ch [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
win32.cc | 161 HANDLE process = GetCurrentProcess(), token; local 162 if (OpenProcessToken(process, TOKEN_QUERY | TOKEN_QUERY_SOURCE, &token)) { 164 if (!GetTokenInformation(token, TokenIntegrityLevel, NULL, 0, &size) && 170 if (GetTokenInformation(token, TokenIntegrityLevel, til, size, &size)) { 177 CloseHandle(token);
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
SyntaxTreeDumper.java | 25 import com.google.clearsilver.jsilver.syntax.node.Token; 74 } else if (node instanceof Token) { 75 Token token = (Token) node; local 76 String tokenType = token.getClass().getSimpleName().substring(1); 77 return tokenType + " [line:" + token.getLine() + ",pos:" + token.getPos() + "] \"" 78 + escape(token.getText()) + "\"";
|
/external/proguard/src/proguard/ant/ |
ClassSpecificationElement.java | 213 String token = tokenizer.nextToken(); local 215 if (token.startsWith("!") ^ set) 217 String strippedToken = token.startsWith("!") ? 218 token.substring(1) : 219 token;
|
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/javassist/src/main/javassist/compiler/ |
TypeChecker.java | 305 int token = expr.getOperator(); local 306 int k = CodeGen.lookupBinOp(token); 310 if (token == '+') { 329 if (!isConstant(expr, token, left, right)) 330 computeBinExprType(expr, token, type1); 464 int token = (value instanceof Double) local 466 return new DoubleConst(((Number)value).doubleValue(), token); 469 int token = (value instanceof Long) ? LongConstant : IntConstant; local 470 return new IntConst(((Number)value).longValue(), token); 482 int token = bexpr.getOperator() local 562 int token = expr.getOperator(); local 964 int token = k.get(); local [all...] |
/frameworks/base/core/java/com/google/android/util/ |
AbstractMessageParser.java | 73 private ArrayList<Token> tokens; 105 this.tokens = new ArrayList<Token>(); 130 // first token) 189 * Get a the appropriate Token for a given URL 195 public static Token tokenForUrl(String url, String text) { 235 Token token = tokens.get(i); local 236 if (token.isMedia() || (parts.size() == 0) || lastPart().isMedia()) { 239 lastPart().add(token); 453 // Figure out the appropriate token type [all...] |
/external/mesa3d/src/glsl/glcpp/ |
glcpp-parse.c | 162 /* Note: This function adds a hieralloc_reference() to token. 167 _token_list_append (token_list_t *list, token_t *token); 237 /* Enabling the token table. */ 671 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 672 token YYLEX-NUM. */ 779 positive, shift that token. If negative, reduce the rule which 3047 token_t *token; local 3059 token_t *token; local 3561 token_t *token; local 3743 token_t *token = node->token; local [all...] |
/external/chromium/chrome/browser/ |
shell_integration_linux.cc | 312 FilePath data_dir(tokenizer.token()); 377 if (tokenizer.token().substr(0, 5) == "Exec=") { 378 std::string exec_path = tokenizer.token().substr(5); 381 while (exec_tokenizer.GetNext() && exec_tokenizer.token() != "%U") { 384 final_path += exec_tokenizer.token(); 400 } else if (tokenizer.token().substr(0, 5) == "Name=") { 411 } else if (tokenizer.token().substr(0, 11) == "GenericName" || 412 tokenizer.token().substr(0, 7) == "Comment" || 413 tokenizer.token().substr(0, 1) == "#") { 415 } else if (tokenizer.token().substr(0, 9) == "MimeType=") [all...] |
/external/icu4c/tools/genrb/ |
parse.c | 64 /* keep in sync with token defines in read.h */ 67 "string", /* A string token, such as "MonthNames" */ 101 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value. 103 old slot is filled with the next token from the reader by calling getNextToken. 104 The token values are stored in the slot, which means that token values don't 224 enum ETokenType token = getToken(state, tokenValue, comment, &line, status); local 236 if (token != expectedToken) 239 error(line, "expecting %s, got %s", tokenNames[expectedToken], tokenNames[token]); 810 enum ETokenType token; local 1013 enum ETokenType token; local 1136 enum ETokenType token; local 1247 enum ETokenType token; local 1338 enum ETokenType token; local 1895 enum ETokenType token; local 2025 enum ETokenType token; local [all...] |
/frameworks/base/core/java/android/app/ |
IActivityManager.java | 104 public boolean finishActivity(IBinder token, int code, Intent data) 106 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException; 107 public boolean willActivityBeVisible(IBinder token) throws RemoteException; 123 public void activityIdle(IBinder token, Configuration config, 125 public void activityPaused(IBinder token) throws RemoteException; 127 public void activityStopped(IBinder token, Bundle state, 130 public void activitySlept(IBinder token) throws RemoteException; 132 public void activityDestroyed(IBinder token) throws RemoteException; 133 public String getCallingPackage(IBinder token) throws RemoteException; 134 public ComponentName getCallingActivity(IBinder token) throws RemoteException [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParser.java | 506 jjtreeOpenNodeScope(jjtn000);Token t; 568 jjtreeOpenNodeScope(jjtn000);Token t; 614 jj_la = xla; jj_lastpos = jj_scanpos = token; 621 jj_la = xla; jj_lastpos = jj_scanpos = token; 628 Token xsp; 640 Token xsp; 661 Token xsp; 670 Token xsp; 685 Token xsp; 700 public Token token, jj_nt field in class:AddressListParser [all...] |
/external/srec/srec/EventLog/src/ |
EventLogImpl.c | 191 impl->Interface.token = &SR_EventLog_Token; 335 ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value) 340 if (self == NULL || token == NULL || value == NULL) 345 /* token cannot contain '=' */ 346 if (LSTRCHR(token, L('=')) != NULL) 348 PLogError(L("SLEE: Token '%s' contains illegal '=' character"), token); 354 PLogError(L("SLEE: Value for token '%s' contains illegal newline character"), token); 359 if (LSTRLEN(token) + LSTRLEN(value) + 2 [all...] |
/external/srec/srec/clib/ |
voc_read.c | 77 char token[256]; local 107 token[i++] = *ok++; 109 token[i] = 0; 111 CHKLOG(rc, lstrcasecmp(token, L("#lang"), &result)); 118 while (!cr_or_nl(*ok)) token[i++] = *ok++; 119 token[i] = 0; 121 CHKLOG(rc, ESR_str2locale(token, locale));
|
/packages/apps/Contacts/src/com/android/contacts/calllog/ |
CallLogQueryHandler.java | 52 /** The token for the query to fetch the new entries from the call log. */ 54 /** The token for the query to fetch the old entries from the call log. */ 56 /** The token for the query to mark all missed calls as old after seeing the call log. */ 58 /** The token for the query to mark all new voicemails as old. */ 60 /** The token for the query to mark all missed calls as read after seeing the call log. */ 63 /** The token for the query to fetch voicemail status messages. */ 168 private void fetchCalls(int token, boolean isNew, boolean voicemailOnly) { 185 startQuery(token, null, Calls.CONTENT_URI_WITH_VOICEMAIL, 254 protected synchronized void onQueryComplete(int token, Object cookie, Cursor cursor) { 255 if (token == QUERY_NEW_CALLS_TOKEN) [all...] |