From ea553dc9fa5bba56dfa6ffe26f06040978d9920b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C4=99drzej=20Nowacki?= Date: Thu, 31 Jan 2013 10:00:06 +0100 Subject: [PATCH] Cleanup namespaces. QT_BEGIN_NAMESPACE and QT_END_NAMESPACE was added in header files. Namespace coding convention got unified. Change-Id: I971c9a9179d5cd512f8214457609f40992a8ca66 Reviewed-by: Lars Knoll --- src/v4/debugging.h | 4 ++++ src/v4/qmljs_engine.h | 4 ++++ src/v4/qmljs_environment.h | 4 ++++ src/v4/qmljs_math.h | 4 ++++ src/v4/qmljs_runtime.h | 4 ++++ src/v4/qmljs_value.h | 4 ++++ src/v4/qv4argumentsobject.h | 4 ++++ src/v4/qv4array.h | 4 ++++ src/v4/qv4arrayobject.h | 4 ++++ src/v4/qv4booleanobject.h | 4 ++++ src/v4/qv4dateobject.h | 4 ++++ src/v4/qv4errorobject.h | 4 ++++ src/v4/qv4functionobject.h | 5 ++++- src/v4/qv4global.h | 4 ++++ src/v4/qv4globalobject.h | 5 ++++- src/v4/qv4identifier.h | 8 ++++++-- src/v4/qv4jsonobject.h | 8 ++++++-- src/v4/qv4managed.h | 4 ++++ src/v4/qv4mathobject.h | 5 ++++- src/v4/qv4mm.h | 4 ++++ src/v4/qv4numberobject.h | 4 ++++ src/v4/qv4object.h | 5 ++++- src/v4/qv4objectiterator.h | 8 ++++++-- src/v4/qv4objectproto.h | 4 ++++ src/v4/qv4propertydescriptor.h | 8 ++++++-- src/v4/qv4propertytable.h | 8 ++++++-- src/v4/qv4regexp.h | 4 ++++ src/v4/qv4regexpobject.h | 7 ++++--- src/v4/qv4string.h | 8 ++++++-- src/v4/qv4stringobject.h | 4 ++++ 30 files changed, 132 insertions(+), 19 deletions(-) diff --git a/src/v4/debugging.h b/src/v4/debugging.h index 00c9671..ecb596f 100644 --- a/src/v4/debugging.h +++ b/src/v4/debugging.h @@ -36,6 +36,8 @@ #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace IR { @@ -138,4 +140,6 @@ private: // TODO: use opaque d-pointers here } // namespace Debugging } // namespace QQmlJS +QT_END_NAMESPACE + #endif // DEBUGGING_H diff --git a/src/v4/qmljs_engine.h b/src/v4/qmljs_engine.h index 013a2b6..bf3ccb2 100644 --- a/src/v4/qmljs_engine.h +++ b/src/v4/qmljs_engine.h @@ -50,6 +50,8 @@ #include #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace Debugging { @@ -222,4 +224,6 @@ struct Q_V4_EXPORT ExecutionEngine } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif diff --git a/src/v4/qmljs_environment.h b/src/v4/qmljs_environment.h index 28f000b..5dc4a56 100644 --- a/src/v4/qmljs_environment.h +++ b/src/v4/qmljs_environment.h @@ -44,6 +44,8 @@ #include "qv4global.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -147,4 +149,6 @@ struct ExecutionContext } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif diff --git a/src/v4/qmljs_math.h b/src/v4/qmljs_math.h index 4645c5a..b14152d 100644 --- a/src/v4/qmljs_math.h +++ b/src/v4/qmljs_math.h @@ -48,6 +48,8 @@ #if !defined(QMLJS_LLVM_RUNTIME) && 1 //CPU(X86_64) +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -102,5 +104,7 @@ static inline Value mul_int32(int a, int b) } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // !defined(QMLJS_LLVM_RUNTIME) && 1 //CPU(X86_64) #endif // QMLJS_MATH_H diff --git a/src/v4/qmljs_runtime.h b/src/v4/qmljs_runtime.h index 2ea6126..b93aa0c 100644 --- a/src/v4/qmljs_runtime.h +++ b/src/v4/qmljs_runtime.h @@ -60,6 +60,8 @@ # define TRACE2(x, y) #endif // TRACE1 +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -859,4 +861,6 @@ inline Bool __qmljs_strict_equal(Value x, Value y) } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_RUNTIME_H diff --git a/src/v4/qmljs_value.h b/src/v4/qmljs_value.h index e11b08f..d33d5ed 100644 --- a/src/v4/qmljs_value.h +++ b/src/v4/qmljs_value.h @@ -48,6 +48,8 @@ #include #include "qv4managed.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -477,4 +479,6 @@ inline ErrorObject *Value::asErrorObject() const } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif diff --git a/src/v4/qv4argumentsobject.h b/src/v4/qv4argumentsobject.h index adbaf5d..be618a9 100644 --- a/src/v4/qv4argumentsobject.h +++ b/src/v4/qv4argumentsobject.h @@ -44,6 +44,8 @@ #include #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -81,5 +83,7 @@ struct ArgumentsObject: Object { } } +QT_END_NAMESPACE + #endif diff --git a/src/v4/qv4array.h b/src/v4/qv4array.h index 86d438e..13d2e0c 100644 --- a/src/v4/qv4array.h +++ b/src/v4/qv4array.h @@ -54,6 +54,8 @@ #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -636,4 +638,6 @@ public: } } +QT_END_NAMESPACE + #endif // QMAP_H diff --git a/src/v4/qv4arrayobject.h b/src/v4/qv4arrayobject.h index 8a15546..eb8bd05 100644 --- a/src/v4/qv4arrayobject.h +++ b/src/v4/qv4arrayobject.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -92,4 +94,6 @@ struct ArrayPrototype: ArrayObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4booleanobject.h b/src/v4/qv4booleanobject.h index 97dfc50..d0a7cda 100644 --- a/src/v4/qv4booleanobject.h +++ b/src/v4/qv4booleanobject.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -69,4 +71,6 @@ struct BooleanPrototype: BooleanObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4dateobject.h b/src/v4/qv4dateobject.h index ede4473..2c09ad2 100644 --- a/src/v4/qv4dateobject.h +++ b/src/v4/qv4dateobject.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -122,4 +124,6 @@ struct DatePrototype: DateObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4errorobject.h b/src/v4/qv4errorobject.h index d158909..452b7b3 100644 --- a/src/v4/qv4errorobject.h +++ b/src/v4/qv4errorobject.h @@ -44,6 +44,8 @@ #include "qv4object.h" #include "qv4functionobject.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -202,4 +204,6 @@ struct URIErrorPrototype: URIErrorObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4functionobject.h b/src/v4/qv4functionobject.h index b651eed..53e06f3 100644 --- a/src/v4/qv4functionobject.h +++ b/src/v4/qv4functionobject.h @@ -65,8 +65,9 @@ #include #include -namespace QQmlJS { +QT_BEGIN_NAMESPACE +namespace QQmlJS { namespace VM { struct Value; @@ -226,4 +227,6 @@ struct BoundFunction: FunctionObject { } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_OBJECTS_H diff --git a/src/v4/qv4global.h b/src/v4/qv4global.h index e6150b0..b9520b9 100644 --- a/src/v4/qv4global.h +++ b/src/v4/qv4global.h @@ -32,6 +32,8 @@ #include +QT_BEGIN_NAMESPACE + #ifndef QT_STATIC # if defined(QT_BUILD_V4_LIB) # define Q_V4_EXPORT Q_DECL_EXPORT @@ -42,4 +44,6 @@ # define Q_V4_EXPORT #endif +QT_END_NAMESPACE + #endif // QV4GLOBAL_H diff --git a/src/v4/qv4globalobject.h b/src/v4/qv4globalobject.h index 6a586c1..8399c94 100644 --- a/src/v4/qv4globalobject.h +++ b/src/v4/qv4globalobject.h @@ -44,8 +44,9 @@ #include "qv4global.h" #include "qv4functionobject.h" -namespace QQmlJS { +QT_END_NAMESPACE +namespace QQmlJS { namespace VM { struct Q_V4_EXPORT EvalFunction : FunctionObject @@ -81,4 +82,6 @@ struct GlobalFunctions } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_OBJECTS_H diff --git a/src/v4/qv4identifier.h b/src/v4/qv4identifier.h index 5a335ee..3fa84d2 100644 --- a/src/v4/qv4identifier.h +++ b/src/v4/qv4identifier.h @@ -45,6 +45,8 @@ #include #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -104,7 +106,9 @@ public: } }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4jsonobject.h b/src/v4/qv4jsonobject.h index 7c1df7c..0d1c776 100644 --- a/src/v4/qv4jsonobject.h +++ b/src/v4/qv4jsonobject.h @@ -43,6 +43,8 @@ #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -54,8 +56,10 @@ struct JsonObject : Object { }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4managed.h b/src/v4/qv4managed.h index a033b13..7aa1452 100644 --- a/src/v4/qv4managed.h +++ b/src/v4/qv4managed.h @@ -47,6 +47,8 @@ #include #include "qv4global.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -177,4 +179,6 @@ private: } } +QT_END_NAMESPACE + #endif diff --git a/src/v4/qv4mathobject.h b/src/v4/qv4mathobject.h index 1803137..339bb4f 100644 --- a/src/v4/qv4mathobject.h +++ b/src/v4/qv4mathobject.h @@ -43,8 +43,9 @@ #include "qv4object.h" -namespace QQmlJS { +QT_BEGIN_NAMESPACE +namespace QQmlJS { namespace VM { struct MathObject: Object @@ -75,4 +76,6 @@ struct MathObject: Object } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_OBJECTS_H diff --git a/src/v4/qv4mm.h b/src/v4/qv4mm.h index 6f747f5..2abc1b4 100644 --- a/src/v4/qv4mm.h +++ b/src/v4/qv4mm.h @@ -37,6 +37,8 @@ #define DETAILED_MM_STATS +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -125,4 +127,6 @@ protected: } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4GC_H diff --git a/src/v4/qv4numberobject.h b/src/v4/qv4numberobject.h index 83fb4ad..aa2c9cf 100644 --- a/src/v4/qv4numberobject.h +++ b/src/v4/qv4numberobject.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -73,4 +75,6 @@ struct NumberPrototype: NumberObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4object.h b/src/v4/qv4object.h index 73d62bf..5bcc5df 100644 --- a/src/v4/qv4object.h +++ b/src/v4/qv4object.h @@ -61,8 +61,9 @@ #include #include -namespace QQmlJS { +QT_BEGIN_NAMESPACE +namespace QQmlJS { namespace VM { struct Value; @@ -189,4 +190,6 @@ struct ArrayObject: Object { } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_OBJECTS_H diff --git a/src/v4/qv4objectiterator.h b/src/v4/qv4objectiterator.h index baecc25..a463eb8 100644 --- a/src/v4/qv4objectiterator.h +++ b/src/v4/qv4objectiterator.h @@ -43,6 +43,8 @@ #include "qmljs_value.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -73,7 +75,9 @@ struct ObjectIterator Value nextPropertyNameAsString(); }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4objectproto.h b/src/v4/qv4objectproto.h index 93527a2..585ccb4 100644 --- a/src/v4/qv4objectproto.h +++ b/src/v4/qv4objectproto.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -92,4 +94,6 @@ struct ObjectPrototype: Object } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H diff --git a/src/v4/qv4propertydescriptor.h b/src/v4/qv4propertydescriptor.h index dc9e1c5..1cddf40 100644 --- a/src/v4/qv4propertydescriptor.h +++ b/src/v4/qv4propertydescriptor.h @@ -43,6 +43,8 @@ #include "qmljs_value.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -163,7 +165,9 @@ struct PropertyDescriptor { } }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4propertytable.h b/src/v4/qv4propertytable.h index d50b26e..b00acfa 100644 --- a/src/v4/qv4propertytable.h +++ b/src/v4/qv4propertytable.h @@ -44,6 +44,8 @@ #include "qmljs_value.h" #include "qv4propertydescriptor.h" +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -217,7 +219,9 @@ private: int _allocated: 27; }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4regexp.h b/src/v4/qv4regexp.h index 7eae033..f781417 100644 --- a/src/v4/qv4regexp.h +++ b/src/v4/qv4regexp.h @@ -54,6 +54,8 @@ #include #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -89,4 +91,6 @@ private: } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4REGEXP_H diff --git a/src/v4/qv4regexpobject.h b/src/v4/qv4regexpobject.h index 50241f2..a37905f 100644 --- a/src/v4/qv4regexpobject.h +++ b/src/v4/qv4regexpobject.h @@ -61,8 +61,9 @@ #include #include -namespace QQmlJS { +QT_BEGIN_NAMESPACE +namespace QQmlJS { namespace VM { struct RegExpObject: Object { @@ -92,9 +93,9 @@ struct RegExpPrototype: RegExpObject static Value method_compile(ExecutionContext *ctx); }; - - } // namespace VM } // namespace QQmlJS +QT_END_NAMESPACE + #endif // QMLJS_OBJECTS_H diff --git a/src/v4/qv4string.h b/src/v4/qv4string.h index 2ebc9e8..383c054 100644 --- a/src/v4/qv4string.h +++ b/src/v4/qv4string.h @@ -44,6 +44,8 @@ #include #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -114,7 +116,9 @@ private: mutable uint stringHash; }; -} -} +} // namespace VM +} // namespace QQmlJS + +QT_END_NAMESPACE #endif diff --git a/src/v4/qv4stringobject.h b/src/v4/qv4stringobject.h index 306f00c..85e11d5 100644 --- a/src/v4/qv4stringobject.h +++ b/src/v4/qv4stringobject.h @@ -45,6 +45,8 @@ #include "qv4functionobject.h" #include +QT_BEGIN_NAMESPACE + namespace QQmlJS { namespace VM { @@ -97,4 +99,6 @@ struct StringPrototype: StringObject } // end of namespace VM } // end of namespace QQmlJS +QT_END_NAMESPACE + #endif // QV4ECMAOBJECTS_P_H -- 2.7.4