Searched refs:NumVal (Results 1 – 6 of 6) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowDestructuringLoop.symbols | 4 interface NumVal { val: number; } 5 >NumVal : Symbol(NumVal, Decl(controlFlowDestructuringLoop.ts, 0, 0)) 6 >val : Symbol(NumVal.val, Decl(controlFlowDestructuringLoop.ts, 2, 18)) 12 type Val = NumVal | StrVal; 14 >NumVal : Symbol(NumVal, Decl(controlFlowDestructuringLoop.ts, 0, 0)) 17 function isNumVal(x: Val): x is NumVal { 22 >NumVal : Symbol(NumVal, Decl(controlFlowDestructuringLoop.ts, 0, 0))
|
D | controlFlowDestructuringLoop.types | 4 interface NumVal { val: number; } 10 type Val = NumVal | StrVal; 13 function isNumVal(x: Val): x is NumVal { 14 >isNumVal : (x: Val) => x is NumVal 36 >isNumVal : (x: Val) => x is NumVal 41 >thing : NumVal
|
D | controlFlowDestructuringLoop.js | 4 interface NumVal { val: number; } 6 type Val = NumVal | StrVal; 8 function isNumVal(x: Val): x is NumVal {
|
/third_party/typescript/tests/cases/compiler/ |
D | controlFlowDestructuringLoop.ts | 5 interface NumVal { val: number; } interface 7 type Val = NumVal | StrVal; 9 function isNumVal(x: Val): x is NumVal {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | RegisterBankInfo.cpp | 685 unsigned NumVal) const { in getNewVRegsEnd() 686 return const_cast<OperandsMapper *>(this)->getNewVRegsEnd(StartIdx, NumVal); in getNewVRegsEnd() 690 unsigned NumVal) { in getNewVRegsEnd() argument 691 assert((NewVRegs.size() == StartIdx + NumVal || in getNewVRegsEnd() 692 NewVRegs.size() > StartIdx + NumVal) && in getNewVRegsEnd() 694 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end() in getNewVRegsEnd() 695 : &NewVRegs[StartIdx + NumVal]; in getNewVRegsEnd()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | RegisterBankInfo.h | 314 getNewVRegsEnd(unsigned StartIdx, unsigned NumVal) const; 316 unsigned NumVal);
|