HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1 - 25 of 7044) 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/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...]
  /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;
http_status_code.h 2 // Use of this source code is governed by a BSD-style license that can be
15 #define HTTP_STATUS(label, code, reason) HTTP_ ## label = code,
22 // field in an HTTP response for given |code|. It's based on the IANA HTTP
23 // Status Code Registry.
29 NET_EXPORT const char* GetHttpReasonPhrase(HttpStatusCode code);
  /external/chromium_org/third_party/icu/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...]
  /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...]
  /external/libpng/tests/
pngstest-error 2 code=77 # skipped
10 code=0 # oops, success: should not happen!
14 exit $code
  /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/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...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_entrypoint.c 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code + 22)) = 4 * offset
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
    [all...]
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 28 * Arch-specific code for manipulating GL API entrypoints (dispatch stubs).
100 GLubyte * const code = (GLubyte *) u_execmem_alloc(DISPATCH_FUNCTION_SIZE); local
103 if ( code != NULL ) {
104 (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE);
105 fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset );
108 return (_glapi_proc) code;
119 GLubyte * const code = (GLubyte *) entrypoint; local
122 *((unsigned int *)(code + 8)) = 4 * offset;
124 *((unsigned int *)(code + 11)) = 4 * offset;
125 *((unsigned int *)(code + 22)) = 4 * offset
195 unsigned int *code = &__glapi_sparc_tls_stub; local
199 unsigned int *code = &__glapi_sparc_pthread_stub; local
283 unsigned int *code = (unsigned int *) u_execmem_alloc(sizeof(template)); local
302 unsigned int *code = (unsigned int *) entrypoint; local
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketException.java 8 private CloseCode code; field in class:WebSocketException
15 public WebSocketException(CloseCode code, String reason) {
16 this(code, reason, null);
19 public WebSocketException(CloseCode code, String reason, Exception cause) {
20 super(code + ": " + reason, cause);
21 this.code = code;
26 return code;
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ScannerTest.java 111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9); local
112 /* 0 */ code.addAload(0);
113 /* 1 */ code.addLdc("start");
114 /* 3 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
115 /* 6 */ code.addAload(0);
116 /* 7 */ code.addLdc("try");
117 /* 9 */ code.addInvokevirtual(clazz, "println", CtClass.voidType, new CtClass[] {stringClass});
118 /* 12 */ addJump(code, Opcode.GOTO, 125);
119 /* 14 */ code.addAstore(2);
120 /* 16 */ code.addAload(2)
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
cname.h 7 * This code is derived from software contributed to Berkeley by
13 * 1. Redistributions of source code must retain the above copyright
40 * This code is derived from software contributed to Berkeley by
46 * 1. Redistributions of source code must retain the above copyright
77 char code; member in struct:cname
  /development/ndk/platforms/android-9/arch-mips/include/asm/
hazards.h 22 #define ASMMACRO(name, code...) .macro name; code; .endm
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/tasm/tests/
segment.asm 6 code segment label
8 code ends
  /external/llvm/lib/Support/
regcname.h 2 * This code is derived from OpenBSD's libc/regex, original license follows:
8 * This code is derived from software contributed to Berkeley by
14 * 1. Redistributions of source code must retain the above copyright
44 char code; member in struct:cname
  /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 explicit IndexedDBDatabaseError(uint16 code) : code_(code) {}
17 IndexedDBDatabaseError(uint16 code, const char* message)
18 : code_(code), message_(base::ASCIIToUTF16(message)) {}
19 IndexedDBDatabaseError(uint16 code, const base::string16& message)
20 : code_(code), message_(message) {}
23 uint16 code() const { return code_; } function in class:content::IndexedDBDatabaseError

Completed in 1778 milliseconds

1 2 3 4 5 6 7 8 91011>>