Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 9174) sorted by relevance

12345678910>>...367

/third_party/gettext/gnulib-local/lib/libxml/
Dxmlunicode.c1007 xmlUCSIsAegeanNumbers(int code) { in xmlUCSIsAegeanNumbers() argument
1008 return(((code >= 0x10100) && (code <= 0x1013F))); in xmlUCSIsAegeanNumbers()
1020 xmlUCSIsAlphabeticPresentationForms(int code) { in xmlUCSIsAlphabeticPresentationForms() argument
1021 return(((code >= 0xFB00) && (code <= 0xFB4F))); in xmlUCSIsAlphabeticPresentationForms()
1033 xmlUCSIsArabic(int code) { in xmlUCSIsArabic() argument
1034 return(((code >= 0x0600) && (code <= 0x06FF))); in xmlUCSIsArabic()
1046 xmlUCSIsArabicPresentationFormsA(int code) { in xmlUCSIsArabicPresentationFormsA() argument
1047 return(((code >= 0xFB50) && (code <= 0xFDFF))); in xmlUCSIsArabicPresentationFormsA()
1059 xmlUCSIsArabicPresentationFormsB(int code) { in xmlUCSIsArabicPresentationFormsB() argument
1060 return(((code >= 0xFE70) && (code <= 0xFEFF))); in xmlUCSIsArabicPresentationFormsB()
[all …]
Dxmlunicode.in.h57 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
58 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
59 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
60 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
61 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
62 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
63 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
64 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
65 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
66 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
[all …]
/third_party/libxml2/
Dxmlunicode.c976 xmlUCSIsAegeanNumbers(int code) { in xmlUCSIsAegeanNumbers() argument
977 return(((code >= 0x10100) && (code <= 0x1013F))); in xmlUCSIsAegeanNumbers()
989 xmlUCSIsAlphabeticPresentationForms(int code) { in xmlUCSIsAlphabeticPresentationForms() argument
990 return(((code >= 0xFB00) && (code <= 0xFB4F))); in xmlUCSIsAlphabeticPresentationForms()
1002 xmlUCSIsArabic(int code) { in xmlUCSIsArabic() argument
1003 return(((code >= 0x0600) && (code <= 0x06FF))); in xmlUCSIsArabic()
1015 xmlUCSIsArabicPresentationFormsA(int code) { in xmlUCSIsArabicPresentationFormsA() argument
1016 return(((code >= 0xFB50) && (code <= 0xFDFF))); in xmlUCSIsArabicPresentationFormsA()
1028 xmlUCSIsArabicPresentationFormsB(int code) { in xmlUCSIsArabicPresentationFormsB() argument
1029 return(((code >= 0xFE70) && (code <= 0xFEFF))); in xmlUCSIsArabicPresentationFormsB()
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dbrace-style.test.ts21 code: `
33 code: `
39 code: `
46 code: `
53 code: `
60 code: `
67 code: `
74 code: `
83 code: `
90 code: `
[all …]
Dno-invalid-this.test.ts65 code: `
73 code: `
83 code: `
93 code: `
101 code: `
113 code: `
123 code: `
133 code: `
145 code: `
157 code: `
[all …]
Dquotes.test.ts42 code: "declare module '*.html' {}",
46 code: `
57 code: "var foo = 'bar';",
61 code: 'var foo = "bar";',
65 code: 'var foo = 1;',
69 code: 'var foo = 1;',
73 code: 'var foo = "\'";',
82 code: "var foo = '\"';",
91 code: 'var foo = <>Hello world</>;',
100 code: 'var foo = <>Hello world</>;',
[all …]
Dcomma-dangle.test.ts15 { code: 'enum Foo {}' },
16 { code: 'enum Foo {\n}' },
17 { code: 'enum Foo {Bar}' },
18 { code: 'function Foo<T>() {}' },
19 { code: 'type Foo = []' },
20 { code: 'type Foo = [\n]' },
23 { code: 'enum Foo {Bar}', options: ['never'] },
24 { code: 'enum Foo {Bar\n}', options: ['never'] },
25 { code: 'enum Foo {Bar\n}', options: [{ enums: 'never' }] },
26 { code: 'function Foo<T>() {}', options: ['never'] },
[all …]
Dfunc-call-spacing.test.ts74 ].map<TSESLint.ValidTestCase<Options>>(code => ({
75 code,
106 ].map<TSESLint.ValidTestCase<Options>>(code => ({
107 code,
126 ].map<TSESLint.ValidTestCase<Options>>(code => ({
127 code,
135 code: 'f ();',
139 code: 'f (a, b);',
143 code: 'f.b ();',
153 code: 'f.b().c ();', constant
[all …]
Dsemi.test.ts35 { code: 'for (var i;;){}' },
36 { code: 'for (var i;;){}', options: neverOption },
39 code: 'var foo = 0;export { foo };',
43 { code: 'var a = b;\n/foo/.test(c)', options: neverOption },
45 code: 'var a = b;\n`foo`',
48 { code: 'var a = b;\n+ c', options: neverOption },
51 code: '(function bar() {})\n;(function foo(){})',
54 { code: ";/foo/.test('bar')", options: neverOption },
55 { code: ';+5', options: neverOption },
56 { code: ';-foo()', options: neverOption },
[all …]
Dno-unused-vars-experimental.test.ts27 if (!hasExport.test(t.code)) {
30 code: `${t.code}\nexport const __externalModule = 1;`,
45 { code: 'const _x = "unused"' },
46 { code: 'export const x = "used";' },
48 code: `
54 code: `
59 { code: 'function _foo() {}' },
63 code: `
76 code: `
82 code: `
[all …]
Dexplicit-module-boundary-types.test.ts11 code: `
18 code: `
25 code: `
32 code: `
38 code: `
54 code: `
70 code: `
87 code: `
97 code: `
105 code: `
[all …]
Darray-type.test.ts14 code: 'let a: number[] = [];',
18 code: 'let a: (string | number)[] = [];',
22 code: 'let a: readonly number[] = [];',
26 code: 'let a: readonly (string | number)[] = [];',
30 code: 'let a: number[] = [];',
34 code: 'let a: (string | number)[] = [];',
38 code: 'let a: readonly number[] = [];',
42 code: 'let a: readonly (string | number)[] = [];',
46 code: 'let a: number[] = [];',
50 code: 'let a: (string | number)[] = [];',
[all …]
Dprefer-string-starts-ends-with.test.ts247 code: `
260 code: `
273 code: `
286 code: `
299 code: `
312 code: `
321 code: `
330 code: `
343 code: `
358 code: `
[all …]
Dno-explicit-any.test.ts138 code: `
146 code: 'function foo1(...args: any[]) {}',
150 code: 'const bar1 = function (...args: any[]) {};',
154 code: 'const baz1 = (...args: any[]) => {};',
158 code: 'function foo2(...args: readonly any[]) {}',
162 code: 'const bar2 = function (...args: readonly any[]) {};',
166 code: 'const baz2 = (...args: readonly any[]) => {};',
170 code: 'function foo3(...args: Array<any>) {}',
174 code: 'const bar3 = function (...args: Array<any>) {};',
178 code: 'const baz3 = (...args: Array<any>) => {};',
[all …]
Dtypedef.test.ts18 code: 'function foo(...[a]: string[]) {}',
26 code: 'const foo = (...[a]: string[]) => {};',
34 code: 'const [a]: [number] = [1];',
42 code: 'const [a, b]: [number, number] = [1, 2];',
50 code: 'const [a] = 1;',
58 code: `
69 code: `
80 code: `
98 code: '((a: number): void => {})();',
106 code: '((a: string, b: string): void => {})();',
[all …]
Dinit-declarations.test.ts33 code: `
40 code: 'let a = true;',
45 code: 'const a = {};',
50 code: `
64 code: `
78 code: `
89 code: 'var foo;',
94 code: 'var foo, bar, baz;',
99 code: `
109 code: 'let a;',
[all …]
/third_party/libxml2/include/libxml/
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 …]
/third_party/uboot/u-boot-2020.01/lib/
Dcharset.c37 int code = 0; in get_code() local
43 code = ch << 18; in get_code()
52 code += ch << 12; in get_code()
53 if ((code >= 0xD800 && code <= 0xDFFF) || in get_code()
54 code >= 0x110000) in get_code()
62 code += ch << 6; in get_code()
67 ch += code; in get_code()
113 int console_read_unicode(s32 *code) in console_read_unicode() argument
121 *code = get_code(read_console, NULL); in console_read_unicode()
130 int utf8_put(s32 code, char **dst) in utf8_put() argument
[all …]
/third_party/node/deps/npm/node_modules/errno/
Derrno.js4 code: 'ENOENT', property
9 code: 'UNKNOWN', property
14 code: 'OK', property
19 code: 'EOF', property
24 code: 'EADDRINFO', property
29 code: 'EACCES', property
34 code: 'EAGAIN', property
39 code: 'EADDRINUSE', property
44 code: 'EADDRNOTAVAIL', property
49 code: 'EAFNOSUPPORT', property
[all …]
/third_party/libxkbcommon/src/
Dkeysym.c305 UCSConvertCase(uint32_t code, xkb_keysym_t *lower, xkb_keysym_t *upper) in UCSConvertCase() argument
464 *lower = code; in UCSConvertCase()
465 *upper = code; in UCSConvertCase()
468 if (code <= 0x00ff) { in UCSConvertCase()
469 if (code >= 0x0041 && code <= 0x005a) /* A-Z */ in UCSConvertCase()
471 else if (code >= 0x0061 && code <= 0x007a) /* a-z */ in UCSConvertCase()
473 else if ( (code >= 0x00c0 && code <= 0x00d6) || in UCSConvertCase()
474 (code >= 0x00d8 && code <= 0x00de) ) in UCSConvertCase()
476 else if ( (code >= 0x00e0 && code <= 0x00f6) || in UCSConvertCase()
477 (code >= 0x00f8 && code <= 0x00fe) ) in UCSConvertCase()
[all …]
/third_party/selinux/secilc/docs/
Dcil_constraint_statements.md24 <td align="left"><p><code>constrain</code></p></td>
25 <td align="left"><p>The <code>constrain</code> keyword.</p></td>
28 <td align="left"><p><code>classpermissionset_id</code></p></td>
29 … single named or anonymous <code>classpermissionset</code> or a single set of <code>classmap</code
32 <td align="left"><p><code>expression</code></p></td>
33 …td align="left"><p>There must be one constraint <code>expression</code> or one or more <code>expr<…
34 <p><code> (op u1 u2)</code></p>
35 <p><code> (role_op r1 r2)</code></p>
36 <p><code> (op t1 t2)</code></p>
37 <p><code> (op u1 user_id | (user_id ...))</code></p>
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/indent/
Dindent-eslint.test.ts45 code: unIndent`
55 code: unIndent`
64 code: unIndent`
76 code: unIndent`
87 code: unIndent`
100 code: unIndent`
110 code: unIndent`
122 code: unIndent`
132 code: unIndent`
142 code: unIndent`
[all …]
/third_party/node/test/parallel/
Dtest-readline-keys.js141 { name: 'f1', sequence: '\x1b[2P', code: '[P', shift: true, meta: false, ctrl: false }, property
142 { name: 'f1', sequence: '\x1b[3P', code: '[P', shift: false, meta: true, ctrl: false }, property
143 { name: 'f1', sequence: '\x1b[4P', code: '[P', shift: true, meta: true, ctrl: false }, property
144 { name: 'f1', sequence: '\x1b[5P', code: '[P', shift: false, meta: false, ctrl: true }, property
145 { name: 'f1', sequence: '\x1b[6P', code: '[P', shift: true, meta: false, ctrl: true }, property
146 { name: 'f1', sequence: '\x1b[7P', code: '[P', shift: false, meta: true, ctrl: true }, property
147 { name: 'f1', sequence: '\x1b[8P', code: '[P', shift: true, meta: true, ctrl: true }, property
148 { name: 'f2', sequence: '\x1b[3Q', code: '[Q', meta: true }, property
149 { name: 'f2', sequence: '\x1b[8Q', code: '[Q', shift: true, meta: true, ctrl: true }, property
150 { name: 'f3', sequence: '\x1b[3R', code: '[R', meta: true }, property
[all …]
/third_party/typescript/tests/baselines/reference/
DparserSyntaxWalker.generated.symbols3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]
DparserSyntaxWalker.generated.types3 No type information for this code.// export class File {
4 No type information for this code.// constructor(filename: string);
5 No type information for this code.// public ReadAllText(): string;
6 No type information for this code.// }
7 No type information for this code.// export interface IFile {
8 No type information for this code.// [index: number]: string;
9 No type information for this code.// }
10 No type information for this code.//}
11 No type information for this code.
12 No type information for this code.//import fs = module("fs");
[all …]

12345678910>>...367