Lines Matching refs:Undefined
166 Undefined not in a usable state
190 T* q = p; // transfer: q is owner, p is undefined
195 Initial, Undefined, Owner, Borrowed, Readonly
207 return ["Initial", "Undefined", "Owner", "Borrowed", "Readonly"][state];
254 case X(Undefined, Initial):
255 case X(Undefined, Undefined):
256 case X(Undefined, Owner ):
257 case X(Undefined, Borrowed ):
258 case X(Undefined, Readonly ):
1302 pvsr.state = PtrState.Undefined;
1536 //if (pvs.state == PtrState.Undefined)
1537 //v.error(ce.loc, "is Undefined, cannot pass to function");
1838 state = PtrState.Undefined;
1845 state = PtrState.Undefined;
1994 if (pvsr.state == Undefined)
1996 v.error(e.loc, "is reading from `%s` which is Undefined", r.toChars());
2012 pvsr.state = Undefined;
2041 if (pvs.state == PtrState.Undefined)
2042 v.error(loc, "has undefined state and cannot be read");
2250 //if (pvs.state == PtrState.Undefined)
2251 //v.error(ce.loc, "is Undefined, cannot pass to function");
2538 case Undefined:
2539 r.error(ob.exp.loc, "is returned but is Undefined");
2543 pvsr.state = Undefined; // returning a pointer "consumes" it
2599 // If there's a Borrow child, set that to Undefined
2612 /* All children become Undefined
2620 case PtrState.Undefined:
2629 * Recursively make Undefined all who list vi as a dependency
2638 if (gen[di].state != PtrState.Undefined)
2640 gen[di].state = PtrState.Undefined; // set this first to avoid infinite recursion
2650 * Recursively make Undefined vi undefined and all who list vi as a dependency
2655 pvs.state = PtrState.Undefined; // set this first to avoid infinite recursion