Home
last modified time | relevance | path

Searched refs:bool (Results 1 - 25 of 1133) sorted by relevance

12345678910>>...46

/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dtsprotocol.go33 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
40 LinkSupport bool `json:"linkSupport,omitempty"`
72 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
79 LinkSupport bool `json:"linkSupport,omitempty"`
121 WorkspaceFolders bool `json:"workspaceFolders,omitempty"`
139 Supported bool `json:"supported,omitempty"`
208 Configuration bool `json:"configuration,omitempty"`
243 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
252 ResolveProvider bool `json:"resolveProvider,omitempty"`
307 DynamicRegistration bool `jso
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
H A Dtsprotocol.go33 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
40 LinkSupport bool `json:"linkSupport,omitempty"`
72 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
79 LinkSupport bool `json:"linkSupport,omitempty"`
121 WorkspaceFolders bool `json:"workspaceFolders,omitempty"`
139 Supported bool `json:"supported,omitempty"`
208 Configuration bool `json:"configuration,omitempty"`
243 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
252 ResolveProvider bool `json:"resolveProvider,omitempty"`
307 DynamicRegistration bool `jso
[all...]
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
H A Dtsprotocol.go33 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
40 LinkSupport bool `json:"linkSupport,omitempty"`
72 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
79 LinkSupport bool `json:"linkSupport,omitempty"`
121 WorkspaceFolders bool `json:"workspaceFolders,omitempty"`
139 Supported bool `json:"supported,omitempty"`
208 Configuration bool `json:"configuration,omitempty"`
243 DynamicRegistration bool `json:"dynamicRegistration,omitempty"`
252 ResolveProvider bool `json:"resolveProvider,omitempty"`
307 DynamicRegistration bool `jso
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtypeGuardOfFormTypeOfBoolean.js5 var bool: boolean; variable
21 bool = strOrBool; // boolean
27 bool = numOrBool; // boolean
33 bool = strOrNumOrBool; // boolean
39 bool = boolOrC; // boolean
60 bool = strOrBool; // boolean
66 bool = numOrBool; // boolean
72 bool = strOrNumOrBool; // boolean
78 bool = boolOrC; // boolean
97 var bool; variable
[all...]
H A DtypeGuardOfFormNotExpr.js3 var bool: boolean; variable
22 bool = strOrNumOrBool; // boolean
32 bool = strOrNumOrBool; // boolean
39 bool = strOrNumOrBool; // boolean
43 bool = strOrNumOrBool; // boolean
58 var bool; variable
75 bool = strOrNumOrBool; // boolean
85 bool = strOrNumOrBool; // boolean
92 bool = strOrNumOrBool; // boolean
96 bool
[all...]
H A DpropTypeValidatorInference.js30 export const bool: Requireable<boolean>;
42 bool: boolean;
58 bar: PropTypes.bool,
62 const arrayOfTypes = [PropTypes.string, PropTypes.bool, PropTypes.shape({
71 bool: PropTypes.bool.isRequired,
80 bool: PropTypes.bool.isRequired,
98 bar: PropTypes.bool,
101 var arrayOfTypes = [PropTypes.string, PropTypes.bool, PropType
[all...]
/third_party/jinja2/
H A Dtests.py14 def test_odd(value: int) -> bool:
19 def test_even(value: int) -> bool:
24 def test_divisibleby(value: int, num: int) -> bool:
29 def test_defined(value: t.Any) -> bool:
46 def test_undefined(value: t.Any) -> bool:
52 def test_filter(env: "Environment", value: str) -> bool:
70 def test_test(env: "Environment", value: str) -> bool:
91 def test_none(value: t.Any) -> bool:
96 def test_boolean(value: t.Any) -> bool:
104 def test_false(value: t.Any) -> bool
[all...]
/third_party/rust/crates/regex/src/
H A Dre_builder.rs9 pub case_insensitive: bool,
10 pub multi_line: bool,
11 pub dot_matches_new_line: bool,
12 pub swap_greed: bool,
13 pub ignore_whitespace: bool,
14 pub unicode: bool,
15 pub octal: bool,
82 yes: bool, in case_insensitive()
94 pub fn multi_line(&mut self, yes: bool) -> &mut RegexBuilder { in multi_line()
108 yes: bool, in dot_matches_new_line()
[all...]
H A Dprog.rs40 pub only_utf8: bool,
43 pub is_bytes: bool,
47 pub is_dfa: bool,
50 pub is_reverse: bool,
52 pub is_anchored_start: bool,
54 pub is_anchored_end: bool,
56 pub has_unicode_word_boundary: bool,
113 pub fn leads_to_match(&self, pc: usize) -> bool { in leads_to_match()
128 pub fn needs_dotstar(&self) -> bool { in needs_dotstar()
134 pub fn uses_bytes(&self) -> bool { in uses_bytes()
[all...]
/third_party/rust/crates/nom/src/
H A Dtraits.rs159 fn is_alpha(self) -> bool; in is_alpha()
163 fn is_alphanum(self) -> bool; in is_alphanum()
165 fn is_dec_digit(self) -> bool; in is_dec_digit()
167 fn is_hex_digit(self) -> bool; in is_hex_digit()
169 fn is_oct_digit(self) -> bool; in is_oct_digit()
180 fn is_alpha(self) -> bool { in is_alpha()
184 fn is_alphanum(self) -> bool { in is_alphanum()
188 fn is_dec_digit(self) -> bool { in is_dec_digit()
192 fn is_hex_digit(self) -> bool { in is_hex_digit()
198 fn is_oct_digit(self) -> bool { in is_oct_digit()
[all...]
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dannotations.rs31 opaque: bool,
34 hide: bool,
40 disallow_copy: bool,
42 disallow_debug: bool,
44 disallow_default: bool,
46 must_use_type: bool,
49 private_fields: Option<bool>,
66 constify_enum_variant: bool,
96 pub fn hide(&self) -> bool { in hide()
101 pub fn opaque(&self) -> bool { in opaque()
[all...]
H A Dderive.rs24 fn can_derive_debug(&self, ctx: &BindgenContext) -> bool; in can_derive_debug()
32 fn can_derive_copy(&self, ctx: &BindgenContext) -> bool; in can_derive_copy()
40 fn can_derive_default(&self, ctx: &BindgenContext) -> bool; in can_derive_default()
48 fn can_derive_hash(&self, ctx: &BindgenContext) -> bool; in can_derive_hash()
56 fn can_derive_partialeq(&self, ctx: &BindgenContext) -> bool; in can_derive_partialeq()
64 fn can_derive_partialord(&self, ctx: &BindgenContext) -> bool; in can_derive_partialord()
71 fn can_derive_eq(&self, ctx: &BindgenContext) -> bool; in can_derive_eq()
78 fn can_derive_ord(&self, ctx: &BindgenContext) -> bool; in can_derive_ord()
/third_party/python/Lib/test/
H A Dtest_bool.py1 # Test properties of bool promised by PEP 285
12 class C(bool):
17 self.fail("bool should not be subclassable")
19 self.assertRaises(TypeError, int.__new__, bool, 0)
104 self.assertIsNot(b**i, bool(int(b)**i))
108 self.assertIs(a&b, bool(int(a)&int(b)))
109 self.assertIs(a|b, bool(int(a)|int(b)))
110 self.assertIs(a^b, bool(int(a)^int(b)))
112 self.assertIsNot(a&int(b), bool(int(a)&int(b)))
114 self.assertIsNot(a|int(b), bool(in
[all...]
/third_party/rust/crates/bindgen/bindgen-cli/
H A Doptions.rs113 no_layout_tests: bool,
116 no_derive_copy: bool,
119 no_derive_debug: bool,
122 no_derive_default: bool,
125 impl_debug: bool,
128 impl_partialeq: bool,
131 with_derive_default: bool,
134 with_derive_hash: bool,
137 with_derive_partialeq: bool,
140 with_derive_partialord: bool,
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dspecifiers.py31 CallableOperator = Callable[[Version, str], bool]
67 def __eq__(self, other: object) -> bool:
77 def prereleases(self) -> Optional[bool]:
85 def prereleases(self, value: bool) -> None:
92 def contains(self, item: str, prereleases: Optional[bool] = None) -> bool:
99 self, iterable: Iterable[UnparsedVersionVar], prereleases: Optional[bool] = None
230 def __init__(self, spec: str = "", prereleases: Optional[bool] = None) -> None:
257 def prereleases(self) -> bool:
281 def prereleases(self, value: bool)
[all...]
H A D_structures.py13 def __lt__(self, other: object) -> bool:
16 def __le__(self, other: object) -> bool:
19 def __eq__(self, other: object) -> bool:
22 def __gt__(self, other: object) -> bool:
25 def __ge__(self, other: object) -> bool:
42 def __lt__(self, other: object) -> bool:
45 def __le__(self, other: object) -> bool:
48 def __eq__(self, other: object) -> bool:
51 def __gt__(self, other: object) -> bool:
54 def __ge__(self, other: object) -> bool
[all...]
/third_party/rust/crates/clap/tests/derive/
H A Dnaming.rs10 FOO_OPTION: bool, in test_standalone_long_generates_kebab_case()
24 foo_option: bool, in test_custom_long_overwrites_default_name()
38 foo_option: bool, in test_standalone_long_uses_previous_defined_custom_name()
52 foo_option: bool, in test_standalone_long_ignores_afterwards_defined_custom_name()
66 foo_option: bool, in test_standalone_long_uses_previous_defined_custom_id()
80 foo_option: bool, in test_standalone_long_ignores_afterwards_defined_custom_id()
95 FOO_OPTION: bool, in test_standalone_short_generates_kebab_case()
109 foo_option: bool, in test_custom_short_overwrites_default_name()
123 foo_option: bool, in test_standalone_short_uses_previous_defined_custom_name()
137 foo_option: bool, in test_standalone_short_ignores_afterwards_defined_custom_name()
[all...]
/third_party/rust/crates/syn/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq()
23 fn eq(&self, other: &Self) -> bool { in eq()
33 fn eq(&self, other: &Self) -> bool { in eq()
44 fn eq(&self, other: &Self) -> bool { in eq()
55 fn eq(&self, other: &Self) -> bool { in eq()
66 fn eq(&self, other: &Self) -> bool { in eq()
80 fn eq(&self, other: &Self) -> bool { in eq()
90 fn eq(&self, other: &Self) -> bool { in eq()
100 fn eq(&self, other: &Self) -> bool { in eq()
110 fn eq(&self, other: &Self) -> bool { in eq()
[all...]
/third_party/rust/crates/bindgen/bindgen/
H A Dlib.rs114 fn file_is_cpp(name_file: &str) -> bool { in file_is_cpp()
121 fn args_are_cpp(clang_args: &[String]) -> bool { in args_are_cpp()
156 pub fn functions(self) -> bool { in functions()
161 pub fn types(self) -> bool { in types()
166 pub fn vars(self) -> bool { in vars()
171 pub fn methods(self) -> bool { in methods()
176 pub fn constructors(self) -> bool { in constructors()
181 pub fn destructors(self) -> bool { in destructors()
803 pub fn generate_comments(mut self, doit: bool) -> Self { in generate_comments()
835 pub fn allowlist_recursively(mut self, doit: bool)
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A Dbuild.py33 verbose: bool = False,
34 keep_asserts: bool = True,
35 disable_optimization: bool = False,
169 grammar_file: str, verbose_tokenizer: bool = False, verbose_parser: bool = False
216 compile_extension: bool = False,
217 verbose_c_extension: bool = False,
218 keep_asserts_in_extension: bool = True,
219 skip_actions: bool = False,
244 skip_actions: bool
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
H A Dhandler.go31 Deliver(ctx context.Context, r *Request, delivered bool) bool
39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool
73 type Direction bool
95 func (EmptyHandler) Deliver(ctx context.Context, r *Request, delivered bool) bool {
99 func (EmptyHandler) Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool {
126 func (defaultHandler) Deliver(ctx context.Context, r *Request, delivered bool) boo
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/jsonrpc2/
H A Dhandler.go31 Deliver(ctx context.Context, r *Request, delivered bool) bool
39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool
73 type Direction bool
95 func (EmptyHandler) Deliver(ctx context.Context, r *Request, delivered bool) bool {
99 func (EmptyHandler) Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool {
126 func (defaultHandler) Deliver(ctx context.Context, r *Request, delivered bool) boo
[all...]
/third_party/spirv-tools/utils/vscode/src/lsp/jsonrpc2/
H A Dhandler.go31 Deliver(ctx context.Context, r *Request, delivered bool) bool
39 Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool
73 type Direction bool
95 func (EmptyHandler) Deliver(ctx context.Context, r *Request, delivered bool) bool {
99 func (EmptyHandler) Cancel(ctx context.Context, conn *Conn, id ID, cancelled bool) bool {
126 func (defaultHandler) Deliver(ctx context.Context, r *Request, delivered bool) boo
[all...]
/third_party/rust/crates/clap/tests/builder/
H A Dflags.rs15 assert!(*m.get_one::<bool>("flag").expect("defaulted by clap")); in flag_using_short()
16 assert!(*m.get_one::<bool>("color").expect("defaulted by clap")); in flag_using_short()
51 assert!(*m.get_one::<bool>("o").expect("defaulted by clap")); in lots_o_flags_sep()
70 assert!(*m.get_one::<bool>("o").expect("defaulted by clap")); in lots_o_flags_combined()
82 assert!(*m.get_one::<bool>("flag").expect("defaulted by clap")); in flag_using_long()
83 assert!(*m.get_one::<bool>("color").expect("defaulted by clap")); in flag_using_long()
110 assert!(*m.get_one::<bool>("flag").expect("defaulted by clap")); in flag_using_mixed()
111 assert!(*m.get_one::<bool>("color").expect("defaulted by clap")); in flag_using_mixed()
120 assert!(*m.get_one::<bool>("flag").expect("defaulted by clap")); in flag_using_mixed()
121 assert!(*m.get_one::<bool>("colo in flag_using_mixed()
[all...]
/third_party/rust/crates/memchr/src/tests/memchr/
H A Diter.rs53 needle: u8, data: Vec<u8>, take_side: Vec<bool> in qc_memchr_double_ended_iter()
54 ) -> bool { in qc_memchr_double_ended_iter()
67 needle1: u8, needle2: u8, data: Vec<u8>, take_side: Vec<bool> in qc_memchr2_double_ended_iter()
68 ) -> bool { in qc_memchr2_double_ended_iter()
82 data: Vec<u8>, take_side: Vec<bool> in qc_memchr3_double_ended_iter()
83 ) -> bool { in qc_memchr3_double_ended_iter()
98 fn qc_memchr1_iter(data: Vec<u8>) -> bool { in qc_memchr1_iter()
104 fn qc_memchr1_rev_iter(data: Vec<u8>) -> bool { in qc_memchr1_rev_iter()
110 fn qc_memchr2_iter(data: Vec<u8>) -> bool { in qc_memchr2_iter()
117 fn qc_memchr2_rev_iter(data: Vec<u8>) -> bool { in qc_memchr2_rev_iter()
[all...]

Completed in 15 milliseconds

12345678910>>...46