| /frameworks/base/services/core/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;
|
| /libcore/ojluni/src/main/java/sun/net/ftp/ |
| FtpProtocolException.java | 5 * This code is free software; you can redistribute it and/or modify it 9 * by Oracle in the LICENSE file that accompanied this code. 11 * This code is distributed in the hope that it will be useful, but WITHOUT 15 * accompanied this code). 31 * <p>The specific error code can be retreived with {@link #getReplyCode() }.</p> 36 private final FtpReplyCode code; field in class:FtpProtocolException 39 * Constructs a new {@code FtpProtocolException} from the 40 * specified detail message. The reply code is set to unknow error. 46 code = FtpReplyCode.UNKNOWN_ERROR; 50 * Constructs a new {@code FtpProtocolException} from th [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| new.py | 17 from types import CodeType as code namespace
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| new.py | 17 from types import CodeType as code namespace
|
| /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
|
| /system/core/libpixelflinger/tests/arch-arm64/disassembler/ |
| arm64_diassembler_test.cpp | 8 * * Redistributions of source code must retain the above copyright 32 int arm64_disassemble(uint32_t code, char* instr); 36 uint32_t code; member in struct:test_table_entry_t 301 arm64_disassemble(test->code, instr); 305 "Code : 0x%0x\n" 307 "Actual : %s\n", test->code, test->instr, instr);
|
| /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
|
| /external/curl/tests/libtest/ |
| lib1509.c | 36 CURLcode code; local 54 code = curl_easy_perform(curl); 55 if(CURLE_OK != code) { 57 "with code %d (%s)\n", 58 __FILE__, __LINE__, (int)code, curl_easy_strerror(code)); 63 code = curl_easy_getinfo(curl, CURLINFO_HEADER_SIZE, &headerSize); 64 if(CURLE_OK != code) { 66 "with code %d (%s)\n", 67 __FILE__, __LINE__, (int)code, curl_easy_strerror(code)) [all...] |
| /external/dexmaker/src/dx/java/com/android/dx/cf/code/ |
| Merger.java | 17 package com.android.dx.cf.code; 29 * @param ft1 {@code non-null;} a frame type 30 * @param ft2 {@code non-null;} another frame type 31 * @return {@code non-null;} the result of merging the two types
|
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| CatchBuilder.java | 17 package com.android.dx.dex.code; 30 * @return {@code non-null;} the constructed table 45 * @return {@code non-null;} the set of catch types
|