Lines Matching refs:parent
254 upwards looking for more .cfg files in parent directories. This option
2821 parent = 'struct ' + self.name
2823 parent = 'class ' + self.name
2825 'Closing brace should be aligned with beginning of %s' % parent)
3194 parent = 'struct ' + classinfo.name
3196 parent = 'class ' + classinfo.name
3202 access_match.group(2), slots, parent))
6866 def _IsParentOrSame(parent, child):
6867 """Return true if child is subdirectory of parent.
6870 parent = os.path.normpath(parent)
6872 if parent == child:
6875 prefix = os.path.commonprefix([parent, child])
6876 if prefix != parent: