/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/ |
ClassHandler.java | 1 package com.xtremelabs.robolectric.bytecode;
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/ |
Foo.java | 1 package com.xtremelabs.robolectric.bytecode;
|
AndroidTranslatorUnitTest.java | 1 package com.xtremelabs.robolectric.bytecode; 29 assertEquals("if (!com.xtremelabs.robolectric.bytecode.RobolectricInternals.shouldCallDirectly(this)) {\n" + 30 "Object x = com.xtremelabs.robolectric.bytecode.RobolectricInternals.methodInvoked(\n" + 31 " java.lang.String.class, \"substring\", this, new String[] {\"int\"}, new Object[] {com.xtremelabs.robolectric.bytecode.RobolectricInternals.autobox($1)});\n" + 43 assertEquals("if (!com.xtremelabs.robolectric.bytecode.RobolectricInternals.shouldCallDirectly(this)) {\n" + 44 "Object x = com.xtremelabs.robolectric.bytecode.RobolectricInternals.methodInvoked(\n" + 57 assertEquals("if (!com.xtremelabs.robolectric.bytecode.RobolectricInternals.shouldCallDirectly(this)) {\n" + 58 "com.xtremelabs.robolectric.bytecode.RobolectricInternals.methodInvoked(\n" + 59 " java.lang.Object.class, \"wait\", this, new String[] {\"long\"}, new Object[] {com.xtremelabs.robolectric.bytecode.RobolectricInternals.autobox($1)});\n" + 70 assertEquals("if (!com.xtremelabs.robolectric.bytecode.RobolectricInternals.shouldCallDirectly(java.lang.String.class)) {\n" [all...] |
/external/v8/src/interpreter/ |
bytecode-array-iterator.h | 10 #include "src/interpreter/bytecode-register.h" 25 Bytecode current_bytecode() const; 46 // bytecode. It is an error to call this method if the bytecode is
|
bytecode-peephole-optimizer.h | 10 #include "src/interpreter/bytecode-peephole-table.h" 11 #include "src/interpreter/bytecode-pipeline.h" 20 // generated bytecode. The optimizer may buffer one bytecode
|
bytecode-decoder.cc | 5 #include "src/interpreter/bytecode-decoder.h" 74 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); local 77 if (Bytecodes::IsPrefixScalingBytecode(bytecode)) { 79 operand_scale = Bytecodes::PrefixBytecodeToOperandScale(bytecode); 80 bytecode = Bytecodes::FromByte(bytecode_start[1]); 83 // Prepare to print bytecode and operands as hex digits. 89 int bytecode_size = Bytecodes::Size(bytecode, operand_scale); 100 os << Bytecodes::ToString(bytecode, operand_scale) << " "; 103 if (Bytecodes::IsDebugBreak(bytecode)) return os [all...] |
bytecode-dead-code-optimizer.h | 10 #include "src/interpreter/bytecode-pipeline.h" 16 // An optimization stage for eliminating obviously dead code in bytecode
|
bytecode-label.cc | 5 #include "src/interpreter/bytecode-label.h" 7 #include "src/interpreter/bytecode-array-builder.h"
|
/external/javassist/src/main/javassist/ |
CtNewWrappedConstructor.java | 2 * Javassist, a Java-bytecode translator toolkit. 18 import javassist.bytecode.*; 37 Bytecode code = makeBody(declaring, declaring.getClassFile2(), 48 protected static Bytecode makeBody(CtClass declaring, ClassFile classfile, 58 Bytecode code = new Bytecode(classfile.getConstPool(), 0, 0); 89 code.add(Bytecode.RETURN);
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
FramePrinter.java | 2 * Javassist, a Java-bytecode translator toolkit. 15 package javassist.bytecode.analysis; 23 import javassist.bytecode.BadBytecode; 24 import javassist.bytecode.CodeAttribute; 25 import javassist.bytecode.CodeIterator; 26 import javassist.bytecode.ConstPool; 27 import javassist.bytecode.Descriptor; 28 import javassist.bytecode.InstructionPrinter; 29 import javassist.bytecode.MethodInfo; 41 * Constructs a bytecode printer [all...] |
/external/javassist/src/main/javassist/compiler/ |
MemberCodeGen.java | 2 * Javassist, a Java-bytecode translator toolkit. 19 import javassist.bytecode.*; 33 public MemberCodeGen(Bytecode b, CtClass cc, ClassPool cp) { 79 bytecode.addAload(0); 80 bytecode.addInvokespecial(MemberResolver.getSuperclass(thisClass), 105 private void jsrJmp(Bytecode b) { 111 protected boolean doit(Bytecode b, int opcode) { 159 protected boolean doit(Bytecode b, int opcode) { 189 Bytecode bc = bytecode; [all...] |
/prebuilts/misc/common/robolectric/lib/ |
robolectric-3.1.1.jar | |
/external/libmojo/third_party/jinja2/ |
bccache.py | 6 This module implements the bytecode cache system Jinja is optionally 49 # reason for this is that Python tends to segfault if fed earlier bytecode 58 """Buckets are used to store the bytecode for one template. It's created 59 and initialized by the bytecode cache and passed to the loading functions. 62 to automatically reject outdated cache material. Individual bytecode 73 """Resets the bucket (unloads the bytecode).""" 77 """Loads bytecode from a file or file like object.""" 91 """Dump the bytecode into the file or file like object passed.""" 99 """Load bytecode from a string.""" 103 """Return the bytecode as string."" [all...] |
/external/javassist/src/main/javassist/expr/ |
Cast.java | 2 * Javassist, a Java-bytecode translator toolkit. 19 import javassist.bytecode.*; 82 * Replaces the explicit cast operator with the bytecode derived from 114 Bytecode bytecode = jc.getBytecode(); local 115 storeStack(params, true, paramVar, bytecode); 118 bytecode.addConstZero(retType); 119 bytecode.addStore(retVar, retType); // initialize $_ 122 bytecode.addLoad(retVar, retType); 124 replace0(pos, bytecode, 3) [all...] |
Instanceof.java | 2 * Javassist, a Java-bytecode translator toolkit. 19 import javassist.bytecode.*; 85 * Replaces the instanceof operator with the bytecode derived from 120 Bytecode bytecode = jc.getBytecode(); local 121 storeStack(params, true, paramVar, bytecode); 124 bytecode.addConstZero(retType); 125 bytecode.addStore(retVar, retType); // initialize $_ 128 bytecode.addLoad(retVar, retType); 130 replace0(pos, bytecode, 3) [all...] |
NewArray.java | 2 * Javassist, a Java-bytecode translator toolkit. 19 import javassist.bytecode.*; 149 * Replaces the array creation with the bytecode derived from 225 Bytecode bytecode = jc.getBytecode(); local 226 storeStack(params, true, paramVar, bytecode); 229 bytecode.addOpcode(ACONST_NULL); // initialize $_ 230 bytecode.addAstore(retVar); 233 bytecode.addAload(retVar); 235 replace0(pos, bytecode, codeLength) [all...] |
/external/v8/src/runtime/ |
runtime-interpreter.cc | 11 #include "src/interpreter/bytecode-array-iterator.h" 12 #include "src/interpreter/bytecode-decoder.h" 13 #include "src/interpreter/bytecode-flags.h" 14 #include "src/interpreter/bytecode-register.h" 60 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode(); local 63 if ((is_input && interpreter::Bytecodes::ReadsAccumulator(bytecode)) || 64 (!is_input && interpreter::Bytecodes::WritesAccumulator(bytecode))) { 75 int operand_count = interpreter::Bytecodes::NumberOfOperands(bytecode); 78 interpreter::Bytecodes::GetOperandType(bytecode, operand_index) [all...] |
/external/v8/src/compiler/ |
bytecode-loop-analysis.cc | 5 #include "src/compiler/bytecode-loop-analysis.h" 7 #include "src/compiler/bytecode-branch-analysis.h" 8 #include "src/interpreter/bytecode-array-iterator.h" 31 interpreter::Bytecode bytecode = iterator.current_bytecode(); local 35 } else if (interpreter::Bytecodes::IsJump(bytecode)) {
|
/external/guice/extensions/persist/lib/ |
hibernate3.jar | |
/external/javassist/src/main/javassist/bytecode/ |
DuplicateMemberException.java | 2 * Javassist, a Java-bytecode translator toolkit. 16 package javassist.bytecode;
|
/external/llvm/test/Assembler/ |
2002-08-16-ConstExprInlined.ll | 1 ; In this testcase, the bytecode reader or writer is not correctly handling the 7 ; disassembling this would be good, but in addition to that, the bytecode
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
2002-08-16-ConstExprInlined.ll | 1 ; In this testcase, the bytecode reader or writer is not correctly handling the
7 ; disassembling this would be good, but in addition to that, the bytecode
|
/external/v8/ |
Android.mkpeephole.mk | 8 src/interpreter/bytecode-operands.cc \ 20 PEEPHOLE_FILE := $(generated_sources)/bytecode-peephole-table.cc
|
/external/mockito/lib/ |
byte-buddy-1.6.9-sources.jar | |
/prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy/1.6.5/ |
byte-buddy-1.6.5-sources.jar | |