Home
last modified time | relevance | path

Searched refs:isLeader (Results 1 – 18 of 18) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DtypeGuardFunctionOfFormThis.types5 isLeader(): this is LeadGuard {
6 >isLeader : () => this is LeadGuard
44 if (a.isLeader()) {
45 >a.isLeader() : boolean
46 >a.isLeader : () => this is LeadGuard
48 >isLeader : () => this is LeadGuard
74 if (b.isLeader()) {
75 >b.isLeader() : boolean
76 >b.isLeader : () => this is LeadGuard
78 >isLeader : () => this is LeadGuard
[all …]
DtypeGuardFunctionOfFormThis.js3 isLeader(): this is LeadGuard {
20 if (a.isLeader()) {
30 if (b.isLeader()) {
53 if (holder2.a.isLeader()) {
112 a.isLeader = b.isLeader;
115 isLeader(): this is MimicLeader { return this instanceof MimicLeader; };
129 a.isLeader = mimic.isLeader;
139 isLeader(): this is LeadGuard;
163 RoyalGuard.prototype.isLeader = function () { method in RoyalGuard
190 if (a.isLeader()) {
[all …]
DtypeGuardFunctionOfFormThisErrors.symbols5 isLeader(): this is LeadGuard {
6 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
54 b.isFollower = b.isLeader;
58 >b.isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
60 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
62 b.isLeader = b.isFollower;
63 >b.isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
65 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
70 a.isFollower = a.isLeader;
74 >a.isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThisErrors.ts, 0, 18))
[all …]
DtypeGuardFunctionOfFormThis.symbols5 isLeader(): this is LeadGuard {
6 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThis.ts, 0, 18))
44 if (a.isLeader()) {
45 >a.isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThis.ts, 0, 18))
47 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThis.ts, 0, 18))
73 if (b.isLeader()) {
74 >b.isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThis.ts, 0, 18))
76 >isLeader : Symbol(RoyalGuard.isLeader, Decl(typeGuardFunctionOfFormThis.ts, 0, 18))
94 // if (((a.isLeader)())) {
101 // if (((a["isLeader"])())) {
[all …]
DtypeGuardFunctionOfFormThisErrors.types5 isLeader(): this is LeadGuard {
6 >isLeader : () => this is LeadGuard
51 b.isFollower = b.isLeader;
52 >b.isFollower = b.isLeader : () => this is LeadGuard
56 >b.isLeader : () => this is LeadGuard
58 >isLeader : () => this is LeadGuard
60 b.isLeader = b.isFollower;
61 >b.isLeader = b.isFollower : () => this is FollowerGuard
62 >b.isLeader : () => this is LeadGuard
64 >isLeader : () => this is LeadGuard
[all …]
DtypeGuardFunctionOfFormThisErrors.js3 isLeader(): this is LeadGuard {
24 b.isFollower = b.isLeader;
25 b.isLeader = b.isFollower;
27 a.isFollower = a.isLeader;
28 a.isLeader = a.isFollower;
81 RoyalGuard.prototype.isLeader = function () { method in RoyalGuard
110 b.isFollower = b.isLeader;
111 b.isLeader = b.isFollower;
112 a.isFollower = a.isLeader;
113 a.isLeader = a.isFollower;
[all …]
DtypeGuardOfFormThisMember.symbols162 isLeader: this is (GenericLeadGuard<T>);
163 >isLeader : Symbol(GenericGuard.isLeader, Decl(typeGuardOfFormThisMember.ts, 55, 12))
178 if (guard.isLeader) {
179 >guard.isLeader : Symbol(GenericGuard.isLeader, Decl(typeGuardOfFormThisMember.ts, 55, 12))
181 >isLeader : Symbol(GenericGuard.isLeader, Decl(typeGuardOfFormThisMember.ts, 55, 12))
DtypeGuardOfFormThisMember.types161 isLeader: this is (GenericLeadGuard<T>);
162 >isLeader : boolean
171 if (guard.isLeader) {
172 >guard.isLeader : boolean
174 >isLeader : boolean
DtypeGuardFunctionOfFormThisErrors.errors.txt20 isLeader(): this is LeadGuard {
41 b.isFollower = b.isLeader;
47 b.isLeader = b.isFollower;
54 a.isFollower = a.isLeader;
59 a.isLeader = a.isFollower;
DtypeGuardOfFormThisMember.js58 isLeader: this is (GenericLeadGuard<T>);
63 if (guard.isLeader) {
165 if (guard.isLeader) {
DtypeGuardOfFormThisMember.errors.txt93 isLeader: this is (GenericLeadGuard<T>);
102 if (guard.isLeader) {
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/
DtypeGuardFunctionOfFormThis.ts3 isLeader(): this is LeadGuard { method in RoyalGuard
20 if (a.isLeader()) {
30 if (b.isLeader()) {
53 if (holder2.a.isLeader()) {
112 a.isLeader = b.isLeader;
115 isLeader(): this is MimicLeader { return this instanceof MimicLeader; }; method in MimicGuard
129 a.isLeader = mimic.isLeader;
139 isLeader(): this is LeadGuard; method
DtypeGuardFunctionOfFormThisErrors.ts3 isLeader(): this is LeadGuard { method in RoyalGuard
24 b.isFollower = b.isLeader;
25 b.isLeader = b.isFollower;
27 a.isFollower = a.isLeader;
28 a.isLeader = a.isFollower;
DtypeGuardOfFormThisMember.ts59 isLeader: this is (GenericLeadGuard<T>); property
64 if (guard.isLeader) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DEquivalenceClasses.h81 if (isLeader()) return this; in getLeader()
82 if (Leader->isLeader()) return Leader; in getLeader()
88 assert(isLeader() && "Cannot get the end of a list for a non-leader!"); in getEndOfList()
94 Next = (const ECValue*)((intptr_t)NewNext | (intptr_t)isLeader()); in setNext()
101 assert(RHS.isLeader() && RHS.getNext() == nullptr && "Not a singleton!"); in ECValue()
106 bool isLeader() const { return (intptr_t)Next & 1; } in isLeader() function
130 if (I->isLeader()) {
155 return member_iterator(I->isLeader() ? &*I : nullptr); in member_begin()
190 if (I->isLeader()) ++NC; in getNumClasses()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSplitModule.cpp178 if (I->isLeader()) in findPartitions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopDistribute.cpp398 if (!I->isLeader()) in mergeToAvoidDuplicatedLoads()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp2078 if (!I->isLeader()) in lower()