Home
last modified time | relevance | path

Searched refs:isZ (Results 1 – 8 of 8) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DtypeGuardIntersectionTypes.js16 declare function isZ(obj: any): obj is Z;
19 if (isX(obj) || isY(obj) || isZ(obj)) {
22 if (isX(obj) && isY(obj) && isZ(obj)) {
116 if (isX(obj) || isY(obj) || isZ(obj)) {
119 if (isX(obj) && isY(obj) && isZ(obj)) {
DtypeGuardIntersectionTypes.types25 declare function isZ(obj: any): obj is Z;
26 >isZ : (obj: any) => obj is Z
33 if (isX(obj) || isY(obj) || isZ(obj)) {
34 >isX(obj) || isY(obj) || isZ(obj) : boolean
42 >isZ(obj) : boolean
43 >isZ : (obj: any) => obj is Z
49 if (isX(obj) && isY(obj) && isZ(obj)) {
50 >isX(obj) && isY(obj) && isZ(obj) : boolean
58 >isZ(obj) : boolean
59 >isZ : (obj: any) => obj is Z
DtypeGuardIntersectionTypes.symbols35 declare function isZ(obj: any): obj is Z;
36 >isZ : Symbol(isZ, Decl(typeGuardIntersectionTypes.ts, 13, 41))
46 if (isX(obj) || isY(obj) || isZ(obj)) {
51 >isZ : Symbol(isZ, Decl(typeGuardIntersectionTypes.ts, 13, 41))
57 if (isX(obj) && isY(obj) && isZ(obj)) {
62 >isZ : Symbol(isZ, Decl(typeGuardIntersectionTypes.ts, 13, 41))
/third_party/typescript/tests/cases/conformance/expressions/typeGuards/
DtypeGuardIntersectionTypes.ts17 declare function isZ(obj: any): obj is Z;
20 if (isX(obj) || isY(obj) || isZ(obj)) {
23 if (isX(obj) && isY(obj) && isZ(obj)) {
/third_party/mesa3d/src/amd/addrlib/src/gfx11/
Dgfx11addrlib.h457 const BOOL_32 isZ = IsZOrderSwizzle(swizzleMode); in IsRbAligned() local
460 return (IsTex2d(resourceType) && (isRtopt || isZ)) || in IsRbAligned()
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10addrlib.h489 const BOOL_32 isZ = IsZOrderSwizzle(swizzleMode); in IsRbAligned() local
492 return (IsTex2d(resourceType) && (isRtopt || isZ)) || in IsRbAligned()
/third_party/mesa3d/src/amd/addrlib/src/gfx9/
Dgfx9addrlib.h291 (m_swizzleModeTable[swizzleMode].isZ == FALSE) && in HwlIsThin()
300 (m_swizzleModeTable[swizzleMode].isZ || m_swizzleModeTable[swizzleMode].isStd)); in HwlIsThick()
/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrlib2.h62 UINT_32 isZ : 1; // Z order swizzle mode member
372 return m_swizzleModeTable[swizzleMode].isZ; in IsZOrderSwizzle()