Home | History | Annotate | Download | only in tools

Lines Matching refs:nesting_state

1758                                   nesting_state, error):
1780 nesting_state: A _NestingState instance which maintains information about
1843 classinfo = nesting_state.InnermostClass()
2051 def CheckAccess(filename, clean_lines, linenum, nesting_state, error):
2058 nesting_state: A _NestingState instance which maintains information about
2069 if nesting_state.stack and isinstance(nesting_state.stack[-1], _ClassInfo):
2070 if nesting_state.stack[-1].access != 'private':
2209 def CheckSpacing(filename, clean_lines, linenum, nesting_state, error):
2222 nesting_state: A _NestingState instance which maintains information about
2242 if IsBlankLine(line) and not nesting_state.InNamespaceBody():
2802 def CheckStyle(filename, clean_lines, linenum, file_extension, nesting_state,
2815 nesting_state: A _NestingState instance which maintains information about
2904 CheckAccess(filename, clean_lines, linenum, nesting_state, error)
2905 CheckSpacing(filename, clean_lines, linenum, nesting_state, error)
2908 classinfo = nesting_state.InnermostClass()
3786 include_state, function_state, nesting_state, error,
3798 nesting_state: A _NestingState instance which maintains information about
3808 nesting_state.Update(filename, clean_lines, line, error)
3809 if nesting_state.stack and nesting_state.stack[-1].inline_asm != _NO_ASM:
3813 CheckStyle(filename, clean_lines, line, file_extension, nesting_state, error)
3817 nesting_state, error)
3844 nesting_state = _NestingState()
3857 include_state, function_state, nesting_state, error,
3859 nesting_state.CheckClassFinished(filename, error)