| /external/javassist/src/main/javassist/util/proxy/ |
| ProxyFactory.java | 41 * forwarded and then <code>invoke()</code> is called on the method handler 45 * <p>For example, if the following code is executed, 69 * <code>mi</code> and prints a message before executing the originally called method 70 * <code>bar()</code> in <code>Foo</code>. 76 * <p>The last three lines of the code shown above can be replaced with a call t 860 Bytecode code = new Bytecode(cp, 0, 0); local 878 Bytecode code = new Bytecode(cp, 2, 2); local 893 Bytecode code = new Bytecode(cp, 1, 1); local 1061 Bytecode code = new Bytecode(cp, 0, 0); local 1105 Bytecode code = new Bytecode(cp, 0, 0); local 1128 Bytecode code = new Bytecode(cp, 0, args + 2); local 1325 Bytecode code = new Bytecode(cp, 0, 1); local [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| DebugInfoItem.java | 19 import com.android.dexgen.dex.code.DalvCode; 20 import com.android.dexgen.dex.code.DalvInsnList; 21 import com.android.dexgen.dex.code.LocalList; 22 import com.android.dexgen.dex.code.PositionList; 37 /** {@code non-null;} the code this item represents */ 38 private final DalvCode code; field in class:DebugInfoItem 45 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { 49 if (code == null) { 50 throw new NullPointerException("code == null") [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| DebugInfoItem.java | 20 import com.android.dx.dex.code.DalvCode; 21 import com.android.dx.dex.code.DalvInsnList; 22 import com.android.dx.dex.code.LocalList; 23 import com.android.dx.dex.code.PositionList; 34 /** {@code non-null;} the code this item represents */ 35 private final DalvCode code; field in class:DebugInfoItem 42 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { 46 if (code == null) { 47 throw new NullPointerException("code == null") [all...] |
| /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ |
| utf16_le.c | 11 * 1. Redistributions of source code must retain the above copyright
52 utf16le_code_to_mbclen(OnigCodePoint code)
54 return (code > 0xffff ? 4 : 2);
86 OnigCodePoint code;
local 91 code = ((((c1 - 0xd8) << 2) + ((c0 & 0xc0) >> 6) + 1) << 16)
96 code = c1 * 256 + p[0];
98 return code;
102 utf16le_code_to_mbc(OnigCodePoint code, UChar *buf)
106 if (code > 0xffff) {
109 plane = (code >> 16) - 1; [all...] |
| /external/skqp/src/gpu/ccpr/ |
| GrCCTriangleShader.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 16 GrGLSLVarying::Scope scope, SkString* code, 22 code->appendf("%s = %s;", OutName(fCoverageTimesWind), wind); 25 code->appendf("%s = %s * %s;", OutName(fCoverageTimesWind), inputCoverage, wind); 89 GrGLSLVarying::Scope scope, SkString* code, 100 code->appendf("for (int i = 0; i < 2; ++i) {"); 101 code->appendf( "%s[i] = %s * %s[i] + %s[i];", 104 code->appendf( "%s[i] = %s[i];", OutName(fBisectInAABoxes), fGeoShaderBisects.c_str()); 105 code->appendf("}"); 109 code->appendf("%s = %s * .5;", OutName(fWindTimesHalf), wind) [all...] |
| /external/v8/src/profiler/ |
| profiler-listener.cc | 2 // Use of this source code is governed by a BSD-style license that can be 35 AbstractCode* code, const char* name) { 38 rec->start = code->address(); 42 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start()); 43 RecordInliningInfo(rec->entry, code); 44 rec->size = code->ExecutableSize(); 49 AbstractCode* code, Name* name) { 52 rec->start = code->address(); 56 CpuProfileNode::kNoColumnNumberInfo, NULL, code->instruction_start()); 57 RecordInliningInfo(rec->entry, code); [all...] |
| /frameworks/av/media/audioserver/ |
| main_audioserver.cpp | 80 const char *code; local 83 code = "CLD_EXITED"; 86 code = "CLD_KILLED"; 89 code = "CLD_DUMPED"; 92 code = "CLD_STOPPED"; 95 code = "CLD_TRAPPED"; 98 code = "CLD_CONTINUED"; 102 code = buffer; 107 ALOG(LOG_ERROR, "media.log", "pid %d status %d code %s user %ld.%03lds sys %ld.%03lds", 108 info.si_pid, info.si_status, code, [all...] |
| /system/update_engine/common/ |
| action_processor.cc | 108 ErrorCode code) { 111 delegate_->ActionCompleted(this, actionptr, code); 113 current_action_->ActionCompleted(code); 119 << " with code " << utils::ErrorCodeToString(code); 120 if (!actions_.empty() && code != ErrorCode::kSuccess) { 128 suspended_error_code_ = code; 131 StartNextActionOrFinish(code); 134 void ActionProcessor::StartNextActionOrFinish(ErrorCode code) { 137 delegate_->ProcessingDone(this, code); [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| LocalSnapshot.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.RegisterSpecSet; 22 import com.android.dexgen.rop.code.SourcePosition; 30 /** {@code non-null;} local state associated with this instance */ 35 * unknown ({@code -1}). 37 * @param position {@code non-null;} source position 38 * @param locals {@code non-null;} associated local variable state 65 * @return {@code non-null;} the stat [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/form/ |
| Form11x.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.SimpleInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 11x}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| Form21t.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.TargetInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 21t}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| Form22x.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.SimpleInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 22x}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| Form23x.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.SimpleInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 23x}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| Form31t.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.TargetInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 31t}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| Form32x.java | 17 package com.android.dexgen.dex.code.form; 19 import com.android.dexgen.dex.code.DalvInsn; 20 import com.android.dexgen.dex.code.InsnFormat; 21 import com.android.dexgen.dex.code.SimpleInsn; 22 import com.android.dexgen.rop.code.RegisterSpecList; 26 * Instruction format {@code 32x}. See the instruction format spec 30 /** {@code non-null;} unique instance of this class */
|
| /dalvik/dx/src/com/android/dx/dex/code/ |
| LocalSnapshot.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpec; 20 import com.android.dx.rop.code.RegisterSpecList; 21 import com.android.dx.rop.code.RegisterSpecSet; 22 import com.android.dx.rop.code.SourcePosition; 31 /** {@code non-null;} local state associated with this instance */ 36 * unknown ({@code -1}). 38 * @param position {@code non-null;} source position 39 * @param locals {@code non-null;} associated local variable state 66 * @return {@code non-null;} the stat [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/form/ |
| Form11x.java | 17 package com.android.dx.dex.code.form; 19 import com.android.dx.dex.code.DalvInsn; 20 import com.android.dx.dex.code.InsnFormat; 21 import com.android.dx.dex.code.SimpleInsn; 22 import com.android.dx.rop.code.RegisterSpecList; 27 * Instruction format {@code 11x}. See the instruction format spec 31 /** {@code non-null;} unique instance of this class */
|
| /external/libxaac/decoder/drc_src/ |
| impd_drc_extr_delta_coded_info.c | 61 delta_time_code_tbl_item[0].code = -1; 65 delta_time_code_tbl_item[1].code = 0x0; 69 delta_time_code_tbl_item[n + 2].code = 0x4 + n; 74 delta_time_code_tbl_item[n + 6].code = 0x10 + n; 81 delta_time_code_tbl_item[n + 14].code = (0x3 << Z) + n;
|
| /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/ |
| RangeDecoder.java | 18 int code = 0; field in class:RangeDecoder 29 // Compare code and bound as if they were unsigned 32-bit integers. 30 if ((code ^ 0x80000000) < (bound ^ 0x80000000)) { 37 code -= bound; 76 int t = (code - range) >>> 31; 77 code -= range & (t - 1);
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
| Response.java | 39 private final int code; field in class:Response 53 this.code = builder.code; 68 * may copy headers like {@code Content-Length} from the request body. 86 /** Returns the HTTP status code. */ 87 public int code() { method in class:Response 88 return code; 92 * Returns true if the code is in [200..300), which means the request was 96 return code >= 200 && code < 300 224 private int code = -1; field in class:Response.Builder 260 public Builder code(int code) { method in class:Response.Builder [all...] |
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
| ShadowBinderTest.java | 23 assertThat(testBinder.code, equalTo(2)); 30 int code; field in class:ShadowBinderTest.TestBinder 36 protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException { 37 this.code = code;
|
| /external/swiftshader/third_party/LLVM/lib/Support/ |
| system_error.cpp | 35 error_category::equivalent(int code, const error_condition& condition) const { 36 return default_error_condition(code) == condition; 40 error_category::equivalent(const error_code& code, int condition) const { 41 return *this == code.category() && code.value() == condition;
|
| /external/syslinux/gpxe/src/arch/i386/interface/pcbios/ |
| biosint.c | 46 char code[64]; local 47 copy_from_real ( code, chain_vector->segment, 48 chain_vector->offset, sizeof ( code ) ); 49 DBG_HDA ( *chain_vector, code, sizeof ( code ) ); 64 * Note that this operation may fail, if some external code has hooked
|
| /external/v8/tools/testrunner/server/ |
| signatures.py | 6 # * Redistributions of source code must retain the above copyright 41 code = subprocess.call("openssl dgst -out %s -sign %s %s" % 44 if code != 0: return [None, code] 56 code = subprocess.call("openssl dgst -verify %s -signature %s %s" % 59 matched = (code == 0)
|
| /frameworks/compile/mclinker/lib/Target/AArch64/ |
| AArch64CA53Erratum843419Stub.cpp | 75 ErratumSequence code; local 76 pFragRef.memcpy(&code, AArch64InsnHelpers::InsnSize * 3, 0); 78 if (isErratum843419Sequence(code.insns[0], code.insns[1], code.insns[2])) {
|