Home
last modified time | relevance | path

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

12345678910

/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
DstrictOptionalProperties1.ts108 const t1: [number, string?, boolean?] = [1]; constant
109 const t2: [number, string?, boolean?] = [1, undefined]; constant
110 const t3: [number, string?, boolean?] = [1, "string", undefined]; constant
111 const t4: [number, string?, boolean?] = [1, undefined, undefined]; constant
/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/
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) {
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) {
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
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]) { }
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
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) {}
DdeclarationEmitDestructuringWithOptionalBindingParameters.js2 function foo([x,y,z]?: [string, number, boolean]) { argument
4 function foo1( { x, y, z }?: { x: string; y: number; z: boolean }) {
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) {
DliteralTypeWidening.js15 function f2(cond: boolean) {
39 function f4(cond: boolean) {
66 function f6(cond: boolean) {
DmetadataOfUnion.js12 y: true | boolean; field in B
15 z: "foo" | boolean; field in B
DnumericStringLiteralTypes.js8 function f1(a: boolean[], x: `${number}`) {
12 function f2(a: boolean[], x: number | `${number}`) {
DbooleanLiteralTypes1.js12 function f2(a: true | false, b: boolean) {
36 function f5(b: boolean) {
/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
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/4.2/leading_middle_rest_elements_in_tuple_types/
Dleading_middle_rest_elements_in_tuple_types3.ts34 let tup1: [...myType[], boolean]; variable
39 let tup2: [string, ...myType[], boolean]; variable
44 let tup3: [string, boolean, ...myType[]]; variable

12345678910