Searched refs:package (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/base/core/tests/coretests/apks/
H A DFrameworkCoreTests_apk.mk7 # Make sure every package name gets the FrameworkCoreTests_ prefix.
10 # Every package should have a native library
/frameworks/base/media/mca/
H A Dstructgen.py79 package %s;
92 def ToJNIPackage(package, jclassname):
93 return "%s_%s" % (package.replace(".", "_"), jclassname)
107 def __init__(self, name, structname, jclassname, package, javatype, ctype, jtype, defval):
111 self.package = package
143 % (self.jtype, ToJNIPackage(self.package, self.jclassname), ToJavaName(self.name, 0))
150 "}\n" % (self.jtype, ToJNIPackage(self.package, self.jclassname), ToJavaName(self.name, 0),\
156 % (ToJNIPackage(self.package, self.jclassname), ToJavaName(self.name, 0), self.jtype)
167 "}\n" % (ToJNIPackage(self.package, sel
[all...]
/frameworks/base/core/res/
H A DAndroid.mk32 # Create package-export.apk, which other packages can use to get
43 # Make sure the system .rs files get compiled before building the package-export.apk.
47 .PHONY: framework-res-package-target
48 framework-res-package-target: $(LOCAL_BUILT_MODULE)
/frameworks/base/tools/aapt/tests/plurals/
H A Drun.sh9 aapt package -v -x -m -z -J $TEST_OUT_DIR/java -M $TEST_DIR/AndroidManifest.xml \
10 -I out/target/common/obj/APPS/framework-res_intermediates/package-export.apk \
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp75 if (iface->package) document->package = iface->package;
H A Daidl.cpp34 printf("interface %s %s {\n", c->package, c->name.data);
56 printf("parcelable %s %s;\n", b->package, b->name.data);
59 printf("flattenable %s %s;\n", b->package, b->name.data);
164 check_filename(const char* filename, const char* package, buffer_type* name) argument
189 if (package) {
190 expected = package;
248 err |= check_filename(filename, p->package, &p->name);
253 err |= check_filename(filename, c->package, &c->name);
301 type = new UserDataType(p->package ? p->package
675 generate_outputFileName2(const Options& options, const buffer_type& name, const char* package) argument
[all...]
H A Daidl_language.h86 char* package; member in struct:user_data_type
97 char* package; member in struct:interface_type
153 // the package name for our current file
H A Daidl_language_y.y36 package { }
38 | package imports { }
41 package: label
88 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
109 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
169 c->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
H A DType.cpp147 make_generic_type(const string& package, const string& name, argument
150 if (package == "java.util" && name == "List") {
154 //return new GenericType(package, name, args);
173 Type::Type(const string& package, const string& name, argument
176 :m_package(package),
185 if (package.length() > 0) {
186 m_qualifiedName = package;
905 UserDataType::UserDataType(const string& package, const string& name, argument
908 :Type(package, name, builtIn ? BUILT_IN : USERDATA, canWriteToParcel, canWriteToRpcData,
1034 InterfaceType::InterfaceType(const string& package, cons argument
1074 GenericType(const string& package, const string& name, const vector<Type*>& args) argument
1136 GenericListType(const string& package, const string& name, const vector<Type*>& args) argument
1288 AddGenericType(const string& package, const string& name, int args) argument
1311 Find(const char* package, const char* name) const argument
[all...]
H A DType.h28 Type(const string& package, const string& name,
357 UserDataType(const string& package, const string& name,
389 InterfaceType(const string& package, const string& name,
408 GenericType(const string& package, const string& name,
449 GenericListType(const string& package, const string& name,
479 void AddGenericType(const string& package, const string& name, int args);
483 Type* Find(const char* package, const char* name) const;
492 string package; member in struct:Namespace::Generic
H A Dgenerate_java_rpc.cpp379 this->type = new Type(iface->package ? iface->package : "",
432 this->type = new Type(iface->package ? iface->package : "",
462 this->type = new Type(iface->package ? iface->package : "",
957 NAMES.Find(iface->package, iface->name.data));
H A Dgenerate_java_binder.cpp124 // One scenario where this is needed is if another package (with a
520 NAMES.Find(iface->package, iface->name.data));
532 NAMES.Find(iface->package, append(iface->name.data, ".Stub").c_str()),
538 NAMES.Find(iface->package,
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/
H A DAndroid.mk33 LOCAL_RENDERSCRIPT_FLAGS := -rs-package-name=android.support.v8.renderscript
/frameworks/base/tools/aapt/
H A DResourceTable.h115 const String16& package,
121 const String16& package,
132 const String16& package,
142 const String16& package,
154 bool hasBagOrEntry(const String16& package,
158 bool hasBagOrEntry(const String16& package,
167 bool appendComment(const String16& package,
173 bool appendTypeComment(const String16& package,
179 const String16& package, const String16& type, const String16& name);
198 uint32_t getResId(const String16& package,
[all...]
H A DResourceTable.cpp132 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
133 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
235 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
237 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
1042 ssize_t pkgIdx = block.indexOfAttribute(NULL, "package");
1045 "A 'package' attribute is required for <private-symbols>\n");
1647 fprintf(stderr, "Included base package ID %d already in use!\n", id);
1652 NOISY(printf("Including package %s with ID=%d\n",
1673 const String16& package,
1681 package
1672 addPublic(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const uint32_t ident) argument
1696 addEntry(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& value, const Vector<StringPool::entry_style_span>* style, const ResTable_config* params, const bool doSetIndex, const int32_t format, const bool overwrite) argument
1737 startBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const ResTable_config* params, bool overlay, bool replace, bool isId) argument
1801 addBag(const SourcePos& sourcePos, const String16& package, const String16& type, const String16& name, const String16& bagParent, const String16& bagKey, const String16& value, const Vector<StringPool::entry_style_span>* style, const ResTable_config* params, bool replace, bool isId, const int32_t format) argument
1846 hasBagOrEntry(const String16& package, const String16& type, const String16& name) const argument
1871 hasBagOrEntry(const String16& package, const String16& type, const String16& name, const ResTable_config& config) const argument
1906 String16 package, type, name; local
1914 appendComment(const String16& package, const String16& type, const String16& name, const String16& comment, bool onlyIfEmpty) argument
1938 appendTypeComment(const String16& package, const String16& type, const String16& name, const String16& comment) argument
1961 canAddEntry(const SourcePos& pos, const String16& package, const String16& type, const String16& name) argument
1996 getResId(const String16& package, const String16& type, const String16& name, bool onlyPublic) const argument
2041 String16 package, type, name; local
2151 getCustomResource( const String16& package, const String16& type, const String16& name) const argument
2167 getCustomResourceWithCreation( const String16& package, const String16& type, const String16& name, const bool createIfNotFound) argument
2982 writePublicDefinitions(const String16& package, FILE* fp) argument
2998 writePublicDefinitions(const String16& package, FILE* fp, bool pub) argument
3165 generateAttributes(ResourceTable* table, const String16& package) argument
3208 assignResourceIds(ResourceTable* table, const String16& package) argument
3740 getPackage(const String16& package) argument
3764 getType(const String16& package, const String16& type, const SourcePos& sourcePos, bool doSetIndex) argument
3776 getEntry(const String16& package, const String16& type, const String16& name, const SourcePos& sourcePos, bool overlay, const ResTable_config* config, bool doSetIndex) argument
[all...]
H A DAaptAssets.h289 * Note that sorting here is not enough to guarantee that the package
532 void setPackage(const String8& package) { argument
533 mPackage = package;
534 mSymbolsPrivatePackage = package;
/frameworks/compile/libbcc/tests/debuginfo/
H A Dbuild_test_apk.sh88 --package)
136 echo " --package <name> Package namespace for your project"
154 # Compute activity, appname, and java package, if not specified via parameters
168 run $SDK/tools/android create project --target $TARGET --name $NAME --path $OUT_DIR --activity $ACTIVITY --package $PACKAGE
/frameworks/opt/calendar/
H A DAndroid.mk25 # Build the test package
/frameworks/opt/inputmethodcommon/
H A DAndroid.mk24 # Build the test package
/frameworks/opt/mailcommon/
H A DAndroid.mk25 # Build the test package
/frameworks/opt/vcard/
H A DAndroid.mk26 # Build the test package.
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp2333 : header(_header), package(_package), entryCount(count),
2336 const Package* const package; member in struct:android::ResTable::Type
2346 : owner(_owner), header(_header), package(_package) { }
2358 const ResTable_package* const package; member in struct:android::ResTable::Package
2369 // A group of objects describing a particular resource package.
2370 // The first in 'package' is always the root object (from the resource
2371 // table that defined the package); the ones after are skins on top of it.
2419 // This is for finding typeStrings and other common package stuff.
2514 ALOGE("Style contains key with bad package: 0x%08x\n", attrRes);
2596 // the system package (whic
2968 const Package* const package = grp->packages[0]; local
3054 const Package* const package = grp->packages[ip]; local
3331 const Package* const package = grp->packages[ip]; local
3560 identifierForName(const char16_t* name, size_t nameLen, const char16_t* type, size_t typeLen, const char16_t* package, size_t packageLen, uint32_t* outTypeSpecFlags) const argument
4170 String16 package, type, name; local
4320 String16 package, type, name; local
4789 const Package* package = packageGroup->packages[j]; local
4839 getEntry( const Package* package, int typeIndex, int entryIndex, const ResTable_config* config, const ResTable_type** outType, const ResTable_entry** outEntry, const Type** outTypeClass) const argument
4984 Package* package = NULL; local
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk40 $(FrameworkCoreTests_all_apks_res): $(FrameworkCoreTests_intermediates)/raw/%: $(call intermediates-dir-for,APPS,FrameworkCoreTests_%)/package.apk | $(ACP)
/frameworks/ex/common/
H A DAndroid.mk31 # Build the test package
/frameworks/base/include/androidfw/
H A DResourceTypes.h208 #define Res_MAKEID(package, type, entry) \
209 (((package+1)<<24) | (((type+1)&0xFF)<<16) | (entry&0xFFFF))
338 * where pp is the package index, tt is the type index in that
339 * package, and eeee is the entry index in that type. The package
774 * A collection of resource data types within a package. Followed by
782 // If this is a base package, its ID. Package IDs start
783 // at 1 (corresponding to the value of the package bits in a
784 // resource identifier). 0 means this is not a base package.
787 // Actual name of this package, \
1293 const char16_t* package; member in struct:android::ResTable::resource_name
[all...]

Completed in 1379 milliseconds

12