HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1 - 25 of 9702) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/qemu/distrib/zlib-1.2.8/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/zlib/src/contrib/infback9/
inffix9.h 10 static const code lenfix[512] = {
99 static const code distfix[32] = {
  /external/zlib/src/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /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;
  /external/chromium_org/third_party/libjingle/overrides/talk/media/webrtc/
webrtcexport.h 2 // Use of this source code is governed by a BSD-style license that can be
14 #define NON_EXPORTED_BASE(code) code
  /external/clang/test/Driver/
inhibit-downstream-commands.c 6 invalid C code!
  /external/llvm/test/MC/ARM/
fixup-cpu-mode.s 5 .code 16
8 .code 32
  /external/chromium_org/third_party/WebKit/public/web/
WebScriptSource.h 8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:blink::WebScriptSource
44 WebScriptSource(const WebString& code)
45 : code(code), startLine(1) { }
46 WebScriptSource(const WebString& code, const WebURL& url)
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine)
49 : code(code), url(url), startLine(startLine) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ByteArray.java 25 public static int readU16bit(byte[] code, int index) {
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
32 public static int readS16bit(byte[] code, int index) {
33 return (code[index] << 8) | (code[index + 1] & 0xff);
39 public static void write16bit(int value, byte[] code, int index) {
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
47 public static int read32bit(byte[] code, int index)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_acelp_2p_in_64.cpp 22 ANSI-C code for the Adaptive Multi-Rate - Wideband (AMR-WB) speech codec
48 int16 code[] (o): Q9 algebraic (fixed) codebook excitation
69 PSEUDO-CODE
121 ; FUNCTION CODE
126 int16 code[] /* (o): Q9 algebraic (fixed) codebook excitation */
131 pv_memset(code, 0, L_CODE*sizeof(*code));
139 code[i] = 512;
143 code[i] = -512;
150 code[i] = 512
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMDOMException.java 36 * @param code
39 public DTMDOMException(short code, String message)
41 super(code, message);
48 * @param code
50 public DTMDOMException(short code)
52 super(code, "");
  /external/chromium_org/net/http/
http_status_code.cc 2 // Use of this source code is governed by a BSD-style license that can be
11 const char* GetHttpReasonPhrase(HttpStatusCode code) {
12 switch (code) {
14 #define HTTP_STATUS(label, code, reason) case HTTP_ ## label: return reason;
19 NOTREACHED() << "unknown HTTP status code " << code;
  /external/chromium_org/third_party/icu/source/common/
utypes.c 190 u_errorName(UErrorCode code) {
191 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
192 return _uErrorName[code];
193 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
194 return _uErrorInfoName[code - U_ERROR_WARNING_START];
195 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
196 return _uTransErrorName[code - U_PARSE_ERROR_START]
    [all...]
  /external/icu/icu4c/source/common/
utypes.c 191 u_errorName(UErrorCode code) {
192 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
193 return _uErrorName[code];
194 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
195 return _uErrorInfoName[code - U_ERROR_WARNING_START];
196 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
197 return _uTransErrorName[code - U_PARSE_ERROR_START]
    [all...]
  /frameworks/av/media/mtp/
MtpDebug.h 29 static const char* getOperationCodeName(MtpOperationCode code);
30 static const char* getFormatCodeName(MtpObjectFormat code);
31 static const char* getObjectPropCodeName(MtpPropertyCode code);
32 static const char* getDevicePropCodeName(MtpPropertyCode code);
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSException.java 16 * Parser or write operations may throw an <code>LSException</code> if the
18 * <code>DOMError</code> with a severity of
19 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered
20 * <code>DOMError.SEVERITY_ERROR</code>, or if
21 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code>
34 public short code; field in class:LSException
    [all...]
  /packages/apps/Mms/src/org/w3c/dom/events/
EventException.java 16 * Event operations may throw an <code>EventException</code> as specified in
22 public EventException(short code, String message) {
24 this.code = code;
26 public short code; field in class:EventException
29 * If the <code>Event</code>'s type was not specified by initializing the
31 * as <code>null</code> or an empty string will also trigger this
    [all...]
  /external/libpng/tests/
pngstest-error 2 code=77 # skipped
10 code=0 # oops, success: should not happen!
14 exit $code
  /external/smack/src/org/jivesoftware/smack/packet/
StreamError.java 28 * <tr><td><b>Code</b></td><td><b>Description</b></td></tr>
85 private String code; field in class:StreamError
87 public StreamError(String code) {
89 this.code = code;
93 * Returns the error code.
95 * @return the error code.
98 return code;
103 txt.append("stream:error (").append(code).append(")");
  /external/chromium_org/third_party/libxml/src/include/libxml/
xmlunicode.h 26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
    [all...]
  /external/libxml2/include/libxml/
xmlunicode.h 26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
    [all...]
  /external/strace/
ioctl.c 11 * 1. Redistributions of source code must retain the above copyright
38 unsigned long code2 = ((struct_ioctlent *) b)->code;
43 ioctl_lookup(long code)
47 code &= (_IOC_NRMASK<<_IOC_NRSHIFT) | (_IOC_TYPEMASK<<_IOC_TYPESHIFT);
48 iop = bsearch((void*)code, ioctlent,
52 if (iop->code != code) {
63 long code; local
65 code = iop->code;
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 682 * Writes the Instruction at the given offset in the given code attribute.
686 write(codeAttribute.code, offset);
691 * Writes the Instruction at the given offset in the given code array.
693 public void write(byte[] code, int offset)
698 code[offset++] = InstructionConstants.OP_WIDE;
702 code[offset++] = opcode;
705 writeInfo(code, offset);
722 protected abstract void readInfo(byte[] code, int offset);
728 protected abstract void writeInfo(byte[] code, int offset);
793 protected static int readByte(byte[] code, int offset
    [all...]

Completed in 1824 milliseconds

1 2 3 4 5 6 7 8 91011>>