Home
last modified time | relevance | path

Searched refs:ignore (Results 1 – 25 of 2007) sorted by relevance

12345678910>>...81

/third_party/skia/third_party/externals/brotli/
D.gitattributes4 **/** export-ignore
7 bootstrap !export-ignore
8 BUILD !export-ignore
9 CMakeLists.txt !export-ignore
10 compiler_config_setting.bzl !export-ignore
11 configure !export-ignore
12 configure-cmake !export-ignore
13 configure.ac !export-ignore
14 CONTRIBUTING.md !export-ignore
15 LICENSE !export-ignore
[all …]
/third_party/ejdb/
Duncrustify.cfg64 utf8_bom = remove # ignore/add/remove/force/not_defined
79 sp_arith = force # ignore/add/remove/force/not_defined
84 sp_arith_additive = ignore # ignore/add/remove/force/not_defined
87 sp_assign = force # ignore/add/remove/force/not_defined
92 sp_cpp_lambda_assign = ignore # ignore/add/remove/force/not_defined
96 sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force/not_defined
100 sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force/not_defined
105 sp_cpp_lambda_argument_list = remove # ignore/add/remove/force/not_defined
109 sp_cpp_lambda_paren_brace = ignore # ignore/add/remove/force/not_defined
113 sp_cpp_lambda_fparen = ignore # ignore/add/remove/force/not_defined
[all …]
/third_party/iowow/
Duncrustify.cfg64 utf8_bom = remove # ignore/add/remove/force/not_defined
79 sp_arith = force # ignore/add/remove/force/not_defined
84 sp_arith_additive = ignore # ignore/add/remove/force/not_defined
87 sp_assign = force # ignore/add/remove/force/not_defined
92 sp_cpp_lambda_assign = ignore # ignore/add/remove/force/not_defined
96 sp_cpp_lambda_square_paren = ignore # ignore/add/remove/force/not_defined
100 sp_cpp_lambda_square_brace = ignore # ignore/add/remove/force/not_defined
105 sp_cpp_lambda_argument_list = remove # ignore/add/remove/force/not_defined
109 sp_cpp_lambda_paren_brace = ignore # ignore/add/remove/force/not_defined
113 sp_cpp_lambda_fparen = ignore # ignore/add/remove/force/not_defined
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_equals.cpp32 enum ir_node_type ignore) in possibly_null_equals() argument
37 return a->equals(b, ignore); in possibly_null_equals()
86 enum ir_node_type ignore) const in equals()
95 if (!array->equals(other->array, ignore)) in equals()
98 if (!array_index->equals(other->array_index, ignore)) in equals()
106 enum ir_node_type ignore) const in equals()
115 if (ignore != ir_type_swizzle) { in equals()
124 return val->equals(other->val, ignore); in equals()
128 ir_texture::equals(const ir_instruction *ir, enum ir_node_type ignore) const in equals()
143 if (!possibly_null_equals(coordinate, other->coordinate, ignore)) in equals()
[all …]
/third_party/python/Lib/test/
Dtest_pyclbr.py26 def assertListEq(self, l1, l2, ignore): argument
28 missing = (set(l1) ^ set(l2)) - set(ignore)
30 print("l1=%r\nl2=%r\nignore=%r" % (l1, l2, ignore), file=sys.stderr)
33 def assertHasattr(self, obj, attr, ignore): argument
35 if attr in ignore: return
41 def assertHaskey(self, obj, key, ignore): argument
43 if key in ignore: return
48 def assertEqualsOrIgnored(self, a, b, ignore): argument
50 if a not in ignore and b not in ignore:
53 def checkModule(self, moduleName, module=None, ignore=()): argument
[all …]
/third_party/typescript/tests/baselines/reference/
DtsxStatelessFunctionComponentsWithTypeArguments3.types6 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
9 declare function OverloadComponent<U>(attr: {b: U, a?: string, "ignore-prop": boolean}): JSX.Elemen…
10 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": bo…
11 >attr : { b: U; a?: string; "ignore-prop": boolean; }
14 >"ignore-prop" : boolean
18 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
33 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
35 ><OverloadComponent {...arg1} a="hello" ignore-prop /> : JSX.Element
36 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a?: string; "ignore-prop": boolean; })…
39 >ignore-prop : true
[all …]
Dts-ignore.symbols1 === tests/cases/conformance/directives/ts-ignore.ts ===
2 // @ts-ignore with additional commenting
4 >invalidCommentedFancy : Symbol(invalidCommentedFancy, Decl(ts-ignore.ts, 1, 3))
6 // @ts-ignore with additional commenting
8 >validCommentedFancy : Symbol(validCommentedFancy, Decl(ts-ignore.ts, 4, 3))
10 // @ts-ignore
12 >invalidCommentedPlain : Symbol(invalidCommentedPlain, Decl(ts-ignore.ts, 7, 3))
14 // @ts-ignore
16 >validCommentedPlain : Symbol(validCommentedPlain, Decl(ts-ignore.ts, 10, 3))
19 >invalidPlain : Symbol(invalidPlain, Decl(ts-ignore.ts, 12, 3))
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments4.errors.txt5 …Overload 2 of 3, '(attr: { b: unknown; a: string; "ignore-prop": boolean; }): Element', gave the f…
11 Type 'T & { "ignore-prop": true; }' has no properties in common with type 'IntrinsicAttributes'.
12 …Overload 2 of 3, '(attr: { b: number; a: string; "ignore-prop": boolean; }): Element', gave the fo…
13 …Type 'T & { "ignore-prop": true; }' is not assignable to type 'IntrinsicAttributes & { b: number; …
14 … missing in type '{ b: number; } & { "ignore-prop": true; }' but required in type '{ b: number; a:…
16 …Type 'T & { "ignore-prop": true; }' is not assignable to type 'IntrinsicAttributes & { b: unknown;…
17 …Property 'a' is missing in type '{ b: number; } & { "ignore-prop": true; }' but required in type '…
24 …declare function OverloadComponent<U>(attr: {b: U, a: string, "ignore-prop": boolean}): JSX.Elemen…
35 !!! error TS2769: Overload 2 of 3, '(attr: { b: unknown; a: string; "ignore-prop": boolean; }): E…
39 …is declared here on type 'IntrinsicAttributes & { b: unknown; a: string; "ignore-prop": boolean; }'
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments3.js10 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
11 let a1 = <OverloadComponent {...arg2} ignore-pro="hello world" />;
13 let a3 = <OverloadComponent {...arg1} ignore-prop />;
15 let a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1} />;
16 let a6 = <OverloadComponent {...arg2} ignore-prop {...arg1} />;
32 var a0 = <OverloadComponent {...arg1} a="hello" ignore-prop/>;
33 var a1 = <OverloadComponent {...arg2} ignore-pro="hello world"/>;
35 var a3 = <OverloadComponent {...arg1} ignore-prop/>;
37 var a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1}/>;
38 var a6 = <OverloadComponent {...arg2} ignore-prop {...arg1}/>;
DtsxStatelessFunctionComponentOverload2.types39 >obj2 : { yy: number; "ignore-prop": string; }
40 >{ yy: 500, "ignore-prop": "hello"} : { yy: number; "ignore-prop": string; }
46 "ignore-prop": "hello"
47 >"ignore-prop" : string
109 const c8 = <OneThing ignore-prop={100} />
111 ><OneThing ignore-prop={100} /> : JSX.Element
113 >ignore-prop : number
116 const c9 = <OneThing {...{ "ignore-prop":200 }} />;
118 ><OneThing {...{ "ignore-prop":200 }} /> : JSX.Element
120 >{ "ignore-prop":200 } : { "ignore-prop": number; }
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments5.types35 declare function ComponentSpecific1<U>(l: { prop: U, "ignore-prop": number }): JSX.Element;
36 >ComponentSpecific1 : <U>(l: { prop: U; "ignore-prop": number;}) => JSX.Element
37 >l : { prop: U; "ignore-prop": number; }
39 >"ignore-prop" : number
47 let a1 = <ComponentSpecific {...arg} ignore-prop="hi" />; // U is number
49 ><ComponentSpecific {...arg} ignore-prop="hi" /> : JSX.Element
52 >ignore-prop : string
54 let a2 = <ComponentSpecific1 {...arg} ignore-prop={10} />; // U is number
56 ><ComponentSpecific1 {...arg} ignore-prop={10} /> : JSX.Element
57 >ComponentSpecific1 : <U>(l: { prop: U; "ignore-prop": number; }) => JSX.Element
[all …]
DtsxStatelessFunctionComponentsWithTypeArguments4.types6 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
9 declare function OverloadComponent<U>(attr: {b: U, a: string, "ignore-prop": boolean}): JSX.Element;
10 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boo…
11 >attr : { b: U; a: string; "ignore-prop": boolean; }
14 >"ignore-prop" : boolean
18 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
36 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
42 let a2 = <OverloadComponent {...arg1} ignore-prop /> // missing a
44 ><OverloadComponent {...arg1} ignore-prop /> : JSX.Element
45 >OverloadComponent : { <U>(): JSX.Element; <U>(attr: { b: U; a: string; "ignore-prop": boolean; }):…
[all …]
DcheckJsFiles_skipDiagnostics.types7 /// @ts-ignore
12 /// @ts-ignore
17 /// @ts-ignore
30 // @ts-ignore
40 /* @ts-ignore */
48 /* @ts-ignore
58 // @ts-ignore: no call signature
DtsxStatelessFunctionComponentsWithTypeArguments3.symbols11 declare function OverloadComponent<U>(attr: {b: U, a?: string, "ignore-prop": boolean}): JSX.Elemen…
18 >"ignore-prop" : Symbol("ignore-prop", Decl(file.tsx, 3, 62))
47 let a0 = <OverloadComponent {...arg1} a="hello" ignore-prop />;
52 >ignore-prop : Symbol(ignore-prop, Decl(file.tsx, 8, 51))
54 let a1 = <OverloadComponent {...arg2} ignore-pro="hello world" />;
58 >ignore-pro : Symbol(ignore-pro, Decl(file.tsx, 9, 41))
65 let a3 = <OverloadComponent {...arg1} ignore-prop />;
69 >ignore-prop : Symbol(ignore-prop, Decl(file.tsx, 11, 41))
75 let a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1} />;
79 >ignore-prop : Symbol(ignore-prop, Decl(file.tsx, 13, 41))
[all …]
DcheckJsFiles_skipDiagnostics.symbols6 /// @ts-ignore
10 /// @ts-ignore
14 /// @ts-ignore
23 // @ts-ignore
32 /* @ts-ignore */
39 /* @ts-ignore
48 // @ts-ignore: no call signature
/third_party/selinux/libselinux/src/
Dselinuxswig.i45 %ignore freecon;
46 %ignore freeconary;
49 %ignore set_matchpathcon_printf;
50 %ignore set_matchpathcon_invalidcon;
51 %ignore set_matchpathcon_canoncon;
53 %ignore avc_add_callback;
56 %ignore avc_netlink_acquire_fd;
57 %ignore avc_netlink_release_fd;
58 %ignore avc_netlink_check_nb;
/third_party/elfutils/libebl/
Deblopenbackend.c160 static const char *default_reloc_type_name (int ignore, char *buf, size_t len);
161 static bool default_reloc_type_check (int ignore);
162 static bool default_reloc_valid_use (Elf *elf, int ignore);
163 static Elf_Type default_reloc_simple_type (Ebl *ebl, int ignore, int *addsub);
164 static bool default_gotpc_reloc_check (Elf *elf, int ignore);
165 static const char *default_segment_type_name (int ignore, char *buf,
167 static const char *default_section_type_name (int ignore, char *buf,
169 static const char *default_section_name (int ignore, int ignore2, char *buf,
171 static const char *default_machine_flag_name (Elf64_Word orig, Elf64_Word *ignore);
174 static const char *default_symbol_type_name (int ignore, char *buf,
[all …]
/third_party/mesa3d/docs/relnotes/
D17.1.10.rst44 - cherry-ignore: add "st/mesa: skip draw calls with
46 - cherry-ignore: add "radv: use amdgpu_bo_va_op_raw."
47 - cherry-ignore: add "radv: use simpler indirect packet 3 if possible."
48 - cherry-ignore: add "radeonsi: don't always apply the PrimID
50 - cherry-ignore: add "intel/eu/validate: Look up types on demand in
52 - cherry-ignore: add "radv: gfx9 fixes"
53 - cherry-ignore: add "radv/gfx9: set mip0-depth correctly for 2d
55 - cherry-ignore: add "radv/gfx9: fix image resource handling."
56 - cherry-ignore: add "docs/egl: remove reference to EGL_DRIVERS_PATH"
57 - cherry-ignore: add "radv: Disable multilayer & multilevel DCC."
[all …]
D17.0.5.rst39 - cherry-ignore: Add the pci_id into the shader cache UUID
40 - cherry-ignore: fix crash if ctx torn down with no rendering
41 - cherry-ignore: Fix typos.
42 - cherry-ignore: Revert "etnaviv: Cannot render to rb-swapped formats"
43 - cherry-ignore: Revert "i965/fs: Don't emit SEL instructions for
45 - cherry-ignore: fix typo in a2b10g10r10 fast clear calculation
46 - cherry-ignore: remove unused anv_dispatch_table dtable
47 - cherry-ignore: remove unused radv_dispatch_table dtable
48 - cherry-ignore: make radv_resolve_entrypoint static
49 - cherry-ignore: vulkan: add support for libmesa_vulkan_util
[all …]
/third_party/openssl/
D.gitattributes7 fuzz/corpora/** export-ignore
8 Configurations/*.norelease.conf export-ignore
9 .* export-ignore
10 util/mktar.sh export-ignore
11 krb5 export-ignore
12 pyca-cryptography export-ignore
13 dev export-ignore
14 gost-engine export-ignore
/third_party/openssl/test/ssl-tests/
D05-sni.cnf9 test-4 = 4-SNI-bad-sni-ignore-mismatch
11 test-6 = 6-SNI-bad-clienthello-sni-ignore-mismatch
141 [4-SNI-bad-sni-ignore-mismatch]
142 ssl_conf = 4-SNI-bad-sni-ignore-mismatch-ssl
144 [4-SNI-bad-sni-ignore-mismatch-ssl]
145 server = 4-SNI-bad-sni-ignore-mismatch-server
146 client = 4-SNI-bad-sni-ignore-mismatch-client
147 server2 = 4-SNI-bad-sni-ignore-mismatch-server
149 [4-SNI-bad-sni-ignore-mismatch-server]
154 [4-SNI-bad-sni-ignore-mismatch-client]
[all …]
/third_party/libunwind/tests/
Dcheck-namespace.sh.in41 ignore () { function
61 ignore _DYNAMIC
62 ignore _GLOBAL_OFFSET_TABLE_
63 ignore __bss_start
64 ignore _edata
65 ignore _end
66 ignore _Uelf32_get_proc_name
67 ignore _Uelf32_valid_object
68 ignore _Uelf64_get_proc_name
69 ignore _Uelf64_valid_object
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap_leap.c80 ret->ignore = true; in eap_leap_process_request()
87 ret->ignore = true; in eap_leap_process_request()
99 ret->ignore = true; in eap_leap_process_request()
122 ret->ignore = true; in eap_leap_process_request()
156 ret->ignore = true; in eap_leap_process_success()
173 ret->ignore = true; in eap_leap_process_success()
207 ret->ignore = true; in eap_leap_process_response()
214 ret->ignore = true; in eap_leap_process_response()
226 ret->ignore = true; in eap_leap_process_response()
236 ret->ignore = true; in eap_leap_process_response()
[all …]
Deap_pax.c130 ret->ignore = true; in eap_pax_process_std_1()
137 ret->ignore = true; in eap_pax_process_std_1()
146 ret->ignore = true; in eap_pax_process_std_1()
155 ret->ignore = true; in eap_pax_process_std_1()
174 ret->ignore = true; in eap_pax_process_std_1()
183 ret->ignore = true; in eap_pax_process_std_1()
246 ret->ignore = true; in eap_pax_process_std_3()
253 ret->ignore = true; in eap_pax_process_std_3()
262 ret->ignore = true; in eap_pax_process_std_3()
271 ret->ignore = true; in eap_pax_process_std_3()
[all …]
/third_party/node/deps/npm/node_modules/ignore-walk/
DREADME.md1 # ignore-walk
4 Status](https://travis-ci.org/npm/ignore-walk.svg?branch=master)](https://travis-ci.org/npm/ignore-…
8 Walk a directory creating a list of entries, parsing any `.ignore`
14 const walk = require('ignore-walk')
22 ignoreFiles: [ '.gitignore' ], // list of filenames. defaults to ['.ignore']
38 * `ignoreFiles` Filenames to treat as ignore files. The default is
39 `['.ignore']`. (This is where you'd put `.gitignore` or
40 `.npmignore` or whatever.) If multiple ignore files are in a
45 they are not excluded by any of the ignore rules. If not set, then
53 For example, given the rules `*` (ignore everything) and `!/a/b/c`

12345678910>>...81