Searched refs:Water (Results 1 - 4 of 4) sorted by relevance
/third_party/googletest/googletest/samples/ |
H A D | sample10_unittest.cc | 46 class Water { class 48 // Normal Water declarations go here. 67 int Water::allocated_ = 0; 69 // This event listener monitors how many Water objects are created and 70 // destroyed by each test, and reports a failure if a test leaks some Water 71 // objects. It does this by comparing the number of live Water objects at 77 initially_allocated_ = Water::allocated(); 82 int difference = Water::allocated() - initially_allocated_; 87 EXPECT_LE(difference, 0) << "Leaked " << difference << " unit(s) of Water!"; 94 Water* wate in TEST() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | MipsConstantIslandPass.cpp | 197 /// Water - Potential places where an island could be formed. 402 bool isWaterInRange(unsigned UserOffset, MachineBasicBlock *Water, 877 // the Water goes after OrigBB, not NewBB. in splitBlockBeforeInstr() 931 /// Water (a basic block) will be in range for the specific MI. 933 /// Compute how much the function will grow by inserting a CPE after Water. 935 MachineBasicBlock* Water, CPUser &U, in isWaterInRange() 937 unsigned CPEOffset = BBInfo[Water->getNumber()].postOffset(); in isWaterInRange() 940 MachineFunction::const_iterator NextBlock = ++Water->getIterator(); in isWaterInRange() 942 NextBlockOffset = BBInfo[Water->getNumber()].postOffset(); in isWaterInRange() 934 isWaterInRange(unsigned UserOffset, MachineBasicBlock* Water, CPUser &U, unsigned &Growth) isWaterInRange() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMConstantIslandPass.cpp | 99 /// Water - Potential places where an island could be formed. 268 bool isWaterInRange(unsigned UserOffset, MachineBasicBlock *Water, 932 // the Water goes after OrigBB, not NewBB. in splitBlockBeforeInstr() 1017 /// Water (a basic block) will be in range for the specific MI. 1019 /// Compute how much the function will grow by inserting a CPE after Water. 1021 MachineBasicBlock* Water, CPUser &U, in isWaterInRange() 1025 const unsigned CPEOffset = BBInfo[Water->getNumber()].postOffset(CPEAlign); in isWaterInRange() 1028 MachineFunction::const_iterator NextBlock = Water->getIterator(); in isWaterInRange() 1030 NextBlockOffset = BBInfo[Water->getNumber()].postOffset(); in isWaterInRange() 1020 isWaterInRange(unsigned UserOffset, MachineBasicBlock* Water, CPUser &U, unsigned &Growth) isWaterInRange() argument
|
/third_party/python/Lib/test/ |
H A D | test_enum.py | 2979 class Water(Flag, boundary=STRICT): class 2983 self.assertIs(Water._boundary_, STRICT) 2996 self.assertRaisesRegex(ValueError, 'invalid value 7', Water, 7) 3573 class Water(IntFlag, boundary=CONFORM): class 3577 self.assertIs(Water._boundary_, CONFORM) 3592 self.assertIs(Water(7), Water.ONE|Water.TWO) 3593 self.assertIs(Water(~9), Water [all...] |
Completed in 17 milliseconds