Searched refs:code (Results 1 - 25 of 3769) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/webkit/
H A Ddfg-double-vote-fuzz.js7 // 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
[all...]
/external/chromium_org/third_party/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/qemu/distrib/zlib-1.2.8/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/zlib/src/contrib/infback9/
H A Dinffix9.h10 static const code lenfix[512] = {
99 static const code distfix[32] = {
/external/zlib/src/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dproperty-simple.js6 // * Redistributions of source code must retain the above copyright
33 code = "a = {x:8, y:9}; a.x";
35 assertEquals(8, eval(code));
37 code = "b = {z:a}; b.z.y";
39 assertEquals(9, eval(code));
H A Dliterals-assignment.js6 // * 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
[all...]
/external/chromium_org/third_party/libjingle/overrides/talk/media/webrtc/
H A Dwebrtcexport.h2 // 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/
H A Dinhibit-downstream-commands.c6 invalid C code!
/external/llvm/test/MC/ARM/
H A Dfixup-cpu-mode.s5 .code 16
8 .code 32
/external/chromium_org/third_party/WebKit/public/web/
H A DWebScriptSource.h8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:blink::WebScriptSource
44 WebScriptSource(const WebString& code) argument
45 : code(code), startLine(1) { }
46 WebScriptSource(const WebString& code, const WebURL& url) argument
47 : code(code), url(url), startLine(1) { }
48 WebScriptSource(const WebString& code, const WebURL& url, int startLine) argument
49 : code(cod
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
39 public static void write16bit(int value, byte[] code, int index) { argument
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
47 public static int read32bit(byte[] code, in argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dchar-escape.js6 // * Redistributions of source code must retain the above copyright
36 function code(str) { function
41 assertEquals(0x08, code("\b"));
42 assertEquals(0x09, code("\t"));
43 assertEquals(0x0A, code("\n"));
44 assertEquals(0x0B, code("\v"));
45 assertEquals(0x0C, code("\f"));
46 assertEquals(0x0D, code("\r"));
47 assertEquals(0x22, code("\""));
48 assertEquals(0x27, code("\'"));
[all...]
H A Dnewline-in-string.js6 // * Redistributions of source code must retain the above copyright
39 var code = "'asdf\\" + String.fromCharCode(0xD) + String.fromCharCode(0xA) + "asdf'"; variable
40 assertEquals('asdfasdf', eval(code));
43 code = "'asdf\\" + String.fromCharCode(0xA) + String.fromCharCode(0xD) + "asdf'";
44 assertEquals('asdfasdf', eval(code));
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMDOMException.java36 * @param code
39 public DTMDOMException(short code, String message) argument
41 super(code, message);
48 * @param code
50 public DTMDOMException(short code) argument
52 super(code, "");
/external/chromium_org/net/http/
H A Dhttp_status_code.cc2 // Use of this source code is governed by a BSD-style license that can be
11 const char* GetHttpReasonPhrase(HttpStatusCode code) { argument
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/
H A Dutypes.c191 u_errorName(UErrorCode code) { argument
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
[all...]
/external/icu/icu4c/source/common/
H A Dutypes.c191 u_errorName(UErrorCode code) { argument
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
[all...]
/external/chromium_org/mojo/public/js/bindings/
H A Dsupport.js2 // Use of this source code is governed by a BSD-style license that can be
7 // Note: This file is for documentation purposes only. The code here is not
24 function asyncWait(handle, signals, callback) { [native code] }
30 function cancelWait(waitId) { [native code] }
/external/doclava/res/assets/customizations/
H A Dcustomizations.cs1 <?cs # placeholder for custom clearsilver code. ?
/external/libpng/tests/
H A Dpngstest-error2 code=77 # skipped
10 code=0 # oops, success: should not happen!
14 exit $code
/external/smack/src/org/jivesoftware/smack/packet/
H A DStreamError.java85 private String code; field in class:StreamError
87 public StreamError(String code) { argument
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/
H A Dxmlunicode.h26 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/
H A Dxmlunicode.h26 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...]

Completed in 828 milliseconds

1234567891011>>