/frameworks/base/services/java/com/android/server/ |
WindowManagerService.java | 301 * Mapping from a token IBinder to a WindowToken object. 338 * This was the app token that was used to retrieve the last enter 706 //This method finds out the index of a window that has the same app token as 726 final WindowToken token = win.mToken; local 733 int tokenWindowsPos = token.windows.size(); 734 if (token.appWindowToken != null) { 742 placeWindowBefore(token.windows.get(0), win); 747 token.windows.get(index) == atoken.startingWindow) { 748 placeWindowBefore(token.windows.get(index), win); 756 //windows associated with this token 976 AppWindowToken token = curTarget.mAppToken; local 1543 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 1620 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 1741 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 1766 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 1801 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 1906 WindowToken token = mTokenMap.get(attrs.token); local 2179 final WindowToken token = win.mToken; local 2330 WindowToken token = mWallpaperTokens.get(curTokenIndex); local 4075 IBinder token = tokens.get(i); local 4111 WindowToken token = mTokenMap.get(tokens.get(i)); local 4122 WindowToken token = mTokenMap.get(tokens.get(i)); local 5438 WindowToken token = mTokenMap.get(_token); local 5452 WindowToken token = mTokenMap.get(_token); local 10706 AppWindowToken token = mExitingAppTokens.get(i); local 11204 WindowToken token = it.next(); local 11221 WindowToken token = mWallpaperTokens.get(i); local 11239 WindowToken token = mFinishedStarting.get(i); local 11249 WindowToken token = mExitingTokens.get(i); local 11259 WindowToken token = mExitingAppTokens.get(i); local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameSplitter.java | 19 import com.android.internal.util.HanziToPinyin.Token; 42 * <li>Assign the last remaining token as the last name.</li> 217 final String token = nextToken(); local 218 if (token.length() > 0) { 219 final char c = token.charAt(0); 225 if (mEndPointer > 0 && token.charAt(0) == '.') { 227 } else if (mEndPointer > 0 && token.charAt(0) == ',') { 230 mTokens[mEndPointer] = token; 237 * Returns true if the token is followed by a dot in the original full name. 244 * Returns true if the token is followed by a comma in the original full name 390 String token = tokenizer.nextToken(); local 433 String token = tokenizer.nextToken(); local [all...] |
/external/freetype/include/freetype/internal/ |
psaux.h | 150 /* simple enumeration type used to identify token types */ 168 FT_Byte* start; /* first character of token in input stream */ 169 FT_Byte* limit; /* first character after the token */ 170 T1_TokenType type; /* type of token */ 379 T1_Token token ); [all...] |
/external/icu4c/i18n/ |
plurrule_impl.h | 137 void getNextToken(const UnicodeString& ruleData, int32_t *ruleIndex, UnicodeString& token, 144 void getKeyType(const UnicodeString& token, tokenType& type, UErrorCode &status); 146 UBool isValidKeyword(const UnicodeString& token);
|
/external/sqlite/android/ |
sqlite3_android.cpp | 248 * It will split <data> on each instance of <delimiter> and insert each token 250 * token TEXT, source INTEGER, token_index INTEGER, tag (any type) 254 * One row is inserted for each token in <data>. 256 * In the first inserted row, 'token' is the hex collation key of 259 * 'token' will be set to the hex collation key of the I:th token (0-based). 264 * and one row for each token except the first one. 305 char * sql = sqlite3_mprintf("INSERT INTO %s (token, source%s%s) VALUES (?, ?%s%s);", 360 UChar * token = NULL; local 366 token = origData [all...] |
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/ |
Bmgr.java | 273 System.out.println(" " + Long.toHexString(s.token) + " : " + s.name); 326 long token = Long.parseLong(arg, 16); local 327 doRestoreAll(token); 363 private void doRestoreAll(long token) { 380 if (s.token == token) { 382 didRestore = (mRestore.restoreAll(token, observer) == 0); 391 System.out.println("No matching restore set token. Available sets:"); 427 System.err.println(" bmgr restore TOKEN"); 449 System.err.println("The 'list sets' command reports the token and name of each restore set") [all...] |
/frameworks/base/core/java/android/app/backup/ |
IRestoreSession.aidl | 47 * @param token The token from {@link getAvailableRestoreSets()} corresponding to 52 int restoreAll(long token, IRestoreObserver observer);
|
/frameworks/base/core/java/android/view/inputmethod/ |
InputBinding.java | 37 * A remotable token for the connection back to the client. 55 * @param connToken A remoteable token for communicating across processes. 96 * Return the token for the connection back to the application. You can
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/ |
TokenMgrError.java | 31 * An attempt wass made to create a second instance of a static token manager. 41 * Detected (and bailed out of) an infinite loop in the token manager. 102 * token manager to indicate a lexical error.
|
/packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/ |
TokenMgrError.java | 31 * An attempt wass made to create a second instance of a static token manager. 41 * Detected (and bailed out of) an infinite loop in the token manager. 102 * token manager to indicate a lexical error.
|
/packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/ |
TokenMgrError.java | 31 * An attempt wass made to create a second instance of a static token manager. 41 * Detected (and bailed out of) an infinite loop in the token manager. 102 * token manager to indicate a lexical error.
|
/external/webkit/WebCore/page/ |
Navigator.cpp | 216 // The specification requires that it is a SYNTAX_ERR if the the "%s" token is not present. 217 static const char token[] = "%s"; local 218 int index = url.find(token); 225 // the "%s" token and prepending the base url, does not resolve. 227 newURL.remove(index, sizeof(token) / sizeof(token[0]));
|
/bionic/libc/kernel/tools/ |
cpp.py | 61 class Token: 62 """a simple class to hold information about a given token. 63 each token has a position in the source code, as well as 65 the token's class, while the value is the string of the 66 original token itself. 139 """a small class to iterate over a list of Token objects""" 154 """retrieve the id of the current token""" 160 """retrieve the current token. does not change position""" 166 """increase current token position""" 179 """skip an optional token""" [all...] |
/bootable/recovery/applypatch/ |
applypatch.h | 71 SinkFn sink, void* token, SHA_CTX* ctx); 79 SinkFn sink, void* token, SHA_CTX* ctx);
|
/dalvik/dx/tests/078-dex-local-variable-table/ |
Blort.java | 102 // Test for representation of String (as a token example of a non-Object 108 // Test for representation of int[] (as a token example of an array class).
|
/external/bison/data/ |
glr.cc | 167 *yycdebug_ << (yytype < YYNTOKENS ? "token" : "nterm") 260 /* Enabling the token table. */ 305 struct token 309 /// Token type. 310 typedef token::yytokentype token_type; 344 /// \param yytype The token type. 351 /// \param yytype The token type. 362 /// \param yymsg Why this token is reclaimed.
|
/external/e2fsprogs/lib/blkid/ |
blkid.h | 85 extern char *blkid_get_devname(blkid_cache cache, const char *token, 98 extern int blkid_parse_tag_string(const char *token, char **ret_type,
|
/external/tcpdump/ |
fddi.h | 62 #define FDDIFC_NRT 0x80 /* Nonrestricted token */ 63 #define FDDIFC_RT 0xc0 /* Restricted token */
|
/external/webkit/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/view/ |
WindowManagerImpl.java | 142 if (mRoots[i].mWindow.asBinder() == wparams.token) { 270 public void closeAll(IBinder token, String who, String what) { 276 //Log.i("foo", "Closing all windows of " + token); 278 //Log.i("foo", "@ " + i + " token " + mParams[i].token 280 if (token == null || mParams[i].token == token) {
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
GenericPdu.java | 96 * (Address-present-token Encoded-string-value | Insert-address-token)
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/repository/ |
sdk-repository-2.xsd | 79 <xsd:element name="desc-url" type="xsd:token" minOccurs="0" /> 83 <xsd:element name="release-url" type="xsd:token" minOccurs="0" /> 122 <xsd:element name="desc-url" type="xsd:token" minOccurs="0" /> 126 <xsd:element name="release-url" type="xsd:token" minOccurs="0" /> 172 <xsd:element name="desc-url" type="xsd:token" minOccurs="0" /> 176 <xsd:element name="release-url" type="xsd:token" minOccurs="0" /> 208 <xsd:element name="desc-url" type="xsd:token" minOccurs="0" /> 212 <xsd:element name="release-url" type="xsd:token" minOccurs="0" /> 244 <xsd:element name="desc-url" type="xsd:token" minOccurs="0" /> 248 <xsd:element name="release-url" type="xsd:token" minOccurs="0" / [all...] |
/external/e2fsprogs/intl/ |
plural.c | 159 /* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */ 162 /* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */ 223 /* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */ 464 #define YYBACKUP(Token, Value) \ 468 yychar = (Token); \ 489 first token. By default, to implement support for ranges, extend 690 /* Lookahead token as an internal (translated) token number. */ 743 yychar = YYEMPTY; /* Cause a token to be read. */ 856 /* Read a lookahead token if we need one and don't already have one. * [all...] |
/external/ipsec-tools/src/racoon/ |
cfparse.y | 183 %token PRIVSEP USER GROUP CHROOT 185 %token PATH PATHTYPE 187 %token INCLUDE 189 %token IDENTIFIER VENDORID 191 %token LOGGING LOGLEV 193 %token PADDING PAD_RANDOMIZE PAD_RANDOMIZELEN PAD_MAXLEN PAD_STRICT PAD_EXCLTAIL 195 %token LISTEN X_ISAKMP X_ISAKMP_NATT X_ADMIN STRICT_ADDRESS ADMINSOCK DISABLED 197 %token LDAPCFG LDAP_HOST LDAP_PORT LDAP_PVER LDAP_BASE LDAP_BIND_DN LDAP_BIND_PW LDAP_SUBTREE 198 %token LDAP_ATTR_USER LDAP_ATTR_ADDR LDAP_ATTR_MASK LDAP_ATTR_GROUP LDAP_ATTR_MEMBER 200 %token MODECFG CFG_NET4 CFG_MASK4 CFG_DNS4 CFG_NBNS4 CFG_DEFAULT_DOMAI [all...] |
/cts/tools/dasm/src/java_cup/runtime/ |
lr_parser.java | 20 * (using the current state and the current lookahead token as indexes) to 26 * table is consulted (using the new state and current lookahead token as 73 * <dt> token scan() 74 * <dd> Used to get the next input token from the scanner. 95 * <dt> void syntax_error(token cur_token) 99 * <dt> void unrecovered_syntax_error(token cur_token) 106 * @see java_cup.runtime.token 236 /** The current lookahead token. */ 237 protected token cur_token; 283 * the first token. Here this is just a placeholder for subclasses that [all...] |