HomeSort by relevance Sort by last modified time
    Searched full:oldcode (Results 1 - 7 of 7) sorted by null

  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 240 byte[] oldCode = new byte[code.length];
243 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength);
249 if (codeHasChanged(codeAttribute, oldCode))
251 printChangedCode(clazz, method, codeAttribute, oldCode);
258 private boolean codeHasChanged(CodeAttribute codeAttribute, byte[] oldCode)
260 if (oldCode.length != codeAttribute.u4codeLength)
267 if (oldCode[index] != codeAttribute.code[index])
280 byte[] oldCode)
291 (oldCode[index] == codeAttribute.code[index]? " -- ":" => ")+
293 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
IpPrefixTest.java 214 int oldCode = -1;
222 assertNotEqual(oldCode, p.hashCode());
223 oldCode = p.hashCode();
229 assertNotEqual(oldCode, p.hashCode());
230 oldCode = p.hashCode();
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 226 oldcode = -1;
245 } else if (code == avail && oldcode != -1) {
249 codeLength = suffixLength[oldcode] + 1;
252 code = oldcode;
269 if (avail < MAX_DICTIONARY_ENTRIES && oldcode != -1) {
270 prefix[avail] = oldcode;
272 suffixLength[avail] = suffixLength[oldcode] + 1;
283 oldcode = tempCode;
761 oldcode = -1;
GIFImageReader.h 92 , oldcode(0)
115 int oldcode; member in class:GIFLZWContext
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 587 byte[] oldCode = codeAttribute.code;
597 int newLength = mapInstructions(oldCode,
613 oldCode,
623 * @param oldCode the instructions to be moved.
627 private int mapInstructions(byte[] oldCode, int oldLength)
637 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
703 * @param oldCode the original code to be moved.
709 byte[] oldCode,
719 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
LocaleTest.java 151 private static void assertObsolete(String newCode, String oldCode, String displayName) {
154 Locale oldLocale = new Locale(oldCode);
158 assertEquals(oldCode, newLocale.getLanguage());
159 assertEquals(oldCode, oldLocale.getLanguage());
    [all...]
  /external/pcre/dist/
pcre_compile.c 5679 pcre_uchar *oldcode; local
    [all...]

Completed in 420 milliseconds