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

<<11121314151617181920>>

  /frameworks/base/core/java/android/widget/
MultiAutoCompleteTextView.java 144 * each token of the text individually. Empty tokens are removed.
212 * Returns the start of the token that ends at offset
218 * Returns the end of the token (minus trailing punctuation)
225 * it ends with a token terminator (for example a space or comma).
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransport.java 52 // The single hardcoded restore set always has the same (nonzero!) token
180 // The hardcoded restore set always has the same token
184 public int startRestore(long token, PackageInfo[] packages) {
185 if (DEBUG) Log.v(TAG, "start restore " + token);
  /frameworks/base/core/java/com/android/internal/view/
IInputMethod.aidl 36 void attachToken(IBinder token);
  /frameworks/base/opengl/libagl/
TokenManager.h 42 bool isTokenValid(GLuint token) const;
  /cts/tests/tests/widget/src/android/widget/cts/
MultiAutoCompleteTextView_CommaTokenizerTest.java 33 private static final String TEST_TEXT = "first token, second token";
135 " 2. javadoc says ends with a token terminator (for example a space or comma)," +
  /dalvik/libcore/luni/src/main/java/java/util/
PropertyPermission.java 67 String token = tokenizer.nextToken(); local
68 if (token.equals("read")) { //$NON-NLS-1$
70 } else if (token.equals("write")) { //$NON-NLS-1$
  /external/apache-http/src/org/apache/http/
NameValuePair.java 69 * token = 1*<any CHAR except CTLs or separators>
95 * attribute = token
96 * value = token | quoted-string
  /external/bison/src/
symtab.h 43 /* Internal token numbers. */
89 *has* (not is) a string literal alias. For instance, `%token foo
94 /* Undefined internal token number. */
  /external/e2fsprogs/misc/
tune2fs.c 802 char *buf, *token, *next, *p, *arg; local
814 for (token = buf; token && *token; token = next) {
815 p = strchr(token, ',');
821 arg = strchr(token, '=');
826 if (!strcmp(token, "test_fs")) {
830 } else if (!strcmp(token, "^test_fs")) {
834 } else if (strcmp(token, "stride") == 0)
    [all...]
  /external/skia/src/animator/
SkAnimatorScript.cpp 159 bool SkAnimatorScript::EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* value) {
162 if (MapEnums(tokens, token, len, (int*)&value->fOperand.fS32))
167 bool SkAnimatorScript::EvalID(const char* token, size_t len, void* user, SkScriptValue* value) {
171 bool success = ids->find(token, len, &displayable);
174 if (SK_LITERAL_STR_EQUAL("parent", token, len)) {
184 if (displayable && EvalMember(token, len, displayable, engine, value))
203 bool SkAnimatorScript::EvalNamedColor(const char* token, size_t len, void* callback, SkScriptValue* value) {
205 if (SkParse::FindNamedColor(token, len, (SkColor*) &value->fOperand.fS32) != NULL)
372 bool SkAnimatorScript::Infinity(const char* token, size_t len, void* user, SkScriptValue* value) {
373 if (SK_LITERAL_STR_EQUAL("Infinity", token, len) == false
    [all...]
SkScriptRuntime.cpp 10 // turn text into token string
15 // then, turn token strings into indices into the appropriate tables / dictionaries
26 // should token script enocde type where possible?
31 // if token, handle function, or array, or property (continue)
33 // parse token, continue
  /frameworks/base/core/java/android/inputmethodservice/
SoftInputWindow.java 36 public void setToken(IBinder token) {
38 lp.token = token;
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSession.java 93 * @param token The input method supplied token for identifying its request.
96 public void updateExtractedText(int token, ExtractedText text);
InputMethodManager.java 650 public void updateExtractedText(View view, int token, ExtractedText text) {
660 mCurMethod.updateExtractedText(token, text);
788 * @param windowToken The token of the window that is making the request,
803 * @param windowToken The token of the window that is making the request,
834 * @param windowToken The token of the window that is making the request,
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
RetrieveConf.java 118 * (Address-present-token Encoded-string-value | Insert-address-token)
138 * Message-class-value = Class-identifier | Token-text
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 50 public void onImageLoadComplete(int token, Object cookie, ImageView iView,
101 " token: " + msg.what + " image URI: " + args.uri);
105 " token: " + msg.what + " image URI: " + args.uri +
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 71 public boolean sendMessage(long token) throws MmsException {
74 return queueMessage(token);
77 private boolean queueMessage(long token) throws MmsException {
HttpUtils.java 82 * @param token The token to identify the sending progress.
92 protected static byte[] httpConnection(Context context, long token,
101 Log.v(TAG, "\ttoken\t\t= " + token);
127 context, token, pdu);
  /system/core/sh/
parser.c 73 #include "token.h"
93 int lasttoken; /* last token read */
94 MKINIT int tokpushback; /* last token pushed back */
100 int quoteflag; /* set if (part of) last token was quoted */
101 int startlinno; /* line # where last token started */
766 TRACE(("token %s %s\n", tokname[t], t == TWORD ? wordtext : ""));
768 TRACE(("reread token %s %s\n", tokname[t], t == TWORD ? wordtext : ""));
775 * Read the next input token.
776 * If the token is a word, we set backquotelist to the list of cmds in
779 * If the token is TREDIR, then we set redirnode to a structure containin
    [all...]
  /external/v8/src/ia32/
codegen-ia32.h 464 Token::Value op,
471 bool FoldConstantSmis(Token::Value op, int left, int right);
475 Result ConstantSmiBinaryOperation(Token::Value op,
485 Result LikelySmiBinaryOperation(Token::Value op,
687 GenericBinaryOpStub(Token::Value op,
699 ASSERT(OpBits::is_valid(Token::NUM_TOKENS));
715 Token::Value op_;
731 Token::String(op_),
742 class OpBits: public BitField<Token::Value, 2, 7> {};
768 return op_ == Token::ADD || op_ == Token::SU
    [all...]
  /external/webkit/WebCore/html/
HTMLParser.cpp 230 PassRefPtr<Node> HTMLParser::parseToken(Token* t)
238 // FIXME: What does that comment mean? How can it be right to parse a token without clearing m_skipModeTag?
711 typedef bool (HTMLParser::*CreateErrorCheckFunc)(Token* t, RefPtr<Node>&);
714 bool HTMLParser::textCreateErrorCheck(Token* t, RefPtr<Node>& result)
720 bool HTMLParser::commentCreateErrorCheck(Token* t, RefPtr<Node>& result)
726 bool HTMLParser::headCreateErrorCheck(Token*, RefPtr<Node>& result)
736 bool HTMLParser::bodyCreateErrorCheck(Token*, RefPtr<Node>&)
752 bool HTMLParser::framesetCreateErrorCheck(Token*, RefPtr<Node>&)
772 bool HTMLParser::formCreateErrorCheck(Token* t, RefPtr<Node>& result)
784 bool HTMLParser::isindexCreateErrorCheck(Token* t, RefPtr<Node>& result
    [all...]
  /frameworks/base/core/java/android/os/
Binder.java 40 * token that can be shared across processes.
83 * @return Returns an opaque token that can be used to restore the
98 * @param token The opaque token that was previously returned by
103 public static final native void restoreCallingIdentity(long token);
  /frameworks/base/core/java/android/pim/
ContactsAsyncHelper.java 54 public void onImageLoadComplete(int token, Object cookie, ImageView iView,
198 " token: " + msg.what + " image URI: " + args.uri);
202 " token: " + msg.what + " image URI: " + args.uri +
254 public static final void updateImageViewWithContactPhotoAsync(CallerInfo info, int token,
281 Message msg = sThreadHandler.obtainMessage(token);
  /external/v8/src/
full-codegen.cc 284 Token::Value op = expr->op();
285 if (op == Token::INIT_CONST) BAILOUT("initialize constant");
378 case Token::ADD:
379 case Token::BIT_NOT:
380 case Token::NOT:
381 case Token::SUB:
382 case Token::TYPEOF:
383 case Token::VOID:
386 case Token::DELETE:
582 if (expr->op() == Token::OR)
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8DOMWindowShell.cpp 240 // has a security token which is the domain. The outer window cannot
468 // Setup security origin and security token.
474 // Ask the document's SecurityOrigin to generate a security token.
479 String token; local
481 token = document->securityOrigin()->toString();
483 // An empty or "null" token means we always have to call
487 // case, we use the global object as the security token to avoid
489 if (token.isEmpty() || token == "null") {
494 CString utf8Token = token.utf8()
    [all...]

Completed in 491 milliseconds

<<11121314151617181920>>