HomeSort by relevance Sort by last modified time
    Searched defs:package (Results 76 - 100 of 462) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/libs/androidfw/include/androidfw/
AssetManager2.h 79 const char* package = nullptr; member in struct:android::AssetManager2::ResourceName
109 // Returns the DynamicRefTable for the given package ID.
128 // ('android' package, other libraries) will be excluded from the list.
137 // ('android' package, other libraries) will be excluded from the list.
186 // `resource_name` must be of the form '[package:][type/]entry'.
187 // If no package is specified in `resource_name`, then `fallback_package` is used as the package.
267 // Assigns package IDs to all shared library ApkAssets.
294 // Represents an single package.
296 // A pointer to the immutable, loaded package info
    [all...]
  /frameworks/base/tools/aapt2/
ResourceTable.h 160 // The package ID (the PP in 0xPPTTEEEE).
229 ResourceTablePackage* package; member in struct:aapt::ResourceTable::SearchResult
236 // Returns the package struct with the given name, or nullptr if such a package does not
237 // exist. The empty string is a valid package and typically is used to represent the
238 // 'current' package before it is known to the ResourceTable.
245 // Attempts to find a package having the specified name and ID. If not found, a new package
260 // The list of packages in this table, sorted alphabetically by package name and increasing
261 // package ID (missing ID being the lowest)
    [all...]
Resource.h 37 * to the 'type' in package:type/entry.
84 std::string package; member in struct:aapt::ResourceName
104 android::StringPiece package; member in struct:aapt::ResourceNameRef
132 * PP: 8 bit package identifier. 0x01 is reserved for system
147 // Returns true if the ID is a valid ID or dynamic ID (package ID can be 0).
290 : package(p.to_string()), type(t), entry(e.to_string()) {}
293 int cmp = package.compare(other.package);
302 return !package.empty() && !entry.empty();
306 return std::tie(lhs.package, lhs.type, lhs.entry)
    [all...]
ResourceTable.cpp 68 for (auto& package : packages) {
69 if (package->id && package->id.value() == id) {
70 return package.get();
77 ResourceTablePackage* package = FindOrCreatePackage(name); local
78 if (id && !package->id) {
79 package->id = id;
80 return package;
83 if (id && package->id && package->id.value() != id.value())
401 ResourceTablePackage* package = FindOrCreatePackage(name.package); local
487 ResourceTablePackage* package = FindOrCreatePackage(name.package); local
557 ResourceTablePackage* package = FindOrCreatePackage(name.package); local
582 ResourceTablePackage* package = FindOrCreatePackage(name.package); local
596 ResourceTablePackage* package = FindPackage(name.package); local
    [all...]
  /frameworks/base/tools/aapt2/format/binary/
BinaryResourceParser.cpp 174 diag_->Error(DiagMessage(source_) << "package ID is too big (" << package_id << ")");
178 // Extract the package name.
186 ResourceTablePackage* package = local
188 if (!package) {
190 << "incompatible package '" << package_name << "' with ID " << package_id);
195 // clear the type and key pool in case they were set from a previous package.
226 if (!ParseTypeSpec(package, parser.chunk())) {
232 if (!ParseType(package, parser.chunk())) {
263 bool BinaryResourceParser::ParseTypeSpec(const ResourceTablePackage* package,
305 ResourceId id(package->id.value_or_default(0x0), type_spec->id, static_cast<size_t>(i))
    [all...]
  /frameworks/base/tools/aapt2/test/
Builders.cpp 38 ResourceTablePackage* package = table_->CreatePackage(package_name, id); local
39 CHECK(package != nullptr);
227 doc->file.name.package = context->GetCompilationPackage();
  /frameworks/base/tools/aapt2/xml/
XmlDom.h 231 // An XML DOM visitor that will record the package name for a namespace prefix.
249 ExtractedPackage package; member in struct:aapt::xml::PackageAwareVisitor::PackageDecl
XmlPullParser.h 112 * Uses the current stack of namespaces to resolve the package. Eg:
120 * 'package' will be set to 'defaultPackage'.
182 ExtractedPackage package; member in struct:aapt::xml::XmlPullParser::PackageDecl
  /packages/services/Car/tools/emulator/
VehicleHalProto_pb2.py 16 package='emulator', variable
  /test/vts/proto/
AndroidSystemControlMessage_pb2.py 17 package='android.vts', variable
VtsReportMessage_pb2.py 16 package='android.vts', variable
    [all...]
  /bootable/recovery/uncrypt/
uncrypt.cpp 40 // file data to use as an update package.
218 // Parse uncrypt_file to find the update package name.
466 LOG(INFO) << "update package is \"" << input_path << "\"";
496 // can read the package without mounting the partition. On /cache
517 std::string package; local
519 if (!find_uncrypt_package(UNCRYPT_PATH_FILE, &package)) {
525 input_path = package.c_str();
604 PLOG(ERROR) << "failed to set wipe package: " << err;
615 fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename);
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 293 xe::TestGroup* package = root.createGroup(packageName.c_str(), ""); local
295 readCaseList(package, item.getPath());
  /external/flatbuffers/src/
idl_gen_grpc.cpp 216 std::string package() const { function in class:flatbuffers::FlatBufFile
  /external/selinux/checkpolicy/test/
dismod.c 742 package use the package reader, otherwise use the normal
750 sepol_module_package_t *package; local
751 if (sepol_module_package_create(&package)) {
755 package->policy = (sepol_policydb_t *) policy;
756 package->file_contexts = NULL;
758 sepol_module_package_read(package,
760 free(package->file_contexts);
  /external/tensorflow/tensorflow/java/src/gen/cc/
java_defs.h 78 static Type Class(const string& name, const string& package = "") {
79 return Type(Type::CLASS, name, package);
81 static Type Interface(const string& name, const string& package = "") {
82 return Type(Type::INTERFACE, name, package);
84 static Type Enum(const string& name, const string& package = "") {
85 return Type(Type::ENUM, name, package);
101 const string& package() const { return package_; } function in class:tensorflow::java::Type
136 Type(Kind kind, const string& name, const string& package = "")
137 : kind_(kind), name_(name), package_(package) {}
167 Annotation(const string& name, const string& package)
    [all...]
  /external/tensorflow/tensorflow/tools/proto_text/
gen_proto_text_functions_lib.cc 133 void AddNamespaceToCurrentSection(const string& package, bool open);
155 const string& package = fd->package(); local
156 for (size_t i = 0; i < package.size(); ++i) {
157 if (package[i] == '.') {
160 result += package[i];
676 void Generator::AddNamespaceToCurrentSection(const string& package, bool open) {
679 for (size_t i = 0; i < package.size(); ++i) {
680 if (package[i] == '.') {
683 parts.back() += package[i]
757 const string package = fd.package(); local
    [all...]
  /frameworks/base/cmds/statsd/src/packages/
UidMap.cpp 123 string package = string(String8(packageName[j]).string()); local
124 mMap[std::make_pair(uid[j], package)] = AppData(versionCode[j]);
330 str_set->insert(record.package);
332 (long long)Hash64(record.package));
334 proto->write(FIELD_TYPE_STRING | FIELD_ID_CHANGE_PACKAGE, record.package);
408 set<int32_t> UidMap::getAppUid(const string& package) const {
413 if (kv.first.second == package && !kv.second.deleted) {
  /system/tools/aidl/
aidl.cpp 73 const std::string& package,
86 if (!package.empty()) {
87 expected = package;
343 string package = interface.GetPackage(); local
347 // interface package name
351 string packageStr = package;
453 vector<string>* package, string* class_name) {
487 *package = Split(type.substr(0, dot_pos), ".");
490 package->clear();
519 vector<string> package; local
    [all...]
  /system/tools/hidl/
Coordinator.cpp 81 FQName package = FQName(root, "0.0", ""); local
83 if (packageRoot.root.inPackage(root) || package.inPackage(packageRoot.root.package())) {
85 *error = "ERROR: conflicting package roots " +
86 packageRoot.root.package() +
95 mPackageRoots.push_back({path, package});
247 // Any interface file implicitly imports its package's types.hal.
266 // If types.hal for this AST's package existed, make it's defined
289 if ((*ast)->package().package() != fqName.package() |
625 FQName package = fqName.getPackageAndVersion(); local
    [all...]
generateCpp.cpp 65 const FQName &package,
71 package.getPackageAndVersionComponents(&components, false /* cpp_compatible */);
156 const FQName &fqName, const std::string &package) {
198 out << "sm->registerForNotifications(\"" << package << "::" << interfaceName << "\",\n";
876 std::string package = iface->fqName().package() local
879 implementServiceManagerInteractions(out, iface->fqName(), package);
    [all...]
  /system/tools/hidl/utils/
FQName.cpp 51 const std::string &package,
57 mPackage(package),
104 // android.hardware.foo@1.0 (for package declaration and whole package import)
170 // package without version is not allowed.
178 const std::string& FQName::package() const { function in class:android::FQName
268 // package without version is not allowed.
345 return FQName(package(), version(), getInterfaceProxyName());
349 return FQName(package(), version(), getInterfaceAdapterName());
353 return FQName(package(), version(), getInterfaceStubName())
    [all...]
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 209 classes in a package, or only some of the fields or methods of a class.
214 \subsubsection{Package definitions\label{package-definitions}}
216 At the root of an annotation file is one or more package definitions.
217 A package definition describes a package containing a list of annotation
218 definitions and classes. A package definition also contains any
219 annotations on the package (such as those from a
220 \code{package-info.java} file).
225 \qquad \bnfnt{package-definition}+ \
    [all...]
  /external/e2fsprogs/debian/
rules 5 # invoked with the package root as the current directory.
43 dh_strip_args = -p$(1) --dbg-package=$(1)-dbg
44 dh_strip_args2 = -p$(1) --dbg-package=$(2)-dbg
46 # find the version for the main package, from changelog file
66 package ?= e2fsprogs macro
101 # docdir ?= ${maindir}/usr/share/doc/${package}
105 UDEB_NAME ?= $(package)-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
106 UDEB_PRIORITY ?= $(shell grep '^Package: e2fsprogs-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2)
110 BLKID_UDEB_PRIORITY ?= $(shell grep '^Package: libblkid1-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2)
113 UUID_UDEB_PRIORITY ?= $(shell grep '^Package: libuuid1-udeb' debian/control.in -A 10 | grep ^Priority: | cut -d ' ' -f 2
    [all...]
  /frameworks/base/libs/hwui/renderthread/
CanvasContext.cpp 679 char package[128]; local
683 if (!fgets(package, 128, file)) {
694 snprintf(path, 1024, "/data/data/%s/cache/rendertree_dump", package);

Completed in 1019 milliseconds

1 2 34 5 6 7 8 91011>>