Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/test/
Dtest_symtable.py139 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/
Dtest_symtable.py156 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/
Daco_spill.cpp1356 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/
Dinspect.py935 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)])
Dsymtable.py204 def is_assigned(self): member in Symbol
/external/python/cpython3/Lib/
Dsymtable.py216 def is_assigned(self): member in Symbol
/external/python/cpython3/Doc/library/
Dsymtable.rst164 .. method:: is_assigned()
/external/python/cpython2/Doc/library/
Dsymtable.rst164 .. method:: is_assigned()