HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1 - 25 of 8676) 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/qemu/distrib/zlib-1.2.3/
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/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/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: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/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/icu4c/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/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/elfutils/tests/
run-show-abbrev.sh 32 abbrev[0]: code = 1, tag = 17, children = 1
33 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
34 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
35 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
36 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
37 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
38 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
39 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
40 abbrev[19]: code = 2, tag = 46, children = 1
41 abbrev[19]: attr[0]: code = 1, form = 19, offset = 1
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_database_error.h 2 // Use of this source code is governed by a BSD-style license that can be
16 IndexedDBDatabaseError(uint16 code)
17 : code_(code) {}
18 IndexedDBDatabaseError(uint16 code, const char* message)
19 : code_(code), message_(ASCIIToUTF16(message)) {}
20 IndexedDBDatabaseError(uint16 code, const string16& message)
21 : code_(code), message_(message) {}
24 uint16 code() const { return code_; } function in class:content::IndexedDBDatabaseError
  /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...]
  /external/chromium_org/v8/test/webkit/
dfg-double-vote-fuzz.js 7 // 1. Redistributions of source code must retain the above copyright
31 code = "function foo(o, a, b) {\n";
32 code += " var x = 0;\n";
33 code += " var c = a + b;\n";
35 code += " var " + String.fromCharCode("d".charCodeAt(0) + j) + " = " + ((i & (1 << ((j / 2) | 0))) ? "0.5" : "0") + ";\n";
36 code += " for (var __i = 0; __i < 10; ++__i) {\n";
37 code += " if (a + b + 1 > __i) {\n";
38 code += " c = d;\n";
39 code += " x += c;\n";
40 code += " }\n"
    [all...]
  /external/openfst/src/include/fst/
icu.h 48 int code = c & ((1 << (6 - count)) - 1); local
59 code = (code << 6) | (cb & 0x3f);
62 if (code < 0) {
67 labels->push_back(code);
77 int32_t code = labels[i]; local
78 if (code < 0) {
79 LOG(ERROR) << "LabelsToUTF8String: Invalid character found: " << code;
81 } else if (code < 0x80) {
82 ostr << static_cast<char>(code);
    [all...]

Completed in 1501 milliseconds

1 2 3 4 5 6 7 8 91011>>