Skip to content
Snippets Groups Projects
  1. Apr 08, 2013
  2. Apr 03, 2013
  3. Feb 01, 2013
  4. Jan 29, 2013
  5. Jan 08, 2013
    • Orgad Shaneh's avatar
      Remove braces for single lines of conditions · 29a93998
      Orgad Shaneh authored
      
      #!/usr/bin/env ruby
      
      Dir.glob('**/*.cpp') { |file|
        # skip ast (excluding paste, astpath, and canv'ast'imer)
        next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
        s = File.read(file)
        next if s.include?('qlalr')
        orig = s.dup
        s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
          res = $&
          if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
            res
          else
            res.gsub!('} else', 'else')
            res.gsub!(/\n +} *\n/m, "\n")
            res.gsub(/ *{$/, '')
          end
        }
        s.gsub!(/ *$/, '')
        File.open(file, 'wb').write(s) if s != orig
      }
      
      Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      29a93998
  6. Dec 14, 2012
  7. Nov 22, 2012
  8. Oct 24, 2012
  9. Oct 17, 2012
  10. Oct 15, 2012
  11. Oct 05, 2012
  12. Sep 13, 2012
  13. Jul 19, 2012
  14. Jun 06, 2012
  15. Jun 05, 2012
  16. May 22, 2012
  17. May 11, 2012
  18. Apr 04, 2012
  19. Mar 29, 2012
  20. Mar 27, 2012
  21. Mar 16, 2012
  22. Mar 14, 2012
  23. Feb 15, 2012
  24. Feb 09, 2012
  25. Feb 07, 2012
  26. Jan 26, 2012
  27. Jan 24, 2012
  28. Dec 20, 2011
  29. Nov 10, 2011
    • hjk's avatar
      more Id type fixes · 82f55736
      hjk authored
      
      Change-Id: I3720946ba5485696822976567d83b4d6cb1fb283
      
      x
      
      Change-Id: Iab58bc34bc56371405d132315573b484a533b77c
      Reviewed-by: default avatarhjk <qthjk@ovi.com>
      82f55736
  30. Nov 03, 2011
  31. Sep 14, 2011
  32. Sep 13, 2011
Loading