Searched refs:is_assigned (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_symtable.py | 139 self.assertTrue(self.spam.lookup("x").is_assigned()) 140 self.assertTrue(self.spam.lookup("bar").is_assigned()) 141 self.assertTrue(self.top.lookup("spam").is_assigned()) 142 self.assertTrue(self.Mine.lookup("a_method").is_assigned()) 143 self.assertFalse(self.internal.lookup("x").is_assigned())
|
/external/python/cpython3/Lib/test/ |
D | test_symtable.py | 156 self.assertTrue(self.spam.lookup("x").is_assigned()) 157 self.assertTrue(self.spam.lookup("bar").is_assigned()) 158 self.assertTrue(self.top.lookup("spam").is_assigned()) 159 self.assertTrue(self.Mine.lookup("a_method").is_assigned()) 160 self.assertFalse(self.internal.lookup("x").is_assigned())
|
/external/mesa3d/src/amd/compiler/ |
D | aco_spill.cpp | 1356 void add_interferences(spill_ctx& ctx, std::vector<bool>& is_assigned, in add_interferences() argument 1361 if (!is_assigned[other]) in add_interferences() 1404 std::vector<bool>& is_assigned, in assign_spill_slots_helper() argument 1419 add_interferences(ctx, is_assigned, slots, slots_used, id); in assign_spill_slots_helper() 1427 assert(!is_assigned[id]); in assign_spill_slots_helper() 1431 is_assigned[id] = true; in assign_spill_slots_helper() 1438 if (is_assigned[id] || !ctx.is_reloaded[id] || ctx.interferences[id].first.type() != type) in assign_spill_slots_helper() 1441 add_interferences(ctx, is_assigned, slots, slots_used, id); in assign_spill_slots_helper() 1448 is_assigned[id] = true; in assign_spill_slots_helper() 1456 std::vector<bool> is_assigned(ctx.interferences.size()); in assign_spill_slots() local [all …]
|
/external/python/cpython2/Lib/ |
D | inspect.py | 935 def is_assigned(arg): function 968 if is_assigned(arg): 975 if not is_assigned(arg): 990 unassigned = num_args - len([arg for arg in args if is_assigned(arg)])
|
D | symtable.py | 204 def is_assigned(self): member in Symbol
|
/external/python/cpython3/Lib/ |
D | symtable.py | 216 def is_assigned(self): member in Symbol
|
/external/python/cpython3/Doc/library/ |
D | symtable.rst | 164 .. method:: is_assigned()
|
/external/python/cpython2/Doc/library/ |
D | symtable.rst | 164 .. method:: is_assigned()
|