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

  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 234 byte[] oldCode = new byte[code.length];
237 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength);
243 if (codeHasChanged(codeAttribute, oldCode))
245 printChangedCode(clazz, method, codeAttribute, oldCode);
252 private boolean codeHasChanged(CodeAttribute codeAttribute, byte[] oldCode)
254 if (oldCode.length != codeAttribute.u4codeLength)
261 if (oldCode[index] != codeAttribute.code[index])
274 byte[] oldCode)
285 (oldCode[index] == codeAttribute.code[index]? " -- ":" => ")+
287 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
LocaleTest.java 57 private static void assertObsolete(String newCode, String oldCode, String displayName) {
60 Locale oldLocale = new Locale(oldCode);
64 assertEquals(oldCode, newLocale.getLanguage());
65 assertEquals(oldCode, oldLocale.getLanguage());
  /external/webkit/Source/WebCore/platform/image-decoders/gif/
GIFImageReader.cpp 237 int oldcode = gs->oldcode; local
287 oldcode = -1;
299 if (oldcode == -1) {
304 firstchar = oldcode = code;
311 code = oldcode;
337 prefix[avail] = oldcode;
350 oldcode = incode;
370 gs->oldcode = oldcode;
    [all...]
GIFImageReader.h 87 int oldcode; member in struct:GIFFrameReader
124 datasize = codesize = codemask = clear_code = avail = oldcode = 0;
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 512 byte[] oldCode = codeAttribute.code;
522 int newLength = mapInstructions(oldCode,
538 oldCode,
548 * @param oldCode the instructions to be moved.
552 private int mapInstructions(byte[] oldCode, int oldLength)
562 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
628 * @param oldCode the original code to be moved.
634 byte[] oldCode,
644 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
    [all...]

Completed in 184 milliseconds