Searched defs:subroutine (Results 1 - 12 of 12) sorted by relevance

/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSubroutine.java39 * A method subroutine (corresponds to a JSR instruction).
74 public boolean merge(final Subroutine subroutine) throws AnalyzerException { argument
77 if (subroutine.access[i] && !access[i]) {
82 if (subroutine.start == start) {
83 for (int i = 0; i < subroutine.callers.size(); ++i) {
84 Object caller = subroutine.callers.get(i);
H A DAnalyzer.java129 // computes the subroutine for each instruction:
175 Subroutine subroutine = subroutines[insn];
187 merge(insn + 1, f, subroutine);
191 subroutine = subroutine == null ? null : subroutine.copy();
196 merge(insn + 1, current, subroutine);
205 merge(jump, current, subroutine);
211 merge(jump, current, subroutine);
216 merge(jump, current, subroutine);
447 merge( final int insn, final Frame frame, final Subroutine subroutine) argument
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java174 Subroutine subroutine = subroutines[pos];
177 executor.execute(method, pos, iter, frame, subroutine);
189 mergeRet(queue, iter, pos, frame, subroutine);
308 throw new BadBytecode("No subroutine at jsr target! [pos = " + pos + "]");
318 // Skip everything accessed by a subroutine, mergeRet must handle this
361 private void mergeRet(IntQueue queue, CodeIterator iter, int pos, Frame frame, Subroutine subroutine) throws BadBytecode { argument
362 if (subroutine == null)
363 throw new BadBytecode("Ret on no subroutine! [pos = " + pos + "]");
365 Iterator callerIter = subroutine.callers().iterator();
379 for (Iterator i = subroutine
[all...]
H A DExecutor.java55 * Execute the instruction, modeling the effects on the specified frame and subroutine.
56 * If a subroutine is passed, the access flags will be modified if this instruction accesses
63 * @param subroutine the optional subroutine this instruction belongs to.
66 public void execute(MethodInfo method, int pos, CodeIterator iter, Frame frame, Subroutine subroutine) throws BadBytecode { argument
114 evalLoad(Type.INTEGER, iter.byteAt(pos + 1), frame, subroutine);
117 evalLoad(Type.LONG, iter.byteAt(pos + 1), frame, subroutine);
120 evalLoad(Type.FLOAT, iter.byteAt(pos + 1), frame, subroutine);
123 evalLoad(Type.DOUBLE, iter.byteAt(pos + 1), frame, subroutine);
126 evalLoad(Type.OBJECT, iter.byteAt(pos + 1), frame, subroutine);
780 evalLoad(Type expected, int index, Frame frame, Subroutine subroutine) argument
868 evalStore(Type expected, int index, Frame frame, Subroutine subroutine) argument
878 evalWide(int pos, CodeIterator iter, Frame frame, Subroutine subroutine) argument
980 access(int index, Type type, Subroutine subroutine) argument
[all...]
/external/jarjar/lib/
H A Dasm-commons-4.0.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-commons-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/commons/AdviceAdapter.class " package org.objectweb.asm ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 5817 milliseconds