HomeSort by relevance Sort by last modified time
    Searched defs:code (Results 26 - 50 of 1854) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2004-03-15-SimpleIndirectGoto.c 3 int code[]={0,0,0,0,1}; variable
21 bar(code);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/ia5/
der_length_ia5_string.c 21 int code, value; member in struct:__anon17405
131 if (ia5_table[x].code == c) {
143 return ia5_table[x].code;
  /external/dropbear/libtomcrypt/src/pk/asn1/der/printable_string/
der_length_printable_string.c 21 int code, value; member in struct:__anon17406
103 if (printable_table[x].code == c) {
115 return printable_table[x].code;
  /external/icu4c/common/
errorcode.cpp 25 UErrorCode code = errorCode; local
27 return code;
  /external/icu4c/extra/scrptrun/
srtest.cpp 34 UScriptCode code = scriptRun.getScriptCode(); local
36 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 61 Bytecode code = new Bytecode(cp); local
62 code.addAload(0);
65 regno += code.addLoad(regno, params[i]);
66 code.setMaxLocals(regno + 1); // the last parameter is added.
67 code.addInvokespecial(clazz, MethodInfo.nameInit, desc);
69 code.addReturn(null);
70 minfo.setCodeAttribute(code.toCodeAttribute());
90 * parameter type is <code>clazz</code>.
92 * <code>accDesc<code> must be identical to <code>desc</code>.
121 Bytecode code = new Bytecode(cp); local
173 Bytecode code = new Bytecode(cp); local
224 Bytecode code = new Bytecode(cp); local
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageVerificationResponse.java 20 public final int code; field in class:PackageVerificationResponse
24 public PackageVerificationResponse(int code, int callerUid) {
25 this.code = code;
  /packages/apps/Mms/src/org/w3c/dom/events/
EventException.java 16 * Event operations may throw an <code>EventException</code> as specified in
22 public EventException(short code, String message) {
24 this.code = code;
26 public short code; field in class:EventException
29 * If the <code>Event</code>'s type was not specified by initializing the
31 * as <code>null</code> or an empty string will also trigger this
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 17 from types import CodeType as code namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 17 from types import CodeType as code namespace
  /external/dexmaker/src/main/java/com/google/dexmaker/
Local.java 19 import com.android.dx.rop.code.RegisterSpec;
25 private final Code code; field in class:Local
30 private Local(Code code, TypeId<T> type) {
31 this.code = code;
35 static <T> Local<T> get(Code code, TypeId<T> type) {
36 return new Local<T>(code, type)
    [all...]
  /external/javassist/src/main/javassist/
CtNewMethod.java 24 * A collection of static methods for creating a <code>CtMethod</code>.
32 * Compiles the given source code and creates a method.
33 * The source code must include not only the method body
48 * Compiles the given source code and creates a method.
49 * The source code must include not only the method body
54 * <p>If the source code includes <code>$proceed()</code>, then
60 * that is called on by <code>$proceed()</code>
231 Bytecode code = new Bytecode(cp, 2, 1); local
272 Bytecode code = new Bytecode(cp, 3, 3); local
342 Bytecode code = new Bytecode(cp, 0, 0); local
    [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 20 import com.google.dexmaker.Code;
40 Code code = dexMaker.declare(fib, Modifier.PUBLIC | Modifier.STATIC); local
42 Local<Integer> i = code.getParameter(0, TypeId.INT);
43 Local<Integer> constant1 = code.newLocal(TypeId.INT);
44 Local<Integer> constant2 = code.newLocal(TypeId.INT);
45 Local<Integer> a = code.newLocal(TypeId.INT);
46 Local<Integer> b = code.newLocal(TypeId.INT);
47 Local<Integer> c = code.newLocal(TypeId.INT);
48 Local<Integer> d = code.newLocal(TypeId.INT)
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9); local
112 /* 0 */ code.addAload(0);
113 /* 1 */ code.addLdc("start");
114 /* 3 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
115 /* 6 */ code.addAload(0);
116 /* 7 */ code.addLdc("try");
117 /* 9 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
119 /* 14 */ code.addAstore(2);
120 /* 16 */ code.addAload(2)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchBuilder.java 17 package com.android.dexgen.dex.code;
30 * @return {@code non-null;} the constructed table
45 * @return {@code non-null;} the set of catch types
CodeAddress.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
23 * Pseudo-instruction which is used to track an address within a code
25 * exception handler ranges. Its code size is zero, and so instances
32 * unknown ({@code -1}).
34 * @param position {@code non-null;} source position
55 return "code-address";
SimpleInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
29 * unknown ({@code -1}).
32 * @param position {@code non-null;} source position
33 * @param registers {@code non-null;} register list, including a
VariableSizeInsn.java 17 package com.android.dexgen.dex.code;
19 import com.android.dexgen.rop.code.RegisterSpecList;
20 import com.android.dexgen.rop.code.SourcePosition;
28 * unknown ({@code -1}).
30 * @param position {@code non-null;} source position
31 * @param registers {@code non-null;} source registers
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ConservativeTranslationAdvice.java 17 package com.android.dexgen.rop.code;
21 * {@code false} to all methods.
25 /** {@code non-null;} standard instance of this class */
TranslationAdvice.java 17 package com.android.dexgen.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
  /dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java 17 package com.android.dx.dex.code;
29 * @return {@code non-null;} the constructed table
44 * @return {@code non-null;} the set of catch types
SimpleInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
29 * unknown ({@code -1}).
32 * @param position {@code non-null;} source position
33 * @param registers {@code non-null;} register list, including a
VariableSizeInsn.java 17 package com.android.dx.dex.code;
19 import com.android.dx.rop.code.RegisterSpecList;
20 import com.android.dx.rop.code.SourcePosition;
28 * unknown ({@code -1}).
30 * @param position {@code non-null;} source position
31 * @param registers {@code non-null;} source registers
  /dalvik/dx/src/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 17 package com.android.dx.rop.code;
21 * {@code false} to all methods.
25 /** {@code non-null;} standard instance of this class */
TranslationAdvice.java 17 package com.android.dx.rop.code;
23 * the early stage code be explicitly tied to the target.
33 * @param opcode {@code non-null;} the opcode
34 * @param sourceA {@code non-null;} the first source
35 * @param sourceB {@code non-null;} the second source
36 * @return {@code true} iff the target can represent the operation
46 * @param opcode {@code non-null;} opcode
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be

Completed in 6706 milliseconds

12 3 4 5 6 7 8 91011>>