Examples of ObfuscationEntry


Examples of codechicken.obfuscator.ObfuscationMap.ObfuscationEntry

    public String map(String name)
    {
        if(name.indexOf('$') >= 0)
            return map(name.substring(0, name.indexOf('$')))+name.substring(name.indexOf('$'));
       
        ObfuscationEntry map;
        if(dir.obfuscate)
            map = obf.lookupMcpClass(name);
        else
            map = obf.lookupObfClass(name);
View Full Code Here

Examples of codechicken.obfuscator.ObfuscationMap.ObfuscationEntry

    }
   
    @Override
    public String mapFieldName(String owner, String name, String desc)
    {
        ObfuscationEntry map;
        if(dir.obfuscate)
            map = obf.lookupMcpField(owner, name);
        else
            map = obf.lookupObfField(owner, name);
       
View Full Code Here

Examples of codechicken.obfuscator.ObfuscationMap.ObfuscationEntry

    public String mapMethodName(String owner, String name, String desc)
    {
        if(owner.length() == 0 || owner.charAt(0) == '[')
            return name;
       
        ObfuscationEntry map;
        if(dir.obfuscate)
            map = obf.lookupMcpMethod(owner, name, desc);
        else
            map = obf.lookupObfMethod(owner, name, desc);
       
View Full Code Here

Examples of codechicken.obfuscator.ObfuscationMap.ObfuscationEntry

    {
        if(cst instanceof String)
        {
            if(dir.srg_cst)
            {
                ObfuscationEntry map = obf.lookupSrg((String) cst);
                if(map != null)
                    return dir.obfuscate(map).s_name;
            }
            return cst;
        }
View Full Code Here

Examples of codechicken.obfuscator.ObfuscationMap.ObfuscationEntry

    }

    public static String unmap(String name) {
        if (run == null)
            return null;
        ObfuscationEntry e = run.obf.lookupMcpClass(name);
        if (e == null)
            return null;
        return e.obf.s_owner;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.