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

  /frameworks/base/core/java/android/accounts/
AuthenticatorDescription.java 65 public static AuthenticatorDescription newKey(String type) {
  /external/bouncycastle/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 79 public static SyncAdapterType newKey(String authority, String accountType) {
  /packages/apps/Email/src/com/android/exchange/adapter/
AbstractSyncParser.java 144 String newKey = getValue();
145 userLog("Parsed key for ", mMailbox.mDisplayName, ": ", newKey);
146 if (!newKey.equals(mMailbox.mSyncKey)) {
147 mAdapter.setSyncKey(newKey, true);
148 cv.put(MailboxColumns.SYNC_KEY, newKey);
  /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;
  /libcore/luni/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);
  /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;
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 673 milliseconds