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

1234567891011>>

/external/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/opencv3/3rdparty/zlib/
H A Dinffixed.h10 static const code lenfix[512] = {
87 static const code distfix[32] = {
/external/pdfium/third_party/zlib_v128/
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/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/curl/tests/libtest/
H A Dnotexists.pl3 my $code = 0;
12 $code = 1;
15 exit $code;
/external/c-ares/
H A Dares_strerror.c21 const char *ares_strerror(int code) argument
52 if(code >= 0 && code < (int)(sizeof(errtext) / sizeof(*errtext)))
53 return errtext[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/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
H A DChild1.java19 private Integer code; field in class:Child1
21 public Child1(Integer code) { argument
22 this.code = code;
26 return code;
/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/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
H A DCode.java19 private final Integer code; field in class:Code
22 this.code = name;
26 return code;
32 Code code = (Code) obj;
33 return code.equals(code.code);
41 return code.hashCode();
46 return "<Code code=" + code
[all...]
H A DCode2.java22 private final Integer code; field in class:Code2
25 this.code = name;
29 this.code = new Integer(name);
33 return code;
39 Code2 code = (Code2) obj;
40 return code.equals(code.code);
48 return code.hashCode();
53 return "<Code2 code
[all...]
H A DCode3.java23 private final Integer code; field in class:Code3
25 public Code3(String name, Integer code) { argument
26 this.code = code;
31 return name + code;
37 Code3 code = (Code3) obj;
38 return code.equals(code.code);
46 return code
[all...]
H A DCode4.java23 private final Integer code; field in class:Code4
26 this.code = name;
30 this.code = new Integer(name.intValue());
34 return code;
40 Code4 code = (Code4) obj;
41 return code.equals(code.code);
49 return code.hashCode();
54 return "<Code4 code
[all...]
/external/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/icu/icu4c/source/common/
H A Dutypes.c193 u_errorName(UErrorCode code) { argument
194 if(U_ZERO_ERROR <= code && code < U_STANDARD_ERROR_LIMIT) {
195 return _uErrorName[code];
196 } else if(U_ERROR_WARNING_START <= code && code < U_ERROR_WARNING_LIMIT) {
197 return _uErrorInfoName[code - U_ERROR_WARNING_START];
198 } else if(U_PARSE_ERROR_START <= code && code < U_PARSE_ERROR_LIMIT){
199 return _uTransErrorName[code
[all...]
/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/libmicrohttpd/src/microhttpd/
H A Dreason_phrase.h30 * Returns the string reason phrase for a response code.
32 * If we don't have a string for a status code, we give the first
33 * message in that status code class.
35 const char *MHD_get_reason_phrase_for (unsigned int code);
/external/doclava/res/assets/customizations/
H A Dcustomizations.cs1 <?cs # placeholder for custom clearsilver code. ?
/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...]
/external/elfutils/tests/
H A Drun-show-abbrev.sh24 abbrev[0]: code = 1, tag = 17, children = 1
25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
32 abbrev[19]: code = 2, tag = 46, children = 1
33 abbrev[19]: attr[0]: code
[all...]

Completed in 1014 milliseconds

1234567891011>>