HomeSort by relevance Sort by last modified time
    Searched full:bytecode (Results 101 - 125 of 1588) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
scripts.gyp 47 # A separate pre-caching step is *required* to use bytecode caching in
48 # Jinja (which improves speed significantly), as the bytecode cache is
70 'message': 'Caching bytecode of Jinja templates',
BUILD.gn 30 # A separate pre-caching step is *required* to use bytecode caching in
31 # Jinja (which improves speed significantly), as the bytecode cache is
  /external/iptables/extensions/
libxt_bpf.man 4 \fB\-\-bytecode\fP \fIcode\fP
28 iptables \-A OUTPUT \-m bpf \-\-bytecode '4,48 0 0 9,21 0 1 6,6 0 0 1,6 0 0 0' \-j ACCEPT
32 iptables \-A OUTPUT \-m bpf \-\-bytecode "`nfbpf_compile RAW 'ip proto 6'`" \-j ACCEPT
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationMemberValue.java 2 * Javassist, a Java-bytecode translator toolkit.
15 package javassist.bytecode.annotation;
18 import javassist.bytecode.ConstPool;
MemberValue.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode.annotation;
19 import javassist.bytecode.ConstPool;
20 import javassist.bytecode.Descriptor;
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 2 * Javassist, a Java-bytecode translator toolkit.
22 import javassist.bytecode.CodeIterator;
23 import javassist.bytecode.MethodInfo;
  /external/javassist/src/main/javassist/tools/
Dump.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.ClassFile;
20 import javassist.bytecode.ClassFilePrinter;
  /external/llvm/docs/HistoricalNotes/
2001-02-13-Reference-Memory.txt 30 no way to represent this in either the bytecode or assembly.
31 B. When parsing assembly/bytecode, we effectively have to do a full
36 bytecode to get around this... what do you think?
2001-02-13-Reference-MemoryResponse.txt 34 > no way to represent this in either the bytecode or assembly.
35 > B. When parsing assembly/bytecode, we effectively have to do a full
42 how big the bytecode files are before expanding them further. I am pretty
43 keen to explore the implications of LLVM for mobile devices. Both bytecode
  /external/proguard/bin/
proguard.bat 4 REM obfuscator, and preverifier for Java bytecode.
proguardgui.bat 4 REM optimizer, obfuscator, and preverifier for Java bytecode.
retrace.bat 4 REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowFoo.java 1 package com.xtremelabs.robolectric.bytecode;
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguard.bat 4 REM obfuscator, and preverifier for Java bytecode.
proguardgui.bat 4 REM optimizer, obfuscator, and preverifier for Java bytecode.
retrace.bat 4 REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
  /sdk/files/proguard/bin/
proguard.bat 4 REM obfuscator, and preverifier for Java bytecode.
proguardgui.bat 4 REM optimizer, obfuscator, and preverifier for Java bytecode.
retrace.bat 4 REM shrinker, optimizer, obfuscator, and preverifier for Java bytecode.
  /external/javassist/src/main/javassist/compiler/
JvstCodeGen.java 2 * Javassist, a Java-bytecode translator toolkit.
19 import javassist.bytecode.*;
44 public JvstCodeGen(Bytecode b, CtClass cc, ClassPool cp) {
70 bytecode.addOpcode(ACONST_NULL);
83 compileParameterList(bytecode, paramTypeList, indexOfParam1());
89 bytecode.addLdc(Descriptor.ofMethod(returnType, paramTypeList));
90 bytecode.addInvokestatic("javassist/runtime/Desc", "getParams",
100 bytecode.addLdc(Descriptor.of(dollarType));
107 bytecode.addLdc(param0Type);
115 bytecode.addInvokestatic("javassist/runtime/Desc", method
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 1 package test.javassist.bytecode.analysis;
10 import javassist.bytecode.AccessFlag;
11 import javassist.bytecode.Bytecode;
12 import javassist.bytecode.MethodInfo;
13 import javassist.bytecode.Opcode;
14 import javassist.bytecode.analysis.Subroutine;
15 import javassist.bytecode.analysis.SubroutineScanner;
111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
dalvik.bytecode.Opcodes.html 10 dalvik.bytecode.Opcodes
74 Interface dalvik.bytecode.<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html" target="_top"><font size="+2"><code>Opcodes</code></font></A>
87 <A NAME="dalvik.bytecode.Opcodes.OP_IGET_WIDE_VOLATILE"></A>
88 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_IGET_WIDE_VOLATILE" target="_top"><code>OP_IGET_WIDE_VOLATILE</code></A></nobr>
94 <A NAME="dalvik.bytecode.Opcodes.OP_IPUT_WIDE_VOLATILE"></A>
95 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_IPUT_WIDE_VOLATILE" target="_top"><code>OP_IPUT_WIDE_VOLATILE</code></A></nobr>
101 <A NAME="dalvik.bytecode.Opcodes.OP_SGET_WIDE_VOLATILE"></A>
102 <nobr><code>int</code>&nbsp;<A HREF="../../../../reference/dalvik/bytecode/Opcodes.html#OP_SGET_WIDE_VOLATILE" target="_top"><code>OP_SGET_WIDE_VOLATILE</code></A></nobr>
108 <A NAME="dalvik.bytecode.Opcodes.OP_SPUT_WIDE_VOLATILE"></A
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 2 * Javassist, a Java-bytecode translator toolkit.
16 package javassist.bytecode;
36 protected byte[] bytecode; field in class:CodeIterator
43 bytecode = ca.getCode();
72 * Sets a mark to the bytecode at the given index.
73 * The mark can be used to track the position of that bytecode
76 * bytecode, the mark is set to the inserted code block.
106 return bytecode.length;
112 public int byteAt(int index) { return bytecode[index] & 0xff; }
118 bytecode[index] = (byte)value
    [all...]
  /external/javassist/src/main/javassist/
CtBehavior.java 2 * Javassist, a Java-bytecode translator toolkit.
18 import javassist.bytecode.*;
139 * the method will be rejected by the bytecode verifier.
315 * @see javassist.bytecode.Descriptor
316 * @see javassist.bytecode.SignatureAttribute
401 Bytecode b = jv.compileBody(this, src);
451 * See {@link javassist.bytecode.AttributeInfo}.
468 * See {@link javassist.bytecode.AttributeInfo}.
668 * Inserts bytecode at the beginning of the body.
671 * the bytecode is inserted befor
    [all...]
CtField.java 2 * Javassist, a Java-bytecode translator toolkit.
18 import javassist.bytecode.*;
335 * @see javassist.bytecode.Descriptor
336 * @see javassist.bytecode.SignatureAttribute
410 * See {@link javassist.bytecode.AttributeInfo}.
427 * See {@link javassist.bytecode.AttributeInfo}.
813 abstract int compile(CtClass type, String name, Bytecode code,
819 Bytecode code, Javac drv) throws CannotCompileException;
829 int compile(CtClass type, String name, Bytecode code,
836 code.addPutfield(Bytecode.THIS, name, Descriptor.of(type))
    [all...]

Completed in 466 milliseconds

1 2 3 45 6 7 8 91011>>