/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/components/ |
H A D | biconnected.py | 382 grandparent, parent, children = stack[-1] 388 if discovery[child] <= discovery[parent]: # back edge 389 low[parent] = min(low[parent],discovery[child]) 391 edge_stack.append((parent,child)) 395 stack.append((parent, child, iter(G[child]))) 397 edge_stack.append((parent,child)) 401 if low[parent] >= discovery[grandparent]: 403 ind = edge_stack.index((grandparent,parent)) 408 low[grandparent] = min(low[parent], lo [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
H A D | fix_input.py | 21 if context.match(node.parent.parent):
|
H A D | fix_dict.py | 92 if node.parent is None: 95 if (node.parent.parent is not None and 96 self.p1.match(node.parent.parent, results) and 107 return self.p2.match(node.parent, results) and results["node"] is node
|
H A D | fix_xrange.py | 64 if node.parent is None: 67 if (node.parent.parent is not None and 68 self.p1.match(node.parent.parent, results) and 73 return self.p2.match(node.parent, results) and results["node"] is node
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
H A D | fix_input.py | 21 if context.match(node.parent.parent):
|
H A D | fix_dict.py | 92 if node.parent is None: 95 if (node.parent.parent is not None and 96 self.p1.match(node.parent.parent, results) and 107 return self.p2.match(node.parent, results) and results["node"] is node
|
H A D | fix_xrange.py | 64 if node.parent is None: 67 if (node.parent.parent is not None and 68 self.p1.match(node.parent.parent, results) and 73 return self.p2.match(node.parent, results) and results["node"] is node
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
H A D | textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, titl [all...] |
H A D | configSectionNameDialog.py | 9 def __init__(self,parent,title,message,usedNames): 14 Toplevel.__init__(self, parent) 18 self.transient(parent) 21 self.parent = parent 31 ((parent.winfo_rootx()+((parent.winfo_width()/2) 33 parent.winfo_rooty()+((parent.winfo_height()/2) 34 -(self.winfo_reqheight()/2)) )) ) #centre dialog over parent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
H A D | textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, titl [all...] |
H A D | configSectionNameDialog.py | 9 def __init__(self,parent,title,message,usedNames): 14 Toplevel.__init__(self, parent) 18 self.transient(parent) 21 self.parent = parent 31 ((parent.winfo_rootx()+((parent.winfo_width()/2) 33 parent.winfo_rooty()+((parent.winfo_height()/2) 34 -(self.winfo_reqheight()/2)) )) ) #centre dialog over parent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
H A D | refpolicy.py | 54 def __init__(self, parent=None): 55 self.parent = None 63 should contain a reference to its parent (or None for a top-level 75 def __init__(self, parent=None): 76 PolicyBase.__init__(self, parent) 150 def __init__(self, parent=None): 151 PolicyBase.__init__(self, parent) 262 def __init__(self, context=None, parent=None): 269 Leaf.__init__(self, parent) 343 def __init__(self, name="", parent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/ |
H A D | refpolicy.py | 54 def __init__(self, parent=None): 55 self.parent = None 63 should contain a reference to its parent (or None for a top-level 75 def __init__(self, parent=None): 76 PolicyBase.__init__(self, parent) 150 def __init__(self, parent=None): 151 PolicyBase.__init__(self, parent) 262 def __init__(self, context=None, parent=None): 269 Leaf.__init__(self, parent) 343 def __init__(self, name="", parent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/apol/ |
H A D | models.py | 34 def __init__(self, parent): 35 super(SEToolsListModel, self).__init__(parent) 48 def rowCount(self, parent=QModelIndex()): 54 def columnCount(self, parent=QModelIndex()): 75 def __init__(self, parent, policy): 76 super(PermListModel, self).__init__(parent)
|
H A D | rulemodels.py | 25 def __init__(self, parent): 26 super(RuleResultModel, self).__init__(parent) 29 def rowCount(self, parent=QModelIndex()): 35 def columnCount(self, parent=QModelIndex()): 98 def columnCount(self, parent=QModelIndex()):
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binary_heap_/ |
H A D | debug_fn_imps.hpp | 63 _GLIBCXX_DEBUG_ASSERT(parent(left_child(i)) == i); 68 _GLIBCXX_DEBUG_ASSERT(parent(right_child(i)) == i);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
H A D | tkSimpleDialog.py | 37 def __init__(self, parent, title = None): 43 parent -- a parent window (the application window) 47 Toplevel.__init__(self, parent) 53 if parent.winfo_viewable(): 54 self.transient(parent) 59 self.parent = parent 75 if self.parent is not None: 76 self.geometry("+%d+%d" % (parent [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
H A D | tkSimpleDialog.py | 37 def __init__(self, parent, title = None): 43 parent -- a parent window (the application window) 47 Toplevel.__init__(self, parent) 53 if parent.winfo_viewable(): 54 self.transient(parent) 59 self.parent = parent 75 if self.parent is not None: 76 self.geometry("+%d+%d" % (parent [all...] |