List of usage examples for org.objectweb.asm Opcodes interface-usage
From source file blue.origami.asm.OClassWriter.java
public class OClassWriter extends ClassWriter implements OStackable<OClassWriter>, Opcodes, OArrayUtils { private final String cname; public OClassDecl cdecl; OClassWriter(OClassDecl cdecl) { super(ClassWriter.COMPUTE_FRAMES);
From source file boilerplate.processor.adapters.EqualsGenerators.java
/**
* Contains code for generating per-field comparisons in equals methods. This code
* is tightly coupled with method header and tail.
*
* @author McDowell
* @see EqualsAdapter
From source file boilerplate.processor.adapters.HashCodeGenerators.java
/**
* Contains code for generating per-field calculations in a hashCode. This code
* is tightly coupled with method header and tail.
*
* @author McDowell
* @see EqualsAdapter
From source file boilerplate.processor.adapters.ToStringMethodInsertion.java
class ToStringMethodInsertion implements Opcodes, BytecodeGenerator { public static List<BytecodeGenerator> APPEND_METHODS = createMethodList(); private final Type type; private final String methodName;
From source file cl.inria.stiq.instrumenter.BCIUtils.java
public class BCIUtils implements Opcodes { public static final Type TYPE_OBJECTID = Type.getType(ObjectId.class); public static final Type TYPE_OBJECT = Type.getType(Object.class); public static final Type TYPE_THREADREPLAYER = Type.getType(ThreadReplayer.class); public static final String CLS_EVENTCOLLECTOR_AGENT = "java/tod/EventCollector";
From source file com.android.build.gradle.shrinker.TestClasses.java
/** * Code for generating test classes for the {@link FullRunShrinker}. This were created using the ASM * bytecode outliner plugin for IJ. */ @SuppressWarnings({ "unused", "UnusedAssignment" }) // Outliner plugin generates some unused visitors. class TestClasses implements Opcodes {
From source file com.android.build.gradle.shrinker.TestClassesForIncremental.java
/** * TODO: Document. */ public class TestClassesForIncremental implements Opcodes { public static class Simple {
From source file com.android.builder.shrinker.TestClasses.java
/** * Code for generating test classes for the {@link Shrinker}. This were created using the ASM * bytecode outliner plugin for IJ. */ @SuppressWarnings("unused") // Outliner plugin generates some unused visitors. public class TestClasses implements Opcodes {
From source file com.android.ide.eclipse.apt.internal.analysis.FloatAnalyzer.java
/**
* This analyzer checks if are present FLOAT operations
* following the guideline:<br/>
* @see <a href="http://developer.android.com/guide/practices/design/performance.html#avoidfloat">Avoid Float</a>
* @author Mattia Gustarini
*
From source file com.android.tools.profiler.InitializerAdapter.java
/**
* Adds initialization hooks to initialize the ProfilerService as soon as possible.
* It looks for the application entry point objects and adds the initialize hook at the
* end of their constructors.
*
* TODO: There is no API for external plugins to look at the manifest, once that is in place