/frameworks/base/core/java/android/database/ |
AbstractCursor.java | 404 Map<String, Object> row = mUpdatedRows.get(rowid); 549 Map<String, Object> updates = mUpdatedRows.get(mCurrentRowID); 566 Map<String, Object> updates = mUpdatedRows.get(mCurrentRowID); 567 return updates.get(getColumnNames()[columnIndex]); 573 * the get functions should call this before attempting 609 AbstractCursor cursor = mCursor.get();
|
/frameworks/base/core/java/android/os/storage/ |
StorageManager.java | 46 * Get an instance of this class by calling 84 mListeners.get(i).sendShareAvailabilityChanged(available); 91 mListeners.get(i).sendStorageStateChanged(path, oldState, newState); 108 delegate = mListeners.get(nonce); 170 return mObbEventListenerRef.get(); 292 * <p>Applications can get instance of this class by calling 342 ListenerDelegate l = mListeners.get(i); 387 Log.e(TAG, "Failed to get UMS connection state", ex); 402 Log.e(TAG, "Failed to get UMS enable state", rex);
|
/frameworks/base/core/java/android/preference/ |
PreferenceManager.java | 195 final ActivityInfo activityInfo = activities.get(i).activityInfo; 267 * Called by a preference to get a unique ID in its hierarchy. 573 if (list.get(i).onActivityResult(requestCode, resultCode, data)) { 623 list.get(i).onActivityStop(); 673 list.get(i).onActivityDestroy(); 740 screensToDismiss.get(i).dismiss();
|
/frameworks/base/media/libstagefright/ |
AudioPlayer.cpp | 111 if (mAudioSink.get() != NULL) { 172 if (mAudioSink.get() != NULL) { 178 if (mAudioSink.get() != NULL) { 189 if (mAudioSink.get() != NULL) { 199 if (mAudioSink.get() != NULL) {
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiConfiguration.java | 329 if (this.allowedKeyManagement.get(k)) { 340 if (this.allowedProtocols.get(p)) { 352 if (this.allowedAuthAlgorithms.get(a)) { 364 if (this.allowedPairwiseCiphers.get(pc)) { 376 if (this.allowedGroupCiphers.get(gc)) {
|
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 57 * If you are formatting multiple dates, it is more efficient to get the format 90 * Use {@code getDateInstance} to get the normal date format for a country. 92 * get the time format for a country. Use {@code getDateTimeInstance} to get the 105 * over the formatting or parsing, try casting the {@code DateFormat} you get 462 return new SimpleDateFormat(LocaleData.get(locale).getDateFormat(style), locale); 514 LocaleData localeData = LocaleData.get(locale); 582 return new SimpleDateFormat(LocaleData.get(locale).getTimeFormat(style), locale); 853 if (calendarField != -1 && table.get(Integer.valueOf(calendarField)) == null) { 884 return table.get(Integer.valueOf(calendarField)) [all...] |
SimpleDateFormat.java | 42 * or {@link DateFormat#getTimeInstance} to get a ready-made instance suitable for the user's 47 * to explicitly ask for {@link Locale#US} to ensure that you get ASCII digits (rather than, 379 creationYear = calendar.get(Calendar.YEAR); 426 LocaleData localeData = LocaleData.get(Locale.getDefault()); 597 buffer.append(formatData.eras[calendar.get(Calendar.ERA)]); 601 int year = calendar.get(Calendar.YEAR); 627 int hour = calendar.get(Calendar.HOUR_OF_DAY); 644 int value = calendar.get(Calendar.MILLISECOND); 673 buffer.append(formatData.ampms[calendar.get(Calendar.AM_PM)]); 677 hour = calendar.get(Calendar.HOUR) [all...] |
/libcore/luni/src/main/java/java/util/ |
AbstractList.java | 24 * methods {@code get()} and {@code size()}, and to create a 57 E result = get(pos + 1); 129 E result = get(pos); 295 public E get(int location) { method in class:AbstractList.SubAbstractList 298 return fullList.get(location + offset); 519 public abstract E get(int location); method in class:AbstractList 710 * The subList's set(int, Object), get(int), add(int, Object), remove(int),
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CertPathImpl.java | 108 Object cert = certs.get(i); 182 result.add(new X509CertImpl((Certificate) certs.get(i))); 235 result.add(new X509CertImpl((Certificate) certs.get(i))); 322 Certificate.ASN1.decode((byte[]) encodings.get(i)))); 345 // get the encoded form of certificate and place it into the 347 encodings.add(((X509Certificate) cp.certificates.get(i)).getEncoded());
|
/libcore/luni/src/main/java/org/apache/xml/serializer/ |
CharInfo.java | 128 * A mask to get the low order bits which are used to 320 /* Now that we've used get(ch) just above to initialize the 409 return (String) m_charToString.get(m_charKey); 431 return get(value); 454 return get(value); 491 CharInfo charInfo = (CharInfo) m_getCharInfoCache.get(entitiesFileName); 629 private final boolean get(int i) { 772 * Get the hash value of the character. 784 * Get the hash value of the character.
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
DetailMode.java | 45 MediaBucket bucket = buckets.get(i); 60 selectedItemsSet.addItem(currItems.get(j)); 124 ReverseGeocoder reverseGeocoder = App.get(context).getReverseGeocoder(); 134 stringsArr[i] = strings.get(i); 194 ReverseGeocoder reverseGeocoder = App.get(context).getReverseGeocoder();
|
DiskCache.java | 64 public byte[] get(long key, long timestamp) { method in class:DiskCache 68 record = mIndexMap.get(key); 95 record = mIndexMap.get(key); 112 record = mIndexMap.get(key); 336 chunkFile = mChunkFiles.get(chunk);
|
PicasaDataSource.java | 112 final Boolean accountEnabledObj = accountsEnabled.get(userLowerCase); 204 MediaBucket bucket = mediaBuckets.get(i); 213 MediaItem item = items.get(j); 273 final MediaSet set = mediaSets.get(i); 285 final MediaSet set = mediaSets.get(i);
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
SuggestHelper.java | 122 Log.i(title, suggestions.get(i) + ", "); 129 (/*TextUtils.equals(suggestions.get(0), word) || */ 130 (suggestions.size() > 1 && TextUtils.equals(suggestions.get(1), word))); 149 if (TextUtils.equals(suggestions.get(i), expected)) return true; 183 if (TextUtils.equals(suggestions.get(i), expected)) return true; 209 if (TextUtils.equals(suggestions.get(i), expected)) return true;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiActions.java | 81 rootNode = rootNode.getUiChildren().get(0); 120 uiParent = uiParent.getUiChildren().get(0); 137 * update event, the tree will get refreshed. 164 UiElementNode node = nodes.get(i); 199 final UiElementNode node = last_node = nodes.get(i); 280 final UiElementNode node = last_node = nodes.get(i);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidJarLoader.java | 155 // get the name of the entry. 220 // get the name of the entry and convert to a class binary name 232 Class<?> loaded_class = mClassCache.get(className); 234 byte[] data = mEntryCache.get(className); 236 // Get the class and cache it 251 mClassesFound.get(superName).add(new ClassWrapper(loaded_class)); 278 Class<?> cached_class = mClassCache.get(name); 337 byte[] data = mEntryCache.get(className); 354 // get the name of the entry.
|
/cts/tests/tests/os/src/android/os/cts/ |
ParcelTest.java | 401 assertEquals("String", map.get("string")); 402 assertEquals(Integer.MAX_VALUE, map.get("int")); 403 assertEquals(true, map.get("boolean")); 488 assertEquals(arrayList.get(i), arrayList2.get(i)); 507 assertEquals(sparseArray.get(0), sparseArray2.get(0)); 508 assertEquals(sparseArray.get(1), sparseArray2.get(1)); 509 assertEquals(sparseArray.get(2), sparseArray2.get(2)) [all...] |
/external/chromium/third_party/icu/source/i18n/ |
colldata.cpp | 158 uint32_t CEList::get(int32_t index) const function in class:CEList 270 const UnicodeString *StringList::get(int32_t index) const function in class:StringList 371 const CEList *get(const UnicodeString *string); 410 const CEList *StringToCEsMap::get(const UnicodeString *string) function in class:StringToCEsMap 457 CollData *get(UCollator *collator, UErrorCode &status); 515 CollData *CollDataCache::get(UCollator *collator, UErrorCode &status) function in class:CollDataCache 726 ceToCharsStartingWith->put(ceList->get(0), st, status); 745 ceToCharsStartingWith->put(ceList->get(0), st, status); 843 return charsToCEList->get(string); 873 uint32_t ce = ceList->get(offset) [all...] |
chnsecal.cpp | 73 * get close to the next or prior new moon, but not cross it. Must be 341 int32_t dom = get(UCAL_DAY_OF_MONTH, status); 343 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day 371 int32_t dom = get(UCAL_DAY_OF_MONTH, status); 373 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day 383 int32_t m = get(UCAL_MONTH, status); // 0-based month 386 if (get(UCAL_IS_LEAP_MONTH, status) == 1) { 468 int32_t cacheValue = CalendarCache::get(&gChineseCalendarWinterSolsticeCache, gyear, status) [all...] |
/external/icu4c/i18n/ |
colldata.cpp | 158 uint32_t CEList::get(int32_t index) const function in class:CEList 270 const UnicodeString *StringList::get(int32_t index) const function in class:StringList 371 const CEList *get(const UnicodeString *string); 410 const CEList *StringToCEsMap::get(const UnicodeString *string) function in class:StringToCEsMap 457 CollData *get(UCollator *collator, UErrorCode &status); 513 CollData *CollDataCache::get(UCollator *collator, UErrorCode &status) function in class:CollDataCache 724 ceToCharsStartingWith->put(ceList->get(0), st, status); 743 ceToCharsStartingWith->put(ceList->get(0), st, status); 841 return charsToCEList->get(string); 871 uint32_t ce = ceList->get(offset) [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppService.java | 92 /** Observer to get notified when the content observer's data changes */ 252 if (D) Log.d(TAG, "Get incoming connection"); 333 if (D) Log.d(TAG, "Get ServerSession " + mServerSession.toString() 438 mShares.get(arrayPos).mId + " @ " + arrayPos); 464 int arrayId = mShares.get(arrayPos).mId; 627 + mBatchs.get(i).mId); 628 mBatchs.get(i).addShare(info); 653 BluetoothOppShareInfo info = mShares.get(arrayPos); 699 /* Inbounds transfer get user confirmation, so we start it */ 702 BluetoothOppBatch batch = mBatchs.get(i) [all...] |
/frameworks/base/services/java/com/android/server/ |
WindowManagerService.java | 616 // Get persisted window scale setting 694 WindowState wentry = localmWindows.get(j); 720 placeWindowBefore(token.windows.get(0), win); 725 token.windows.get(index) == atoken.startingWindow) { 726 placeWindowBefore(token.windows.get(index), win); 752 AppWindowToken t = mAppTokens.get(i); 762 pos = t.windows.get(0); 770 WindowToken atoken = mTokenMap.get(pos.mClient.asBinder()); 774 WindowState bottom = atoken.windows.get(0); 785 AppWindowToken t = mAppTokens.get(i) [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityManagerService.java | 347 String str = SystemProperties.get(name); 610 if (dest.get(i).receiverList.receiver.asBinder() == target) { 648 * while waiting for their corresponding application thread to get [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContentValuesTest.java | 112 assertNull(mContentValues.get("key")); 115 assertNull(mContentValues.get("value")); 118 assertNull(mContentValues.get("")); 297 notes = "Test get(String key).", 298 method = "get", 304 assertSame(expected, mContentValues.get("Object")); 308 assertSame(expected, mContentValues.get("Object")); 311 assertNull(mContentValues.get(null)); 691 assertEquals(-110, values.get("Integer")); 692 assertEquals("cts", values.get("String")) [all...] |
/dalvik/hit/src/com/android/hit/ |
HprofParser.java | 202 String name = mStrings.get(readId()); 209 String methodName = mStrings.get(readId()); 210 String methodSignature = mStrings.get(readId()); 211 String sourceFile = mStrings.get(readId()); 309 String heapName = mStrings.get(heapNameId); 468 staticFieldNames[i] = mStrings.get(readId()); 491 names[i] = mStrings.get(fieldName); 497 ClassObj theClass = new ClassObj(id, stack, mClassNames.get(id)); 538 String className = mClassNames.get(classId);
|