/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
Makefile | 28 $(PROJ_SRC_DIR)/token.ml \
|
token.ml | 7 type token = type
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
Makefile | 28 $(PROJ_SRC_DIR)/token.ml \
|
token.ml | 7 type token = type
|
/external/qemu/ |
json-lexer.h | 38 QString *token; member in struct:JSONLexer
|
/external/webkit/Source/JavaScriptCore/runtime/ |
NumberConstructor.h | 36 JSValue getValueProperty(ExecState*, int token) const;
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
IStatusBarService.aidl | 29 void disable(int what, IBinder token, String pkg); 34 void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
MediaSetSource.java | 58 long token = Binder.clearCallingIdentity(); local 65 Binder.restoreCallingIdentity(token); 101 long token = Binder.clearCallingIdentity(); local 105 Binder.restoreCallingIdentity(token);
|
/external/antlr/src/org/antlr/runtime/ |
Lexer.java | 60 state.token = null; 61 state.type = Token.INVALID_TOKEN_TYPE; 62 state.channel = Token.DEFAULT_CHANNEL; 69 /** Return a token from this source; i.e., match a token on the char 72 public Token nextToken() { 74 state.token = null; 75 state.channel = Token.DEFAULT_CHANNEL; 81 Token eof = new CommonToken((CharStream)input,Token.EOF [all...] |
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 311 int token = ((Keyword)target).get(); local 312 return token != THIS && token != SUPER; 865 int token = assignOps[op - MOD_E]; local 866 int k = lookupBinOp(token); 870 atArithBinExpr(expr, token, k, type); 946 static int lookupBinOp(int token) { 950 if (code[k] == token) 957 int token = expr.getOperator(); local 961 int k = lookupBinOp(token); 1151 int token = bexpr.getOperator(); local 1449 int token = expr.getOperator(); local 1857 int token = k.get(); local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
SearchIndexManager.java | 169 public void appendToken(String token) { 170 if (TextUtils.isEmpty(token)) { 177 mSbTokens.append(token); 345 * Tokenizes the query and normalizes/hex encodes each token. The tokenizer uses the same 346 * rules as SQLite's "simple" tokenizer. Each token is added to the retokenizer and then 376 final String token = query.substring(tokenStart, i); local 377 ftsQueryBuilder.addToken(result, token); 386 public abstract void addToken(StringBuilder builder, String token); 388 /** Normalizes and space-concatenates each token. Example: "a1b2c1* a2b3c2*" */ 392 * Scopes each token to a column and normalizes the name [all...] |
/external/icu4c/i18n/ |
plurrule.cpp | 285 UnicodeString token; local 298 mParser->getNextToken(ruleData, &ruleIndex, token, type, status); 340 curAndConstraint->opNum=getNumberValue(token); 344 curAndConstraint->rangeLow=getNumberValue(token); 347 curAndConstraint->rangeHigh=getNumberValue(token); 366 ruleChain->keyword = token; 376 PluralRules::getNumberValue(const UnicodeString& token) const { 380 i = token.extract(0, token.length(), digits, ARRAY_SIZE(digits), US_INV); 962 UnicodeString& token, [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
AsyncQueryHandlerTest.java | 385 private void startQuery(int token, Object cookie, Uri uri, String[] projection, 390 mAsyncHandler.startQuery(token, cookie, uri, projection, 394 private void startInsert(int token, Object cookie, Uri uri, 399 mAsyncHandler.startInsert(token, cookie, uri, initialValues); 402 private void startUpdate(int token, Object cookie, Uri uri, ContentValues values, 407 mAsyncHandler.startUpdate(token, cookie, uri, values, selection, selectionArgs); 410 private void startDelete(int token, Object cookie, Uri uri, String selection, 415 mAsyncHandler.startDelete(token, cookie, uri, selection, selectionArgs); 448 protected void onDeleteComplete(int token, Object cookie, int result) { 449 super.onDeleteComplete(token, cookie, result) [all...] |
/bootable/recovery/applypatch/ |
applypatch.h | 74 SinkFn sink, void* token, SHA_CTX* ctx); 82 SinkFn sink, void* token, SHA_CTX* ctx);
|
/cts/tests/tests/os/src/android/os/cts/ |
TokenWatcherTest.java | 159 IBinder token = mEmptyService.getToken(); local 166 mMockTokenWatcher.acquire(token, TAG); 171 mMockTokenWatcher.acquire(token, TAG); 177 mMockTokenWatcher.release(token); 183 mMockTokenWatcher.release(token); 201 IBinder token = mEmptyService.getToken(); local 208 mMockTokenWatcher.acquire(token, TAG); 213 mMockTokenWatcher.cleanup(token, true);
|
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
InputMethodManagerTest.java | 169 IBinder token = view.getWindowToken(); local 173 assertTrue(imManager.hideSoftInputFromWindow(token, 0)); 179 assertTrue(imManager.hideSoftInputFromWindow(token, 0, receiver)); 181 imManager.showSoftInputFromInputMethod(token, InputMethodManager.SHOW_FORCED); 182 imManager.hideSoftInputFromInputMethod(token, InputMethodManager.HIDE_NOT_ALWAYS); 185 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS); 186 imManager.toggleSoftInputFromWindow(token, 0, InputMethodManager.HIDE_NOT_ALWAYS); 190 imManager.setInputMethod(token, enabledImList.get(0).getId());
|
/external/antlr/src/org/antlr/runtime/tree/ |
CommonErrorNode.java | 32 /** A node representing erroneous token range in token stream */ 35 public Token start; 36 public Token stop; 39 public CommonErrorNode(TokenStream input, Token start, Token stop, 45 stop.getType()!=Token.EOF) ) 47 // sometimes resync does not consume a token (when LT(1) is 49 // Also handle case where start is the first token and no token [all...] |
/external/chromium/chrome/browser/policy/ |
device_policy_identity_strategy.cc | 101 const std::string& token) { 102 device_token_ = token;
|
user_policy_identity_strategy.h | 24 // A token provider implementation that provides a user device token for the 42 virtual void OnDeviceTokenAvailable(const std::string& token) OVERRIDE; 47 // Checks whether a new token should be fetched and if so, sends out a 54 // Called from the token cache when the token has been loaded. 55 void OnCacheLoaded(const std::string& token, const std::string& device_id); 65 // Keeps the on-disk copy of the token. 71 // Current device token. Empty if not available.
|
/external/chromium/chrome/browser/sync/util/ |
cryptographer.h | 51 // GetSerializedBootstrapToken function. It is possible that the token is no 112 // Obtain a token that can be provided on construction to a future 113 // Cryptographer instance to bootstrap itself. Returns false if such a token 115 bool GetBootstrapToken(std::string* token) const; 132 Nigori* UnpackBootstrapToken(const std::string& token) const;
|
/external/chromium/chrome/browser/webdata/ |
token_service_table.cc | 42 const std::string& token) { 55 bool encrypted = Encryptor::EncryptString(token, &encrypted_token);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
toy.ml | 13 (* Prime the first token. *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
token.ml | 7 type token = type
|
/external/llvm/lib/MC/MCDisassembler/ |
EDInst.h | 32 typedef int (^EDTokenVisitor_t)(EDToken *token); member in namespace:llvm 162 /// getToken - retrieves a token from the instruction's token list by index, 165 /// @arg token - A reference whose target is pointed at the token on success, 166 /// although the token is still owned by the EDInst 167 /// @arg index - The index of the token in the instrcutino 168 int getToken(EDToken *&token, unsigned int index); 171 /// visitTokens - Visits each token in turn and applies a block to it,
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
RAckParser.java | 86 Token token = lexer.getNextToken(); local 87 rack.setMethod(token.getTokenValue());
|