HomeSort by relevance Sort by last modified time
    Searched refs:oldCode (Results 1 - 6 of 6) sorted by null

  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 293 byte[] oldCode = new byte[code.length];
296 System.arraycopy(code, 0, oldCode, 0, codeAttribute.u4codeLength);
302 if (codeHasChanged(codeAttribute, oldCode))
304 printChangedCode(clazz, method, codeAttribute, oldCode);
311 private boolean codeHasChanged(CodeAttribute codeAttribute, byte[] oldCode)
313 if (oldCode.length != codeAttribute.u4codeLength)
320 if (oldCode[index] != codeAttribute.code[index])
333 byte[] oldCode)
344 (oldCode[index] == codeAttribute.code[index]? " -- ":" => ")+
346 Integer.toHexString(0x100|oldCode[index] &0xff).substring(1)+" "
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifDecoder.java 529 int available, clear, codeMask, codeSize, endOfInformation, inCode, oldCode, bits, code, count, i, datum,
551 oldCode = NULL_CODE;
591 oldCode = NULL_CODE;
604 if (oldCode == NULL_CODE) {
606 oldCode = code;
613 code = oldCode;
624 prefix[available] = (short) oldCode;
632 oldCode = inCode;
  /external/cldr/tools/java/org/unicode/cldr/tool/
LanguageCodeConverter.java 184 String oldCode = languageNameToCode.get(name);
185 if (oldCode != null) {
186 if (!oldCode.equals(code)) {
187 parseErrors.add("Name Collision! " + type + ": " + name + " <" + oldCode + ", " + code + ">");
AddPopulationData.java 98 String oldCode = "";
106 oldCode = "";
112 if (!code.equals(oldCode)) {
113 oldCode = code;
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 598 byte[] oldCode = codeAttribute.code;
608 int newLength = mapInstructions(oldCode,
624 oldCode,
634 * @param oldCode the instructions to be moved.
638 private int mapInstructions(byte[] oldCode, int oldLength)
648 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
714 * @param oldCode the original code to be moved.
720 byte[] oldCode,
730 Instruction instruction = InstructionFactory.create(oldCode, oldOffset);
    [all...]
  /external/dng_sdk/source/
dng_read_image.cpp 643 int32 oldCode = code;
673 code = oldCode;
793 AddTable (oldCode, code);
797 oldCode = inCode;
    [all...]

Completed in 303 milliseconds