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

1 2

  /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 100 // Phase 3 - copy to newKey in little-endian order
101 int[] newKey = new int[64];
103 for (int i = 0; i != newKey.length; i++)
105 newKey[i] = (xKey[2 * i] + (xKey[2 * i + 1] << 8));
108 return newKey;
DESEngine.java 310 int[] newKey = new int[32];
335 newKey[m] = newKey[n] = 0;
367 newKey[m] |= bigbyte[j];
372 newKey[n] |= bigbyte[j];
384 i1 = newKey[i];
385 i2 = newKey[i + 1];
387 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10)
390 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16)
394 return newKey;
    [all...]
  /frameworks/base/core/java/android/content/
SyncAdapterType.java 151 public static SyncAdapterType newKey(String authority, String accountType) {
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DES.java 194 int[] newKey = new int[32];
218 newKey[m] = newKey[n] = 0;
250 newKey[m] |= bigbyte[j];
255 newKey[n] |= bigbyte[j];
267 i1 = newKey[i];
268 i2 = newKey[i + 1];
270 newKey[i] = ((i1 & 0x00fc0000) << 6) | ((i1 & 0x00000fc0) << 10) | ((i2 & 0x00fc0000) >>> 10)
273 newKey[i + 1] = ((i1 & 0x0003f000) << 12) | ((i1 & 0x0000003f) << 16) | ((i2 & 0x0003f000) >>> 4)
277 return newKey;
    [all...]
  /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 93 Object newKey = new Object();
94 assertNull(cache.asMap().put(newKey, entry.getValue()));
97 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
99 warmed.add(entryOf(newKey, entry.getValue()));
114 Object newKey = new Object();
115 assertNull(cache.asMap().putIfAbsent(newKey, entry.getValue()));
118 assertEquals(entry.getValue(), cache.getUnchecked(newKey));
120 warmed.add(entryOf(newKey, entry.getValue()));
131 Object newKey = new Object();
133 cache.asMap().putAll(ImmutableMap.of(newKey, newValue))
    [all...]
  /external/quake/quake/src/WinQuake/
keys.cpp 396 char *newKey;
411 newKey = (char*) Z_Malloc (l+1);
412 Q_strcpy (newKey, binding);
413 newKey[l] = 0;
414 keybindings[keynum] = newKey;
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
AbstractSyncParser.java 176 String newKey = getValue();
177 userLog("Parsed key for ", mMailbox.mDisplayName, ": ", newKey);
178 if (!newKey.equals(mMailbox.mSyncKey)) {
179 mAdapter.setSyncKey(newKey, true);
180 cv.put(MailboxColumns.SYNC_KEY, newKey);
FolderSyncParser.java 191 String newKey = getValue();
193 mAccount.mSyncKey = newKey;
194 userLog("New syncKey: ", newKey);
196 userLog("Ignoring new syncKey: ", newKey);
  /external/icu4c/i18n/
tznames.cpp 167 char *newKey = NULL;
174 newKey = (char *)uprv_malloc(uprv_strlen(key) + 1);
175 if (newKey == NULL) {
178 uprv_strcpy(newKey, key);
190 uhash_put(gTimeZoneNamesCache, newKey, cacheEntry, &status);
197 if (newKey != NULL) {
198 uprv_free(newKey);
tznames_impl.cpp     [all...]
tzgnames.cpp     [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysKeyboardView.java 152 final Key newKey = mKeyDetector.detectHitKey(x, y);
153 if (newKey != oldKey) {
154 mCurrentKey = newKey;
159 if (newKey != null) {
160 updatePressKeyGraphics(newKey);
PointerTracker.java 557 final Key newKey = mKeyDetector.detectHitKey(mKeyX, mKeyY);
558 if (newKey != mCurrentKey) {
713 private Key onMoveToNewKey(final Key newKey, final int x, final int y) {
714 mCurrentKey = newKey;
717 return newKey;
    [all...]
MainKeyboardView.java     [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboardView.java 217 SoftKey newKey = mSoftKeyboard.mapToKey(x, y);
218 if (newKey == mSoftKeyDown) moveWithinPreviousKey = true;
219 mSoftKeyDown = newKey;
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
  /prebuilts/devtools/tools/lib/
sdk-common.jar 
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 

Completed in 2185 milliseconds

1 2