HomeSort by relevance Sort by last modified time
    Searched defs:newKey (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/
DaggerMethodScanner.java 69 Key<T> newKey = Key.get(key.getTypeLiteral(), UniqueAnnotations.create());
70 setBinder.addBinding().to(newKey);
71 return newKey;
  /frameworks/base/core/java/android/accounts/
AuthenticatorDescription.java 74 public static AuthenticatorDescription newKey(String type) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 33 + (ACBKey *)newKey;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC2Engine.java 101 // Phase 3 - copy to newKey in little-endian order
102 int[] newKey = new int[64];
104 for (int i = 0; i != newKey.length; i++)
106 newKey[i] = (xKey[2 * i] + (xKey[2 * i + 1] << 8));
109 return newKey;
DESEngine.java 311 int[] newKey = new int[32];
336 newKey[m] = newKey[n] = 0;
368 newKey[m] |= bigbyte[j];
373 newKey[n] |= bigbyte[j];
385 i1 = newKey[i];
386 i2 = newKey[i + 1];
388 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10)
391 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16)
395 return newKey;
    [all...]
  /frameworks/base/core/java/android/content/
SyncAdapterType.java 167 public static SyncAdapterType newKey(String authority, String accountType) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
NonDistinctMultitouchHelper.java 85 final Key newKey = mainTracker.getKeyOn(x, y);
86 if (mOldKey != newKey) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 461 String newKey = fixupPropertyString(key, true);
465 newValue = System.getProperty(newKey);
476 if (key != newKey || value != newValue)
479 props.put(newKey, newValue);
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 92 Object newKey = new Object();
93 assertNull(cache.asMap().put(newKey, entry.getValue()));
96 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
98 warmed.add(entryOf(newKey, entry.getValue()));
113 Object newKey = new Object();
114 assertNull(cache.asMap().putIfAbsent(newKey, entry.getValue()));
117 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
119 warmed.add(entryOf(newKey, entry.getValue()));
130 Object newKey = new Object();
132 cache.asMap().putAll(ImmutableMap.of(newKey, newValue))
    [all...]
  /external/python/cpython2/PC/
getpathp.c 226 HKEY newKey = 0;
259 &newKey);
262 rc = RegQueryInfoKey(newKey, NULL, NULL, NULL, &numKeys, NULL, NULL,
278 DWORD rc = RegEnumKeyEx(newKey, index, keyBuf, &reqdSize,
282 rc=RegOpenKeyEx(newKey,
335 rc = RegQueryValueEx(newKey, NULL, 0, NULL,
361 if (newKey)
362 RegCloseKey(newKey);
  /external/python/cpython2/PC/os2vacpp/
getpathp.c 150 HKEY newKey = 0;
174 &newKey);
176 RegQueryInfoKey(newKey, NULL, NULL, NULL, NULL, NULL, NULL,
193 DWORD rc = RegEnumKey(newKey,
196 rc = RegQueryValue(newKey, keyBuf, NULL, &reqdSize);
209 DWORD rc = RegEnumKey(newKey,
212 rc = RegQueryValue(newKey,
227 rc = RegQueryValue(newKey, "", dataBuf+off, &dataSize);
238 if (newKey)
239 RegCloseKey(newKey);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationDummyTest.java 333 CollationKey newKey = newCollation.getCollationKey(source[3]);
334 int keyResult = enKey.compareTo(newKey);
  /external/icu/icu4c/source/i18n/
tznames.cpp 158 char *newKey = NULL;
165 newKey = (char *)uprv_malloc(uprv_strlen(key) + 1);
166 if (newKey == NULL) {
169 uprv_strcpy(newKey, key);
181 uhash_put(gTimeZoneNamesCache, newKey, cacheEntry, &status);
188 if (newKey != NULL) {
189 uprv_free(newKey);
tzgnames.cpp     [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationDummyTest.java 332 CollationKey newKey = newCollation.getCollationKey(source[3]);
333 int keyResult = enKey.compareTo(newKey);
  /frameworks/base/core/java/android/app/
ActivityTransitionState.java 127 int newKey = mExitTransitionCoordinatorsKey++;
128 mExitTransitionCoordinators.append(newKey, ref);
129 return newKey;
ResourcesManager.java     [all...]
  /system/vold/
KeyStorage.cpp 200 std::string newKey;
201 if (!keymaster.upgradeKey(kmKey, keyParams, &newKey)) return KeymasterOperation();
203 if (!writeStringToFile(newKey, newKeyPath)) return KeymasterOperation();
211 kmKey = newKey;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 204 String newKey = entry.notification.getGroupKey();
205 boolean groupKeysChanged = !oldKey.equals(newKey);
218 updateSuppression(mGroupMap.get(newKey));
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 279 String newKey = key.substring(8); // Strip off the 'ACCOUNT:' prefix.
283 extras.putParcelable(newKey, account);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboardView.java 211 final Key newKey = mKeyDetector.detectHitKey(x, y);
212 if (newKey == oldKey) {
213 return newKey;
220 if (newKey != null) {
221 updatePressKeyGraphics(newKey);
222 invalidateKey(newKey);
224 return newKey;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneNamesImpl.java 371 UResource.Key newKey = createKey(key);
372 keyToLoader.put(newKey, loader);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneNamesImpl.java 369 UResource.Key newKey = createKey(key);
370 keyToLoader.put(newKey, loader);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/car/
KeyboardView.java     [all...]

Completed in 647 milliseconds

1 2 3 4 5 6 7 8 910