/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
smtplib.py | 36 # ESMTP support, test code and doc fixes added by 77 """Base class for all exceptions that include an SMTP error code. 80 server returns an error code. The error code is stored in the 85 def __init__(self, code, msg): 86 self.smtp_code = code 88 self.args = (code, msg) 97 def __init__(self, code, msg, sender): 98 self.smtp_code = code 101 self.args = (code, msg, sender [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
smtplib.py | 36 # ESMTP support, test code and doc fixes added by 77 """Base class for all exceptions that include an SMTP error code. 80 server returns an error code. The error code is stored in the 85 def __init__(self, code, msg): 86 self.smtp_code = code 88 self.args = (code, msg) 97 def __init__(self, code, msg, sender): 98 self.smtp_code = code 101 self.args = (code, msg, sender [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
CodeItem.java | 20 import com.android.dx.dex.code.DalvCode; 21 import com.android.dx.dex.code.DalvInsnList; 33 * {@code dex} file. 42 /** {@code non-null;} method that this code implements */ 45 /** {@code non-null;} the bytecode instructions and associated data */ 46 private final DalvCode code; field in class:CodeItem 48 /** {@code null-ok;} the catches, if needed; set in {@link #addContents} */ 51 /** whether this instance is for a {@code static} method */ 55 * {@code non-null;} list of possibly-thrown exceptions; just used i [all...] |
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...] |
/external/jpeg/ |
jerror.h | 27 #define JMESSAGE(code,string) 35 #define JMESSAGE(code,string) code , 39 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */ 41 /* For maintenance convenience, list is alphabetical by message code name */ 57 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d") 85 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow") 86 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry") 172 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d") 178 JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code") [all...] |
/external/qemu/distrib/jpeg-6b/ |
jerror.h | 27 #define JMESSAGE(code,string) 35 #define JMESSAGE(code,string) code , 39 JMESSAGE(JMSG_NOMESSAGE, "Bogus message code %d") /* Must be first entry! */ 41 /* For maintenance convenience, list is alphabetical by message code name */ 57 JMESSAGE(JERR_BAD_POOL_ID, "Invalid memory pool code %d") 85 JMESSAGE(JERR_HUFF_CLEN_OVERFLOW, "Huffman code size table overflow") 86 JMESSAGE(JERR_HUFF_MISSING_CODE, "Missing Huffman code table entry") 172 JMESSAGE(JWRN_ADOBE_XFORM, "Unknown Adobe color transform code %d") 178 JMESSAGE(JWRN_HUFF_BAD_CODE, "Corrupt JPEG data: bad Huffman code") [all...] |
/cts/tools/dasm/src/dasm/ |
DopInfo.java | 19 import com.android.dx.dex.code.Dop; 20 import com.android.dx.dex.code.Dops; 21 import com.android.dx.dex.code.InsnFormat; 22 import com.android.dx.dex.code.form.Form10t; 23 import com.android.dx.dex.code.form.Form10x; 24 import com.android.dx.dex.code.form.Form11n; 25 import com.android.dx.dex.code.form.Form11x; 26 import com.android.dx.dex.code.form.Form12x; 27 import com.android.dx.dex.code.form.Form20t; 28 import com.android.dx.dex.code.form.Form21c [all...] |
/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...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
DebugInfoItem.java | 19 import com.android.dx.dex.code.DalvCode; 20 import com.android.dx.dex.code.DalvInsnList; 21 import com.android.dx.dex.code.LocalList; 22 import com.android.dx.dex.code.PositionList; 35 /** {@code non-null;} the code this item represents */ 36 private final DalvCode code; field in class:DebugInfoItem 43 public DebugInfoItem(DalvCode code, boolean isStatic, CstMethodRef ref) { 47 if (code == null) { 48 throw new NullPointerException("code == null") [all...] |
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/ |
RawHeadersTest.java | 70 final int code = 200; local 71 rawHeaders.setStatusLine("HTTP/1." + version + " " + code + " " + message); 74 assertEquals(code, rawHeaders.getResponseCode()); 80 final int code = 503; local 81 rawHeaders.setStatusLine("HTTP/1." + version + " " + code + " "); 84 assertEquals(code, rawHeaders.getResponseCode()); 95 final int code = 503; local 96 rawHeaders.setStatusLine("HTTP/1." + version + " " + code); 99 assertEquals(code, rawHeaders.getResponseCode());
|
/frameworks/av/media/mediaserver/ |
main_mediaserver.cpp | 69 const char *code; local 72 code = "CLD_EXITED"; 75 code = "CLD_KILLED"; 78 code = "CLD_DUMPED"; 81 code = "CLD_STOPPED"; 84 code = "CLD_TRAPPED"; 87 code = "CLD_CONTINUED"; 91 code = buffer; 96 ALOG(LOG_ERROR, "media.log", "pid %d status %d code %s user %ld.%03lds sys %ld.%03lds", 97 info.si_pid, info.si_status, code, [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
MockKeyboardSwitcher.java | 159 public void onPressKey(final int code, final boolean isSinglePointer) { 160 mState.onPressKey(code, isSinglePointer, mAutoCapsState); 163 public void onReleaseKey(final int code, final boolean withSliding) { 164 mState.onReleaseKey(code, withSliding); 165 if (mLongPressTimeoutCode == code) { 170 public void onCodeInput(final int code) { 172 if (Constants.isLetterCode(code)) { 173 mAutoCapsState = (code == MockConstants.CODE_AUTO_CAPS_TRIGGER) 179 mState.onCodeInput(code, mAutoCapsState);
|
/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; 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/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/chromium_org/chrome/test/chromedriver/net/ |
websocket.h | 2 // Use of this source code is governed by a BSD-style license that can be 49 void OnSocketConnect(int code); 52 void OnWrite(int code); 56 void OnRead(int code); 60 void InvokeConnectCallback(int code); 61 void Close(int code);
|
/external/chromium_org/third_party/leveldatabase/src/util/ |
status.cc | 2 // Use of this source code is governed by a BSD-style license that can be 19 Status::Status(Code code, const Slice& msg, const Slice& msg2) { 20 assert(code != kOk); 26 result[4] = static_cast<char>(code); 42 switch (code()) { 62 snprintf(tmp, sizeof(tmp), "Unknown code(%d): ", 63 static_cast<int>(code()));
|
/external/chromium_org/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)
|