Rename global..Decls to package...Decls

For something like android.hidl.foo@V1_0::IFoo.SomeStruct.SomeEnum
emitGlobalType/HwDeclarations puts relevant functions in
"android::hidl::foo::V1_0".

Since this isn't the global namespace and we are actually going
to put other things relative to the global namespace, renaming.

Bug: 68715899
Test: hidl_test
Change-Id: Ibc465dc69d028b13d96f123a42a1f5bf391c32b3
diff --git a/Interface.cpp b/Interface.cpp
index ac13f9f..e06a310 100644
--- a/Interface.cpp
+++ b/Interface.cpp
@@ -815,8 +815,8 @@
     }
 }
 
-status_t Interface::emitGlobalTypeDeclarations(Formatter &out) const {
-    status_t status = Scope::emitGlobalTypeDeclarations(out);
+status_t Interface::emitPackageTypeDeclarations(Formatter& out) const {
+    status_t status = Scope::emitPackageTypeDeclarations(out);
     if (status != OK) {
         return status;
     }