Home
last modified time | relevance | path

Searched refs:allow (Results 1 - 25 of 1182) sorted by relevance

12345678910>>...48

/third_party/rust/crates/libc/src/
H A Dlib.rs8 #![allow(
37 #[allow(unused_imports)]
39 #[allow(unused_imports)]
41 #[allow(unused_imports)]
49 #[allow(unused_imports)]
51 #[allow(unused_imports)]
53 #[allow(unused_imports)]
55 #[allow(unused_imports)]
57 #[allow(unused_imports)]
60 #[allow(unused_import
[all...]
/third_party/rust/crates/nix/src/sys/
H A Dstatfs.rs99 #[allow(missing_docs)]
103 #[allow(missing_docs)]
107 #[allow(missing_docs)]
110 #[allow(missing_docs)]
114 #[allow(missing_docs)]
117 #[allow(missing_docs)]
121 #[allow(missing_docs)]
125 #[allow(missing_docs)]
129 #[allow(missing_docs)]
133 #[allow(missing_doc
[all...]
H A Dmod.rs19 #[allow(missing_docs)]
28 #[allow(missing_docs)]
32 #[allow(missing_docs)]
87 #[allow(missing_docs)]
138 #[allow(missing_docs)]
145 #[allow(missing_docs)]
151 #[allow(missing_docs)]
176 #[allow(missing_docs)]
181 #[allow(missing_docs)]
185 #[allow(missing_doc
[all...]
H A Duio.rs158 #[allow(renamed_and_removed_lints)]
159 #[allow(clippy::unknown_clippy_lints)]
161 #[allow(clippy::derive_partial_eq_without_eq)]
165 #[allow(deprecated)]
182 #[allow(deprecated)]
197 #[allow(deprecated)]
214 #[allow(deprecated)]
216 #[allow(deprecated)]
/third_party/rust/crates/serde/test_suite/tests/
H A Dtest_gen.rs6 #![allow(
32 #[allow(dead_code)]
34 #[allow(dead_code)]
36 #[allow(dead_code)]
38 #[allow(dead_code)]
40 #[allow(dead_code)]
42 #[allow(dead_code)]
338 #[allow(dead_code)]
431 #[allow(dead_code)]
436 #[allow(dead_cod
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/riscv32/
H A Dalign.rs2 #[allow(missing_debug_implementations)]
11 #[allow(missing_debug_implementations)]
18 #[allow(missing_debug_implementations)]
25 #[allow(missing_debug_implementations)]
31 #[allow(missing_debug_implementations)]
37 #[allow(missing_debug_implementations)]
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b64/riscv64/
H A Dalign.rs2 #[allow(missing_debug_implementations)]
11 #[allow(missing_debug_implementations)]
18 #[allow(missing_debug_implementations)]
25 #[allow(missing_debug_implementations)]
31 #[allow(missing_debug_implementations)]
37 #[allow(missing_debug_implementations)]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/riscv64/
H A Dalign.rs2 #[allow(missing_debug_implementations)]
11 #[allow(missing_debug_implementations)]
18 #[allow(missing_debug_implementations)]
25 #[allow(missing_debug_implementations)]
31 #[allow(missing_debug_implementations)]
37 #[allow(missing_debug_implementations)]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dblocklist-item.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
17 #[allow(unused_imports)]
H A Dissue-677-nested-ns-specifier.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
16 #[allow(unused_imports)]
H A Dinline_namespace_nested.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
16 #[allow(unused_imports)]
H A Dduplicated_constants_in_ns.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
18 #[allow(unused_imports)]
H A Dnamespace.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
17 #[allow(unused_imports)]
27 #[allow(unused_imports)]
82 #[allow(unused_imports)]
115 #[allow(unused_imports)]
123 #[allow(unused_imports)]
H A Dconstify-module-enums-namespace.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
16 #[allow(unused_imports)]
26 #[allow(unused_imports)]
H A Dblocklist-function.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
17 #[allow(unused_imports)]
H A Dallowlist-namespaces-basic.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
16 #[allow(unused_imports)]
H A Dtemplate_alias_namespace.rs0 #![allow(
8 #[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
10 #[allow(unused_imports)]
13 #[allow(unused_imports)]
16 #[allow(unused_imports)]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSortedSetRelation.java68 * @param allow filter, using ANY, CONTAINS, etc.
72 public static <T extends Object & Comparable<? super T>> boolean hasRelation(SortedSet<T> a, int allow, SortedSet<T> b) { in hasRelation() argument
73 if (allow < NONE || allow > ANY) { in hasRelation()
74 throw new IllegalArgumentException("Relation " + allow + " out of range"); in hasRelation()
80 boolean anb = (allow & A_NOT_B) != 0; in hasRelation()
81 boolean ab = (allow & A_AND_B) != 0; in hasRelation()
82 boolean bna = (allow & B_NOT_A) != 0; in hasRelation()
85 switch(allow) { in hasRelation()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DSortedSetRelation.java70 * @param allow filter, using ANY, CONTAINS, etc.
74 public static <T extends Object & Comparable<? super T>> boolean hasRelation(SortedSet<T> a, int allow, SortedSet<T> b) { in hasRelation() argument
75 if (allow < NONE || allow > ANY) { in hasRelation()
76 throw new IllegalArgumentException("Relation " + allow + " out of range"); in hasRelation()
82 boolean anb = (allow & A_NOT_B) != 0; in hasRelation()
83 boolean ab = (allow & A_AND_B) != 0; in hasRelation()
84 boolean bna = (allow & B_NOT_A) != 0; in hasRelation()
87 switch(allow) { in hasRelation()
/third_party/rust/crates/memoffset/src/
H A Draw_field.rs65 #[allow(clippy::unneeded_field_pattern)]
96 #[allow(clippy::unneeded_wildcard_pattern)]
133 #[allow(clippy::unneeded_wildcard_pattern)]
135 #[allow(unused_unsafe)]
150 #[allow(unused_unsafe)]
171 #[allow(unused_unsafe)] // for when the macro is used in an unsafe block
193 #[allow(unused_unsafe)] // for when the macro is used in an unsafe block
221 #[allow(unused_unsafe)] // for when the macro is used in an unsafe block
/third_party/rust/crates/io-lifetimes/src/
H A Dlib.rs51 #[allow(deprecated)]
54 #[allow(deprecated)]
93 #[allow(deprecated)]
102 #[allow(deprecated)]
115 #[allow(deprecated)]
124 #[allow(deprecated)]
137 #[allow(deprecated)]
146 #[allow(deprecated)]
/third_party/skia/buildtools/checkdeps/
H A Drules.py18 # are also used as values for self.allow to indicate which type of
24 def __init__(self, allow, directory, dependent_directory, source):
25 self.allow = allow
31 return '"%s%s" from %s.' % (self.allow, self._dir, self._source)
34 """Returns a tuple (allow, dependent dir, dependee dir) for this rule,
38 return self.allow, self._dependent_dir or '.', self._dir or '.'
122 """Returns a list of tuples (allow, dependent dir, dependee dir) for the
127 (allow, dependent, dependee) = rule.AsDependencyTuple()
128 tup = (allow, dependen
[all...]
/third_party/rust/crates/rustix/src/
H A Dio_uring.rs20 #![allow(unsafe_code)]
540 #[allow(missing_docs)]
544 #[allow(missing_docs)]
546 #[allow(missing_docs)]
548 #[allow(missing_docs)]
676 #[allow(missing_docs)]
695 #[allow(missing_docs)]
703 #[allow(missing_docs)]
711 #[allow(missing_docs)]
738 #[allow(missing_doc
[all...]
/third_party/selinux/libsepol/src/
H A Dassertion.c52 ERR(handle, "neverallow on line %lu of %s (or line %lu of %s) violated by allow %s %s:%s {%s };", in report_failure()
59 ERR(handle, "neverallow on line %lu violated by allow %s %s:%s {%s };", in report_failure()
65 ERR(handle, "neverallow violated by allow %s %s:%s {%s };", in report_failure()
93 static int check_extended_permissions(av_extended_perms_t *neverallow, avtab_extended_perms_t *allow) in check_extended_permissions() argument
97 && (allow->specified == AVTAB_XPERMS_IOCTLFUNCTION)) { in check_extended_permissions()
98 if (neverallow->driver == allow->driver) in check_extended_permissions()
99 rc = extended_permissions_and(neverallow->perms, allow->perms); in check_extended_permissions()
101 && (allow->specified == AVTAB_XPERMS_IOCTLDRIVER)) { in check_extended_permissions()
102 rc = xperm_test(neverallow->driver, allow->perms); in check_extended_permissions()
104 && (allow in check_extended_permissions()
115 extended_permissions_violated(avtab_extended_perms_t *result, av_extended_perms_t *neverallow, avtab_extended_perms_t *allow) extended_permissions_violated() argument
[all...]
/third_party/rust/crates/nix/src/
H A Dlib.rs45 #![allow(non_camel_case_types)]
49 #![allow(unused_macros)]
50 #![cfg_attr(not(feature = "default"), allow(unused_imports))]
75 #[allow(missing_docs)]
83 #[allow(missing_docs)]
106 #[allow(missing_docs)]
140 #[allow(missing_docs)]
151 #[allow(missing_docs)]
154 #[allow(missing_docs)]

Completed in 11 milliseconds

12345678910>>...48