Apply clang-format on repository

Code is formatted as per a revised clang format configuration
file(not part of this delivery). Version 14.0.6 is used.

Exclusion List:
- files with .cl extension
- files that are not strictly C/C++ (e.g. Android.bp, Sconscript ...)
And the following directories
- compute_kernel_writer/validation/
- tests/
- include/
- src/core/NEON/kernels/convolution/
- src/core/NEON/kernels/arm_gemm/
- src/core/NEON/kernels/arm_conv/
- data/

There will be a follow up for formatting of .cl files and the
files under tests/ and compute_kernel_writer/validation/.

Signed-off-by: Felix Thomasmathibalan <felixjohnny.thomasmathibalan@arm.com>
Change-Id: Ib7eb1fcf4e7537b9feaefcfc15098a804a3fde0a
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10391
Benchmark: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Gunes Bayir <gunes.bayir@arm.com>
diff --git a/utils/command_line/EnumListOption.h b/utils/command_line/EnumListOption.h
index f4ee283..6c4146f 100644
--- a/utils/command_line/EnumListOption.h
+++ b/utils/command_line/EnumListOption.h
@@ -25,7 +25,6 @@
 #define ARM_COMPUTE_UTILS_ENUMLISTOPTION
 
 #include "Option.h"
-
 #include <initializer_list>
 #include <set>
 #include <sstream>
@@ -57,7 +56,7 @@
      */
     EnumListOption(std::string name, std::set<T> allowed_values, std::initializer_list<T> &&default_values);
 
-    bool parse(std::string value) override;
+    bool        parse(std::string value) override;
     std::string help() const override;
 
     /** Get the values of the option.
@@ -73,13 +72,17 @@
 
 template <typename T>
 inline EnumListOption<T>::EnumListOption(std::string name, std::set<T> allowed_values)
-    : Option{ std::move(name) }, _allowed_values{ std::move(allowed_values) }
+    : Option{std::move(name)}, _allowed_values{std::move(allowed_values)}
 {
 }
 
 template <typename T>
-inline EnumListOption<T>::EnumListOption(std::string name, std::set<T> allowed_values, std::initializer_list<T> &&default_values)
-    : Option{ std::move(name), false, true }, _values{ std::forward<std::initializer_list<T>>(default_values) }, _allowed_values{ std::move(allowed_values) }
+inline EnumListOption<T>::EnumListOption(std::string                name,
+                                         std::set<T>                allowed_values,
+                                         std::initializer_list<T> &&default_values)
+    : Option{std::move(name), false, true},
+      _values{std::forward<std::initializer_list<T>>(default_values)},
+      _allowed_values{std::move(allowed_values)}
 {
 }
 
@@ -90,10 +93,10 @@
     _values.clear();
     _is_set = true;
 
-    std::stringstream stream{ value };
+    std::stringstream stream{value};
     std::string       item;
 
-    while(!std::getline(stream, item, ',').fail())
+    while (!std::getline(stream, item, ',').fail())
     {
         try
         {
@@ -102,9 +105,9 @@
 
             item_stream >> typed_value;
 
-            if(!item_stream.fail())
+            if (!item_stream.fail())
             {
-                if(_allowed_values.count(typed_value) == 0)
+                if (_allowed_values.count(typed_value) == 0)
                 {
                     _is_set = false;
                     continue;
@@ -115,7 +118,7 @@
 
             _is_set = _is_set && !item_stream.fail();
         }
-        catch(const std::invalid_argument &)
+        catch (const std::invalid_argument &)
         {
             _is_set = false;
         }
@@ -130,7 +133,7 @@
     std::stringstream msg;
     msg << "--" + name() + "={";
 
-    for(const auto &value : _allowed_values)
+    for (const auto &value : _allowed_values)
     {
         msg << value << ",";
     }