Reformat all cpp and h files.

This applies git cl format --full to all ANGLE sources.

Bug: angleproject:2986
Change-Id: Ib504e618c1589332a37e97696cdc3515d739308f
Reviewed-on: https://chromium-review.googlesource.com/c/1351367
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org>
diff --git a/src/libANGLE/renderer/null/ContextNULL.cpp b/src/libANGLE/renderer/null/ContextNULL.cpp
index 786b9ab..2983271 100644
--- a/src/libANGLE/renderer/null/ContextNULL.cpp
+++ b/src/libANGLE/renderer/null/ContextNULL.cpp
@@ -35,8 +35,7 @@
 
 AllocationTrackerNULL::AllocationTrackerNULL(size_t maxTotalAllocationSize)
     : mAllocatedBytes(0), mMaxBytes(maxTotalAllocationSize)
-{
-}
+{}
 
 AllocationTrackerNULL::~AllocationTrackerNULL()
 {
@@ -102,9 +101,7 @@
     InitMinimumTextureCapsMap(maxClientVersion, mExtensions, &mTextureCaps);
 }
 
-ContextNULL::~ContextNULL()
-{
-}
+ContextNULL::~ContextNULL() {}
 
 angle::Result ContextNULL::initialize()
 {
@@ -183,65 +180,51 @@
     return angle::Result::Continue();
 }
 
-void ContextNULL::stencilFillPath(const gl::Path *path, GLenum fillMode, GLuint mask)
-{
-}
+void ContextNULL::stencilFillPath(const gl::Path *path, GLenum fillMode, GLuint mask) {}
 
-void ContextNULL::stencilStrokePath(const gl::Path *path, GLint reference, GLuint mask)
-{
-}
+void ContextNULL::stencilStrokePath(const gl::Path *path, GLint reference, GLuint mask) {}
 
-void ContextNULL::coverFillPath(const gl::Path *path, GLenum coverMode)
-{
-}
+void ContextNULL::coverFillPath(const gl::Path *path, GLenum coverMode) {}
 
-void ContextNULL::coverStrokePath(const gl::Path *path, GLenum coverMode)
-{
-}
+void ContextNULL::coverStrokePath(const gl::Path *path, GLenum coverMode) {}
 
 void ContextNULL::stencilThenCoverFillPath(const gl::Path *path,
                                            GLenum fillMode,
                                            GLuint mask,
                                            GLenum coverMode)
-{
-}
+{}
 
 void ContextNULL::stencilThenCoverStrokePath(const gl::Path *path,
                                              GLint reference,
                                              GLuint mask,
                                              GLenum coverMode)
-{
-}
+{}
 
 void ContextNULL::coverFillPathInstanced(const std::vector<gl::Path *> &paths,
                                          GLenum coverMode,
                                          GLenum transformType,
                                          const GLfloat *transformValues)
-{
-}
+{}
 
 void ContextNULL::coverStrokePathInstanced(const std::vector<gl::Path *> &paths,
                                            GLenum coverMode,
                                            GLenum transformType,
                                            const GLfloat *transformValues)
-{
-}
+{}
 
 void ContextNULL::stencilFillPathInstanced(const std::vector<gl::Path *> &paths,
                                            GLenum fillMode,
                                            GLuint mask,
                                            GLenum transformType,
                                            const GLfloat *transformValues)
-{
-}
+{}
 
 void ContextNULL::stencilStrokePathInstanced(const std::vector<gl::Path *> &paths,
                                              GLint reference,
                                              GLuint mask,
                                              GLenum transformType,
                                              const GLfloat *transformValues)
-{
-}
+{}
 
 void ContextNULL::stencilThenCoverFillPathInstanced(const std::vector<gl::Path *> &paths,
                                                     GLenum coverMode,
@@ -249,8 +232,7 @@
                                                     GLuint mask,
                                                     GLenum transformType,
                                                     const GLfloat *transformValues)
-{
-}
+{}
 
 void ContextNULL::stencilThenCoverStrokePathInstanced(const std::vector<gl::Path *> &paths,
                                                       GLenum coverMode,
@@ -258,8 +240,7 @@
                                                       GLuint mask,
                                                       GLenum transformType,
                                                       const GLfloat *transformValues)
-{
-}
+{}
 
 GLenum ContextNULL::getResetStatus()
 {
@@ -276,25 +257,15 @@
     return "NULL";
 }
 
-void ContextNULL::insertEventMarker(GLsizei length, const char *marker)
-{
-}
+void ContextNULL::insertEventMarker(GLsizei length, const char *marker) {}
 
-void ContextNULL::pushGroupMarker(GLsizei length, const char *marker)
-{
-}
+void ContextNULL::pushGroupMarker(GLsizei length, const char *marker) {}
 
-void ContextNULL::popGroupMarker()
-{
-}
+void ContextNULL::popGroupMarker() {}
 
-void ContextNULL::pushDebugGroup(GLenum source, GLuint id, GLsizei length, const char *message)
-{
-}
+void ContextNULL::pushDebugGroup(GLenum source, GLuint id, GLsizei length, const char *message) {}
 
-void ContextNULL::popDebugGroup()
-{
-}
+void ContextNULL::popDebugGroup() {}
 
 angle::Result ContextNULL::syncState(const gl::Context *context,
                                      const gl::State::DirtyBits &dirtyBits,