| /external/apache-http/src/org/apache/http/ |
| HttpResponse.java | 55 * @return the status line, or <code>null</code> if not yet set 72 * @param code the status code 74 void setStatusLine(ProtocolVersion ver, int code); 80 * @param code the status code 81 * @param reason the reason phrase, or <code>null</code> to omit 83 void setStatusLine(ProtocolVersion ver, int code, String reason) [all...] |
| /external/v8/test/mjsunit/compiler/ |
| literals-assignment.js | 6 // * Redistributions of source code must retain the above copyright 34 var code = "(function() {\ variable 39 assertEquals(8, eval(code)); 41 code = "(function() {\ 46 assertEquals("abc", eval(code)); 50 code = "(function() {\ 55 assertEquals(8, eval(code)); 58 code = "(function() {\ 63 assertEquals(8, eval(code)); 66 code = "(function() { [all...] |
| /external/webkit/WebCore/dom/ |
| ExceptionBase.cpp | 8 * 1. Redistributions of source code must retain the above copyright 35 : m_code(description.code) 40 m_message = String::format("%s: %s Exception %d", description.name, description.typeName, description.code); 42 m_message = String::format("%s Exception %d", description.typeName, description.code);
|
| /frameworks/base/core/java/android/webkit/ |
| MockGeolocation.java | 40 public void setError(int code, String message) { 42 nativeSetError(code, message); 58 private static native void nativeSetError(int code, String message);
|
| /frameworks/base/services/java/com/android/server/ |
| NativeDaemonConnectorException.java | 34 public NativeDaemonConnectorException(int code, String cmd, String error) 36 super(String.format("Cmd {%s} failed with code %d : {%s}", cmd, code, error)); 37 mCode = code;
|
| INativeDaemonConnectorCallbacks.java | 23 boolean onEvent(int code, String raw, String[] cooked);
|
| /external/elfutils/libdw/ |
| dwarf_whatattr.c | 1 /* Return attribute code of given attribute. 27 return attr == NULL ? 0 : attr->code;
|
| /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/ |
| dec_acelp_4p_in_64.cpp | 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec 55 int16 code[] (o) Q9: algebraic (fixed) codebook excitation 82 PSEUDO-CODE 123 void add_pulses(int16 pos[], int16 nb_pulse, int16 track, int16 code[]); 145 ; FUNCTION CODE 157 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */ 162 pv_memset(code, 0, L_CODE*sizeof(*code)); 174 add_pulses(pos, 1, k, code); 183 add_pulses(pos, 2, k, code); [all...] |
| /external/strace/ |
| ioctlsort.c | 9 * 1. Redistributions of source code must retain the above copyright 41 unsigned long code; member in struct:ioctlent 53 unsigned long code1 = ((struct ioctlent *) a)->code; 54 unsigned long code2 = ((struct ioctlent *) b)->code; 68 ioctlent[i].doth, ioctlent[i].symbol, ioctlent[i].code);
|
| /external/v8/src/ |
| interpreter-irregexp.h | 6 // * Redistributions of source code must retain the above copyright 28 // A simple interpreter for the Irregexp byte code. 39 static bool Match(Handle<ByteArray> code,
|
| /external/webkit/WebKit/mac/Misc/ |
| WebKitErrorsPrivate.h | 8 * 1. Redistributions of source code must retain the above copyright 54 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URL; 55 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL; 57 - (id)_initWithPluginErrorCode:(int)code
|
| /frameworks/base/media/libstagefright/codecs/amrwb/src/ |
| dec_acelp_4p_in_64.cpp | 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec 55 int16 code[] (o) Q9: algebraic (fixed) codebook excitation 82 PSEUDO-CODE 123 void add_pulses(int16 pos[], int16 nb_pulse, int16 track, int16 code[]); 145 ; FUNCTION CODE 157 int16 code[] /* (o) Q9: algebraic (fixed) codebook excitation */ 162 pv_memset(code, 0, L_CODE*sizeof(*code)); 174 add_pulses(pos, 1, k, code); 183 add_pulses(pos, 2, k, code); [all...] |
| /dalvik/dx/src/com/android/dx/cf/attrib/ |
| AttCode.java | 19 import com.android.dx.cf.code.ByteCatchList; 20 import com.android.dx.cf.code.BytecodeArray; 25 * Attribute class for standard {@code Code} attributes. 28 /** {@code non-null;} attribute name for attributes of this type */ 29 public static final String ATTRIBUTE_NAME = "Code"; 31 /** {@code >= 0;} the stack size */ 34 /** {@code >= 0;} the number of locals */ 37 /** {@code non-null;} array containing the bytecode per se */ 38 private final BytecodeArray code; field in class:AttCode [all...] |
| /external/apache-http/src/org/apache/commons/codec/language/ |
| Metaphone.java | 26 * Permission given by <CITE>wbrogden</CITE> for code to be used anywhere. 54 * The max code length for metaphone is 4 72 * @param txt String to find the metaphone code for 73 * @return A metaphone code corresponding to the String supplied 88 StringBuffer code = new StringBuffer(10) ; // output local 130 while ((code.length() < this.getMaxCodeLen()) && 131 (n < wdsz) ) { // max code size of 4 works well 140 code.append(symb); 148 code.append(symb); 158 code.append('X'); [all...] |
| /external/apache-http/src/org/apache/http/message/ |
| BasicHttpResponse.java | 68 * <code>null</code> to disable automatic 71 * <code>null</code> for the system locale 102 * @param code the status code of the response 103 * @param reason the reason phrase to the status code, or 104 * <code>null</code> 107 final int code, 185 final int code = this.statusline.getStatusCode(); local [all...] |
| /external/proguard/src/proguard/classfile/instruction/ |
| LookUpSwitchInstruction.java | 83 protected void readInfo(byte[] code, int offset) 89 defaultOffset = readInt(code, offset); offset += 4; 90 int jumpOffsetCount = readInt(code, offset); offset += 4; 98 cases[index] = readInt(code, offset); offset += 4; 99 jumpOffsets[index] = readInt(code, offset); offset += 4; 104 protected void writeInfo(byte[] code, int offset) 109 writeByte(code, offset++, 0); 113 writeInt(code, offset, defaultOffset); offset += 4; 114 writeInt(code, offset, cases.length); offset += 4; 119 writeInt(code, offset, cases[index]); offset += 4 [all...] |
| TableSwitchInstruction.java | 87 protected void readInfo(byte[] code, int offset) 93 defaultOffset = readInt(code, offset); offset += 4; 94 lowCase = readInt(code, offset); offset += 4; 95 highCase = readInt(code, offset); offset += 4; 102 jumpOffsets[index] = readInt(code, offset); offset += 4; 107 protected void writeInfo(byte[] code, int offset) 112 writeByte(code, offset++, 0); 116 writeInt(code, offset, defaultOffset); offset += 4; 117 writeInt(code, offset, lowCase); offset += 4; 118 writeInt(code, offset, highCase); offset += 4 [all...] |
| /external/webkit/WebKit/chromium/src/ |
| WebEntities.cpp | 8 * * Redistributions of source code must retain the above copyright 63 int code = entity->code; local 66 if (map.contains(code) && map.get(code) == name.lower()) 69 if (standardHTML && (code == '%' || code == 0x2285 || code == 0x00b9)) 71 map.set(code, name); 99 String WebEntities::entityNameByCode(int code) cons [all...] |
| /external/webkit/JavaScriptCore/pcre/ |
| pcre_compile.cpp | 16 * Redistributions of source code must retain the above copyright notice, 60 * Code parameters and static tables * 89 /* Error code numbers. They are given names so that they can more easily be 100 static const char* errorText(ErrorCode code) 111 "internal error: code overflow\0" 126 int i = code; 154 static bool bracketIsAnchored(const unsigned char* code); 155 static bool bracketNeedsLineStart(const unsigned char* code, unsigned captureMap, unsigned backrefMap); 156 static int bracketFindFirstAssertedCharacter(const unsigned char* code, bool inassert); 378 errorCodePtr points to error code variabl 578 unsigned char* code = *codePtr; local 2610 unsigned char* code = const_cast<unsigned char*>(codeStart); local [all...] |
| /external/libxml2/ |
| xmlunicode.c | [all...] |
| /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/ |
| Charset_MultiByte_EUC_JP_Android.java | [all...] |
| /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
| ReasonCode.java | 26 * CRL Entry's Reason Code Extension (OID = 2.5.29.21). 48 // predefined reason code values 60 // the reason code value 61 private final byte code; field in class:ReasonCode 63 public ReasonCode(byte code) { 64 this.code = code; 69 this.code = ((byte[]) ASN1.decode(encoding))[0]; 73 return code; 82 encoding = ASN1.encode(new byte[] {(byte) code}); [all...] |
| /external/e2fsprogs/lib/et/ |
| com_err.c | 20 default_com_err_proc (const char *whoami, errcode_t code, const 25 default_com_err_proc (const char *whoami, errcode_t code, const 32 if (code) { 33 fputs(error_message(code), stderr); 48 void com_err_va (const char *whoami, errcode_t code, const char *fmt, 51 (*com_err_hook) (whoami, code, fmt, args); 55 errcode_t code, 63 com_err_va (whoami, code, fmt, pvar);
|
| /external/qemu/distrib/zlib-1.2.3/ |
| inftrees.h | 12 information needed to do the operation requested by the code that 14 table that indexes more bits of the code. op indicates whether 16 distance, an end-of-block, or an invalid code. For a table 19 is the number of extra bits to get after the code. bits is 20 the number of bits in this code or part of the code to drop off 26 unsigned char bits; /* bits in this part of the code */ 27 unsigned short val; /* offset in table or code value */ 28 } code; typedef in typeref:struct:__anon4526 35 01000000 - invalid code [all...] |
| /external/webkit/WebCore/storage/ |
| IDBDatabaseError.idl | 8 * 1. Redistributions of source code must retain the above copyright 33 attribute unsigned short code;
|