Home
last modified time | relevance | path

Searched defs:boolean (Results 1 – 25 of 262) sorted by relevance

1234567891011

/third_party/typescript/tests/cases/compiler/
DspliceTuples.ts1 declare const sb: [string, boolean]; constant
3 let k1: [number, string, boolean]; variable
6 let k2: [number, string, boolean, number]; variable
14 declare const sbb_: [string, boolean, ...boolean[]]; constant
19 let k5: [number, string, boolean, ...boolean[]]; variable
22 let k6: [number, string, boolean, boolean, ...boolean[]]; variable
/third_party/selinux/libsepol/src/
Dboolean_record.c53 const sepol_bool_t * boolean, in sepol_bool_key_extract()
74 int sepol_bool_compare(const sepol_bool_t * boolean, in sepol_bool_compare()
81 int sepol_bool_compare2(const sepol_bool_t * boolean, in sepol_bool_compare2()
89 const char *sepol_bool_get_name(const sepol_bool_t * boolean) in sepol_bool_get_name()
97 sepol_bool_t * boolean, const char *name) in sepol_bool_set_name()
112 int sepol_bool_get_value(const sepol_bool_t * boolean) in sepol_bool_get_value()
119 void sepol_bool_set_value(sepol_bool_t * boolean, int value) in sepol_bool_set_value()
130 sepol_bool_t *boolean = (sepol_bool_t *) malloc(sizeof(sepol_bool_t)); in sepol_bool_create() local
148 const sepol_bool_t * boolean, sepol_bool_t ** bool_ptr) in sepol_bool_clone()
171 void sepol_bool_free(sepol_bool_t * boolean) in sepol_bool_free()
/third_party/typescript/tests/baselines/reference/
DtypeGuardsInRightOperandOfOrOrOperator.js16 function foo4(x: number | string | boolean) {
21 function foo5(x: number | string | boolean) {
28 function foo6(x: number | string | boolean) {
35 function foo7(x: number | string | boolean) {
DtypeGuardsInRightOperandOfAndAndOperator.js15 function foo4(x: number | string | boolean) {
20 function foo5(x: number | string | boolean) {
27 function foo6(x: number | string | boolean) {
34 function foo7(x: number | string | boolean) {
DtypeGuardsInIfStatement.js60 function foo7(x: number | string | boolean) {
71 function foo8(x: number | string | boolean) {
96 function foo10(x: number | string | boolean) {
109 function foo11(x: number | string | boolean) {
129 function foo12(x: number | string | boolean) {
DtypeGuardsInConditionalExpression.js40 function foo7(x: number | string | boolean) {
47 function foo8(x: number | string | boolean) {
63 function foo10(x: number | string | boolean) {
72 function foo11(x: number | string | boolean) {
82 function foo12(x: number | string | boolean) {
DtypeGuardsInFunctionAndModuleBlock.js4 function foo(x: number | string | boolean) {
14 function foo2(x: number | string | boolean) {
24 function foo3(x: number | string | boolean) {
34 function foo4(x: number | string | boolean) {
45 function foo5(x: number | string | boolean) {
DclassWithPredefinedTypesAsNames.js6 class boolean { } class
21 var boolean = /** @class */ (function () { function
22 function boolean() { function
DobjectTypesWithPredefinedTypesAsName.js8 class boolean { } class
28 var boolean = /** @class */ (function () { function
29 function boolean() { function
DtypeGuardsInDoStatement.js3 function a(x: string | number | boolean) {
11 function b(x: string | number | boolean) {
DparserErrorRecovery_Block3.js3 private a(): boolean { field in C
5 private b(): boolean { field in C
DrestParameterWithBindingPattern3.js6 function c(...{0: a, length, 3: d}: [boolean, string, number]) { }
8 function d(...[a, , , d]: [boolean, string, number]) { } function
10 function e(...{0: a = 1, 1: b = true, ...rest: rest}: [boolean, string, number]) { }
DgetSetEnumerable.js7 set prop(value: boolean) { }
12 set prop(value: boolean) { }
20 set prop(value: boolean) { }
25 set prop(value: boolean) { }
DoptionalArgsWithDefaultValues.js2 function foo(x: number, y?:boolean=false, z?=0) {}
5 public foo(x: number, y?:boolean=false, z?=0) {}
6 static foo2(x: number, y?:boolean=false, z?=0) {}
DpromiseIdentityWithAny2.js11 var x: Promise<string, boolean>; variable
23 var y: Promise2<string, boolean>; variable
DdoesNotNarrowUnionOfConstructorsWithInstanceof.js16 function getTypedArray(flag: boolean) {
19 function getTypedArrayConstructor(flag: boolean) {
DmetadataOfUnion.js12 y: true | boolean; field in B
15 z: "foo" | boolean; field in B
/third_party/node/deps/npm/node_modules/mkdirp/node_modules/minimist/test/
Dbool.js6 boolean: ['t', 'verbose'], property
24 boolean: ['x','y','z'] property
43 herp: { alias: 'h', boolean: true } property
46 boolean: 'herp', property
50 boolean: 'herp', property
69 boolean: 'herp' property
89 boolean: 'h' property
111 boolean: 'h' property
129 boolean: 'boool' property
136 boolean: 'boool' property
[all …]
Ddefault_bool.js6 boolean: 'sometrue', property
15 boolean: 'somefalse', property
24 boolean: 'maybe', property
29 boolean: 'maybe', property
Dall_bool.js6 boolean: true property
20 boolean: true property
/third_party/node/deps/npm/node_modules/minimist/test/
Dbool.js6 boolean: ['t', 'verbose'], property
24 boolean: ['x','y','z'] property
43 herp: { alias: 'h', boolean: true } property
46 boolean: 'herp', property
50 boolean: 'herp', property
69 boolean: 'herp' property
89 boolean: 'h' property
111 boolean: 'h' property
129 boolean: 'boool' property
136 boolean: 'boool' property
[all …]
Ddefault_bool.js6 boolean: 'sometrue', property
15 boolean: 'somefalse', property
24 boolean: 'maybe', property
29 boolean: 'maybe', property
Dall_bool.js6 boolean: true property
20 boolean: true property
/third_party/typescript/tests/cases/conformance/types/rest/
DgenericRestParameters3.ts9 declare const t1: [string] | [number, boolean]; constant
10 declare const t2: readonly [string] | [number, boolean]; constant
11 declare const t3: [string] | readonly [number, boolean]; constant
12 declare const t4: readonly [string] | readonly [number, boolean]; constant
DrestTuplesFromContextualTypes.ts4 declare const t1: [number, boolean, string]; constant
20 declare const t2: [number, boolean, ...string[]]; constant

1234567891011