| /external/javassist/src/main/javassist/ |
| CtNewConstructor.java | 24 * A collection of static methods for creating a <code>CtConstructor</code>. 28 * methods in this class. Call <code>makeClassInitializer()</code> in 29 * <code>CtClass</code> and append code snippet to the body of the class 30 * initializer obtained by <code>makeClassInitializer()</code>. 44 * <code>Object</code> and passed to a super-class 141 Bytecode code = new Bytecode(cp, 1, 1); local [all...] |
| CtField.java | 38 * Creates a <code>CtField</code> object. 40 * with <code>CtClass.addField()</code>. 42 * by a <code>CtField.Initializer</code> object. 45 * call <code>CtNewMethod.getter()</code> and 46 * <code>CtNewMethod.setter()</code> [all...] |
| /external/linux-tools-perf/util/ |
| run-command.c | 157 int status, code; local 173 code = WEXITSTATUS(status); 174 switch (code) { 180 return -code; 192 int code = start_command(cmd); local 193 if (code) 194 return code;
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| Warning.java | 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST 48 * Comment for <code>serialVersionUID</code> 52 /** warn code field, the warn code consists of three digits. 54 protected int code; field in class:Warning 77 ? Integer.toString(code) 84 : Integer.toString(code) + SP + agent; 88 * Gets code of WarningHeader 89 * @return code of WarningHeade [all...] |
| /external/qemu/android/protocol/ |
| user-events-protocol.h | 54 int code; member in struct:UserEventGeneric
|
| /external/strace/ |
| ioctl.c | 11 * 1. Redistributions of source code must retain the above copyright 38 * program `ioctlsort', such that the list is sorted by the `code' field. 76 unsigned long code1 = ((struct ioctlent *) a)->code; 77 unsigned long code2 = ((struct ioctlent *) b)->code; 82 ioctl_lookup(code) 83 long code; 87 ioent.code = code; 89 ioent.code &= (_IOC_NRMASK<<_IOC_NRSHIFT) | (_IOC_TYPEMASK<<_IOC_TYPESHIFT); 94 if ((--iop)->code != ioent.code) 105 long code; local [all...] |
| /external/v8/test/cctest/ |
| test-disasm-x64.cc | 6 // * Redistributions of source code must retain the above copyright 255 Handle<Code> ic(Isolate::Current()->builtins()->builtin( 416 Object* code = HEAP->CreateCode( local 418 Code::ComputeFlags(Code::STUB), 420 CHECK(code->IsCode()); 422 Code::cast(code)->Print(); 423 byte* begin = Code::cast(code)->instruction_start() [all...] |
| test-hashing.cc | 6 // * Redistributions of source code must retain the above copyright 35 #include "code-stubs.h" 164 Code* code = Code::cast(HEAP->CreateCode( local 166 Code::ComputeFlags(Code::STUB), 168 CHECK(code->IsCode()); 170 HASH_FUNCTION hash = FUNCTION_CAST<HASH_FUNCTION>(code->entry()); 193 Code* code = Code::cast(HEAP->CreateCode local [all...] |
| /external/webkit/Source/WebCore/fileapi/ |
| FileError.h | 8 * * Redistributions of source code must retain the above copyright 59 static PassRefPtr<FileError> create(ErrorCode code) { return adoptRef(new FileError(code)); } 61 ErrorCode code() const { return m_code; } function in class:WebCore::FileError 64 FileError(ErrorCode code) 65 : m_code(code)
|
| /external/webkit/Source/WebCore/storage/ |
| SQLError.h | 8 * 1. Redistributions of source code must retain the above copyright 41 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); } 43 unsigned code() const { return m_code; } function in class:WebCore::SQLError 58 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { }
|
| /external/webkit/Source/WebKit/win/ |
| DOMCSSClasses.cpp | 7 * 1. Redistributions of source code must retain the above copyright 144 WebCore::ExceptionCode code; local 145 m_style->setProperty(propertyNameString, valueString, priorityString, code);
|
| /libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
| ReasonCode.java | 25 * CRL Entry's Reason Code Extension (OID = 2.5.29.21). 47 // predefined reason code values 59 // the reason code value 60 private final byte code; field in class:ReasonCode 64 this.code = ((byte[]) ASN1.decode(encoding))[0]; 69 encoding = ASN1.encode(new byte[] { code }); 75 sb.append(prefix).append("Reason Code: [ "); 76 switch (code) {
|
| /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
| regex_error.h | 139 * @param ecode the regex error code. 147 * @brief Gets the regex error code. 149 * @returns the regex error code. 152 code() const function in class:regex_error
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
| regex_error.h | 139 * @param ecode the regex error code. 147 * @brief Gets the regex error code. 149 * @returns the regex error code. 152 code() const function in class:regex_error
|
| /system/security/keystore/ |
| keystore_client.cpp | 45 ALOGE("code called us with an argLen out of bounds: %llu", (unsigned long long) argLen); 61 uint8_t code = 0; local 63 || TEMP_FAILURE_RETRY(recv(sock, &code, 1, 0)) != 1 64 || code != NO_ERROR) { 65 ALOGW("Error from keystore: %d", code); 71 reply->setCode(static_cast<ResponseCode>(code)); 83 code = SYSTEM_ERROR; 91 code = SYSTEM_ERROR; 96 return static_cast<ResponseCode>(code); 121 void Keystore_Reply::setCode(ResponseCode code) { 125 ResponseCode Keystore_Reply::code() const { function in class:Keystore_Reply [all...] |
| /external/javassist/src/test/test/javassist/bytecode/analysis/ |
| AnalyzerTest.java | 142 private static void addJump(Bytecode code, int opcode, int pos) { 143 int current = code.currentPc(); 144 code.addOpcode(opcode); 145 code.addIndex(pos - current); 167 fail("Invalid code should have triggered a BadBytecode exception"); 179 fail("Code falloff should have triggered a BadBytecode exception"); 202 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 203 /* 0 */ code.addIconst(1); 204 /* 1 */ addJump(code, Opcode.GOTO, 5); 205 /* 4 */ code.addIconst(0); // DEA 222 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 239 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 254 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local 278 Bytecode code = new Bytecode(info.getConstPool(), 1, 2); local [all...] |
| /bionic/libc/kernel/common/linux/netfilter_ipv4/ |
| ip_conntrack_tuple.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * 71 u_int8_t type, code; member in struct:ip_conntrack_tuple::__anon384::__anon385::__anon388 [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| CatchTable.java | 17 package com.android.dexgen.dex.code; 23 * Table of catch entries. Each entry includes a range of code 29 /** {@code non-null;} empty instance */ 33 * Constructs an instance. All indices initially contain {@code null}. 35 * @param size {@code >= 0;} the size of the table 44 * do that, this will throw {@code NullPointerException}. 46 * @param n {@code >= 0, < size();} which index 47 * @return {@code non-null;} element at that index 56 * @param n {@code >= 0, < size();} which index 57 * @param entry {@code non-null;} the entry to set at {@code n [all...] |
| CstInsn.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 /** {@code non-null;} the constant argument for this instruction */ 32 * {@code >= -1;} the constant pool index for {@link #constant}, or 33 * {@code -1} if not yet set 38 * {@code >= -1;} the constant pool index for the class reference in 39 * {@link #constant} if any, or {@code -1} if not yet set 45 * initially unknown ({@code -1}) as is the constant pool index. 48 * @param position {@code non-null;} source positio [all...] |
| DalvCode.java | 17 package com.android.dexgen.dex.code; 26 * corresponds to a {@code code} structure in a {@code .dex} file. 36 * {@code null-ok;} the instruction list, ready for final processing; 42 * {@code non-null;} unprocessed catch table; 48 * {@code null-ok;} catch table; set in 54 * {@code null-ok;} source positions list; set in 60 * {@code null-ok;} local variable list; set in 66 * {@code null-ok;} the processed instruction list; set i [all...] |
| HighRegisterPrefix.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.RegisterSpec; 20 import com.android.dexgen.rop.code.RegisterSpecList; 21 import com.android.dexgen.rop.code.SourcePosition; 27 * {@code move*} instructions to move a set of registers into 28 * registers starting at {@code 0} sequentially. This is used 33 /** {@code null-ok;} cached instructions, if constructed */ 38 * unknown ({@code -1}). 40 * @param position {@code non-null;} source position 41 * @param registers {@code non-null;} source register [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form21h.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.CstInsn; 20 import com.android.dexgen.dex.code.DalvInsn; 21 import com.android.dexgen.dex.code.InsnFormat; 22 import com.android.dexgen.rop.code.RegisterSpecList; 28 * Instruction format {@code 21h}. See the instruction format spec 32 /** {@code non-null;} unique instance of this class */
|
| /dalvik/dexgen/src/com/android/dexgen/rop/code/ |
| Exceptions.java | 17 package com.android.dexgen.rop.code; 26 /** {@code non-null;} the type {@code java.lang.ArithmeticException} */ 31 * {@code non-null;} the type 32 * {@code java.lang.ArrayIndexOutOfBoundsException} 37 /** {@code non-null;} the type {@code java.lang.ArrayStoreException} */ 41 /** {@code non-null;} the type {@code java.lang.ClassCastException} */ 45 /** {@code non-null;} the type {@code java.lang.Error} * [all...] |
| PlainInsn.java | 17 package com.android.dexgen.rop.code; 34 * @param opcode {@code non-null;} the opcode 35 * @param position {@code non-null;} source position 36 * @param result {@code null-ok;} spec for the result, if any 37 * @param sources {@code non-null;} specs for all the sources 60 * @param opcode {@code non-null;} the opcode 61 * @param position {@code non-null;} source position 62 * @param result {@code null-ok;} spec for the result, if any 63 * @param source {@code non-null;} spec for the source
|
| SourcePosition.java | 17 package com.android.dexgen.rop.code; 23 * Information about a source position for code, which includes both a 27 /** {@code non-null;} convenient "no information known" instance */ 31 /** {@code null-ok;} name of the file of origin or {@code null} if unknown */ 35 * {@code >= -1;} the bytecode address, or {@code -1} if that 41 * {@code >= -1;} the line number, or {@code -1} if that 49 * @param sourceFile {@code null-ok;} name of the file of origin o [all...] |