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

1234567891011>>

/external/qemu/distrib/zlib-1.2.3/
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/webkit/Source/WebKit/chromium/public/
H A DWebScriptSource.h8 * * Redistributions of source code must retain the above copyright
40 WebString code; member in struct:WebKit::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/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/webkit/LayoutTests/http/tests/resources/
H A Dredirect.php11 $code = $_GET['code']; variable
12 if (!isset($code))
13 $code = 302; variable
14 header("HTTP/1.1 $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/icu4c/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/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.sh32 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
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java682 * 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) argument
698 code[offset++] = InstructionConstants.OP_WIDE;
702 code[offset++] = opcode;
705 writeInfo(code, offset);
722 protected abstract void readInfo(byte[] code, int offset); argument
728 protected abstract void writeInfo(byte[] code, int offset); argument
793 protected static int readByte(byte[] code, in argument
798 readShort(byte[] code, int offset) argument
804 readInt(byte[] code, int offset) argument
812 readValue(byte[] code, int offset, int valueSize) argument
824 readSignedByte(byte[] code, int offset) argument
829 readSignedShort(byte[] code, int offset) argument
835 readSignedValue(byte[] code, int offset, int valueSize) argument
847 writeByte(byte[] code, int offset, int value) argument
857 writeShort(byte[] code, int offset, int value) argument
868 writeInt(byte[] code, int offset, int value) argument
876 writeValue(byte[] code, int offset, int value, int valueSize) argument
888 writeSignedByte(byte[] code, int offset, int value) argument
898 writeSignedShort(byte[] code, int offset, int value) argument
909 writeSignedValue(byte[] code, int offset, int value, int valueSize) argument
[all...]
/external/clang/utils/TestUtils/
H A Dpch-test.pl20 my $code = system("clang -fsyntax-only -x $language $file > /dev/null 2>&1");
21 if ($code == 0) {
23 $code = system("clang -cc1 -emit-pch -x $language -o $file.pch $file > /dev/null 2>&1");
24 if ($code == 0) {
25 $code = system("clang -cc1 -include-pch $file.pch -x $language -ast-dump /dev/null > /dev/null 2>&1");
26 if ($code == 0) {
28 } elsif (($code & 0xFF) == SIGINT) {
36 } elsif (($code & 0xFF) == SIGINT) {
43 } elsif (($code & 0xFF) == SIGINT) {
/external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/
H A DcreateDocument-namespace-err.js46 { args: [undefined, null], code: 5 },
47 { args: [null, null], code: 5 },
48 { args: [null, ""], code: 5 },
49 { args: ["", null], code: 5 },
50 { args: ["", ""], code: 5 },
51 { args: [null, "<div>"], code: 5 },
52 { args: [null, "0div"], code: 5 },
53 { args: [null, "di v"], code: 5 },
54 { args: [null, "di<v"], code: 5 },
55 { args: [null, "-div"], code
[all...]
H A DcreateDocumentType-err.js30 { args: [undefined, undefined], code: 5 },
31 { args: [null, undefined], code: 5 },
32 { args: [undefined, null], code: 5 },
33 { args: [undefined, undefined, null], code: 5 },
34 { args: [null, null], code: 5 },
35 { args: [null, null, null], code: 5 },
36 { args: [null, ""], code: 5 },
37 { args: ["", null], code: 5 },
38 { args: ["", ""], code: 5 },
39 { args: ["a:", null, null], code
[all...]
/external/strace/
H A Dioctl.c11 * 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 !
105 long code; local
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java111 Bytecode code = new Bytecode(info.getConstPool(), 2, 9);
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
180 addJump(Bytecode code, int opcode, int pos) argument
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dsmc1.c2 /* Test Valgrind's ability to spot writes to code which has been
18 WRONG output (if you fail to spot code-writes to code[0 .. 4]) is
50 // code on the heap therefore
51 static UChar* code; variable
53 /* Make `code' be movabsq $dest, %rax ; pushq %rax ; ret */
60 code[0] = 0x48;
61 code[1] = 0xB8;
62 code[2] = (dest & 0xFF);
63 code[
[all...]
/external/dropbear/libtommath/
H A Dbn_error.c19 int code; member in struct:__anon5121
27 /* return a char * string for a given code */
28 char *mp_error_to_string(int code) argument
34 if (msgs[x].code == code) {
39 /* generic reply for invalid code */
40 return "Invalid error code";
/external/llvm/lib/Support/
H A Dregcname.h2 * 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
41 char code; member in struct:cname
/external/qemu/android/
H A Dkeycode.c15 android_keycode_rotate( AndroidKeyCode code, int rotation ) argument
25 if (code == wheel[index]) {
27 code = wheel[index];
31 return code;

Completed in 671 milliseconds

1234567891011>>