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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/distrib/zlib-1.2.3/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/zlib/contrib/infback9/
inffix9.h 10 static const code lenfix[512] = {
99 static const code distfix[32] = {
  /external/zlib/
inffixed.h 10 static const code lenfix[512] = {
87 static const code distfix[32] = {
  /external/icu4c/common/
utypes.c 179 u_errorName(UErrorCode code) {
180 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
181 return _uErrorName[code];
182 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
183 return _uErrorInfoName[code - U_ERROR_WARNING_START];
184 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
185 return _uTransErrorName[code - U_PARSE_ERROR_START]
    [all...]
  /external/webkit/WebKit/chromium/public/
WebScriptSource.h 8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:WebKit::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/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/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...]
  /frameworks/base/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...]
  /dalvik/libcore/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, "");
  /dalvik/libcore/xml/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/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/elfutils/tests/
run-show-abbrev.sh 25 abbrev[0]: code = 1, tag = 17, children = 1
26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
31 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
32 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
33 abbrev[19]: code = 2, tag = 46, children = 1
34 abbrev[19]: attr[0]: code = 1, form = 19, offset = 1
    [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...]
  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
DOMException.h 26 * values in ordinary processing situations, such as out-of-bound errors when using <code>NodeList</code>.
37 short code; member in class:DOMException
39 DOMException(short code)
41 this->code = code;
151 return code;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEvent.java 77 * This event input specified character({@code chars}) into the cursor position.
84 * This event changes a character at cursor position with specified rule({@code toggleMap}).
97 * This event processes a {@code keyEvent}.
104 * This event processes a {@code keyEvent}.
171 * To get words from the list, use {@code GET_WORD} event.
178 * Get a word from top of the list made by {@code LIST_WORDS_IN_USER_DICTIONARY}.
227 /** Event code */
228 public int code = UNDEFINED; field in class:OpenWnnEvent
243 /** Error code */
249 * @param code The cod
    [all...]
  /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...]
  /bionic/libc/regex/
cname.h 8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
41 char code; member in struct:cname
  /dalvik/libcore/xml/src/main/java/org/w3c/dom/
DOMException.java 21 * <code>NodeList</code>.
24 * exception if a <code>null</code> argument is passed when <code>null</code>
34 public DOMException(short code, String message) {
36 this.code = code;
38 public short code; field in class:DOMException
    [all...]
  /external/dropbear/libtommath/
bn_error.c 19 int code; member in struct:__anon1648
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code)
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
  /external/qemu/android/
keycode.c 15 android_keycode_rotate( AndroidKeyCode code, int rotation )
25 if (code == wheel[index]) {
27 code = wheel[index];
31 return code;
  /external/webkit/WebCore/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
37 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED };
39 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
41 Code code() const { return m_code; } function in class:WebCore::MediaError
44 MediaError(Code code) : m_code(code) { }
    [all...]
  /external/webkit/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
47 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { }
  /bionic/libc/kernel/common/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
filter.h 23 __u16 code; member in struct:sock_filter
35 #define BPF_CLASS(code) ((code) & 0x07)
45 #define BPF_SIZE(code) ((code) & 0x18)
49 #define BPF_MODE(code) ((code) & 0xe0)
57 #define BPF_OP(code) ((code) & 0xf0)
72 #define BPF_SRC(code) ((code) & 0x08
    [all...]

Completed in 774 milliseconds

1 2 3 4 5 6 7 8 91011>>