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

12 3 4 5 6 7 8 91011>>

  /external/lisa/libs/utils/android/workloads/
jankbench.py 89 # Package required by this workload
90 package = 'com.android.benchmark' variable in class:Jankbench
154 System.force_stop(self._target, self.package, clear=True)
244 System.force_stop(self._target, self.package, clear=True)
  /external/tensorflow/tensorflow/java/src/gen/cc/
op_generator.cc 51 const string package = local
54 output_dir + '/' + str_util::StringReplace(package, ".", "/", true);
  /frameworks/base/tools/aapt/
Symbol.h 35 android::String16 package; member in struct:Symbol
63 : package(p)
71 android::String8(package).string(),
78 return (package < rhs.package) || (type < rhs.type) || (name < rhs.name) || (id < rhs.id);
  /frameworks/base/tools/aapt2/link/
Linkers.h 38 // implicit package name of their compilation context. Understanding the package name of a resource
41 std::string package; member in struct:aapt::CallSite
  /frameworks/base/tools/aapt2/xml/
XmlUtil.cpp 31 std::string BuildPackageNamespace(const StringPiece& package, bool private_reference) {
33 result.append(package.data(), package.size());
41 StringPiece package = namespace_uri; local
42 package = package.substr(schema_prefix.size(), package.size() - schema_prefix.size());
43 if (package.empty()) {
46 return ExtractedPackage{package.to_string(), false /* is_private */};
50 StringPiece package = namespace_uri local
    [all...]
XmlUtil.h 35 // Result of extracting a package name from a namespace URI declaration.
37 // The name of the package. This can be the empty string, which means that the package
39 std::string package; member in struct:aapt::xml::ExtractedPackage
41 // True if the package's private namespace was declared. This means that private resources
46 return a.package == b.package && a.private_namespace == b.private_namespace;
51 // http://schemas.android.com/apk/res/<package> or
52 // http://schemas.android.com/apk/prv/res/<package>
55 // package name
    [all...]
  /libcore/support/src/test/java/tests/resources/Package/
hyts_package.jar 
  /system/libvintf/
MatrixInstance.cpp 47 const std::string& MatrixInstance::package() const { function in class:android::vintf::MatrixInstance
64 return package() == provided.getPackage() &&
ManifestInstance.cpp 45 const std::string& ManifestInstance::package() const { function in class:android::vintf::ManifestInstance
93 CHECK(success) << "Cannot remove package from '" << mFqInstance.string() << "'";
  /external/chromium-trace/catapult/devil/devil/android/sdk/
intent.py 31 flags=None, package=None):
36 activity: A string that, with |package|, can be used to specify the
44 package: A string that, with activity, can be used to specify the
57 self._package = package
62 self._component = '%s/%s' % (package, activity)
93 def package(self): member in class:Intent
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
intent.py 31 flags=None, package=None):
36 activity: A string that, with |package|, can be used to specify the
44 package: A string that, with activity, can be used to specify the
57 self._package = package
62 self._component = '%s/%s' % (package, activity)
93 def package(self): member in class:Intent
  /external/selinux/python/sepolgen/src/sepolgen/
module.py 142 """Generate the module and policy package filenames from
159 """Create a module package saved in a packagename from a
162 The create_module_package creates a module package saved in a
179 self.package(modname, packagename)
205 def package(self, modname, packagename): member in class:ModuleCompiler
  /frameworks/base/libs/androidfw/tests/
LoadedArsc_test.cpp 51 const LoadedPackage* package = local
53 ASSERT_THAT(package, NotNull());
54 EXPECT_THAT(package->GetPackageName(), StrEq("com.android.app"));
55 EXPECT_THAT(package->GetPackageId(), Eq(0x7f));
60 const TypeSpec* type_spec = package->GetTypeSpecByTypeIndex(type_index);
77 const LoadedPackage* package = local
79 ASSERT_THAT(package, NotNull());
84 const TypeSpec* type_spec = package->GetTypeSpecByTypeIndex(type_index);
161 const LoadedPackage* package = local
163 ASSERT_THAT(package, NotNull())
208 const auto& package = loaded_arsc->GetPackages()[0]; local
257 const LoadedPackage* package = loaded_arsc->GetPackageById(0x08u); local
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
module.py 142 """Generate the module and policy package filenames from
159 """Create a module package saved in a packagename from a
162 The create_module_package creates a module package saved in a
179 self.package(modname, packagename)
205 def package(self, modname, packagename): member in class:ModuleCompiler
  /system/tools/hidl/
AST.cpp 64 bool AST::setPackage(const char *package) {
65 if (!mPackage.setTo(package)) {
69 if (mPackage.package().empty()
78 FQName AST::package() const { function in class:android::AST
314 fqName.applyDefaults(mPackage.package(), mPackage.version());
317 // import a package
417 return FQName(mPackage.package(), mPackage.version(), path);
481 // Given a package and version???
487 if (fqName.package().empty() && fqName.version().empty()) {
508 CHECK(fqName.package().empty() && fqName.version().empty(
    [all...]
  /system/tools/hidl/c2hal/
main.cpp 34 "usage: %s [-g] [-o dir] -p package (-r interface-root)+ (header-filepath)+\n",
40 fprintf(stderr, " -p package\n");
43 fprintf(stderr, " -r package:path root "
52 auto package = val.substr(0, index); local
55 packageRootPaths[package] = path;
74 const std::string &package,
77 auto index = package.find_first_of('@');
80 auto packagePath = package.substr(0, index);
81 auto packageVersion = package.substr(index + 1);
102 CHECK(!outputPath.empty()) << "No package root path provided for: " << package
111 std::string package; local
    [all...]
  /bootable/recovery/tests/component/
verifier_test.cpp 42 std::string package = from_testdata_base(args[0]); variable
43 if (!memmap.MapFile(package)) {
44 FAIL() << "Failed to mmap " << package << ": " << strerror(errno) << "\n";
128 std::string package; local
129 ASSERT_TRUE(android::base::ReadFileToString(from_testdata_base("otasigned_v3.zip"), &package));
130 ASSERT_EQ(std::string("\xc0\x06\xff\xff\xd2\x06", 6), package.substr(package.size() - 6, 6));
133 package[package.size() - 5] = '\x05';
135 verify_file(reinterpret_cast<const unsigned char*>(package.data()), package.size()
147 std::string package; local
175 std::string package = "\\x50\\x4b\\x05\\x06"s + std::string(12, '\\0') + "\\xff\\xff\\xff\\xff\\x00\\x00"s; local
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
app_ui.py 28 def __init__(self, device, xml_node, package=None):
38 package: An optional package name for the app owning this node.
42 self._package = package
87 package = node.get('package') or '(no package)'
92 summary[package].add(label)
94 for package, labels in sorted(summary.iteritems()):
95 lines.append('- %s:' % package)
179 def package(self): member in class:AppUi
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/
app_ui.py 28 def __init__(self, device, xml_node, package=None):
38 package: An optional package name for the app owning this node.
42 self._package = package
87 package = node.get('package') or '(no package)'
92 summary[package].add(label)
94 for package, labels in sorted(summary.iteritems()):
95 lines.append('- %s:' % package)
179 def package(self): member in class:AppUi
    [all...]
  /external/nanopb-c/generator/google/protobuf/compiler/
plugin_pb2.py 16 package='google.protobuf.compiler', variable
  /external/nanopb-c/generator/proto/
plugin_pb2.py 12 package='google.protobuf.compiler', variable
  /external/protobuf/objectivec/
GPBDescriptor.h 74 @property(nonatomic, readonly, copy) NSString *package; variable
  /frameworks/base/cmds/statsd/src/packages/
UidMap.h 60 const string package; member in struct:android::os::statsd::ChangeRecord
65 ChangeRecord(const bool isDeletion, const int64_t timestampNs, const string& package,
69 package(package),
141 std::set<int32_t> getAppUid(const string& package) const;
159 // Maps uid and package name to application data.
  /frameworks/native/libs/binder/
IPermissionController.cpp 95 virtual int getPackageUid(const String16& package, int flags)
99 data.writeString16(package);
163 String16 package = data.readString16(); local
165 const int uid = getPackageUid(package, flags);
  /system/tools/aidl/tests/
fake_io_delegate.cpp 100 string package, class_name, rel_path; local
101 SplitPackageClass(canonical_name, &rel_path, &package, &class_name);
104 contents = StringPrintf("package %s;\nparcelable %s;",
105 package.c_str(), class_name.c_str());
107 contents = StringPrintf("package %s;\nparcelable %s cpp_header \"%s\";",
108 package.c_str(), class_name.c_str(),
115 string package, class_name, rel_path; local
116 SplitPackageClass(canonical_name, &rel_path, &package, &class_name);
117 string contents = StringPrintf("package %s;\ninterface %s { }",
118 package.c_str(), class_name.c_str())
124 string package, class_name, rel_path; local
    [all...]

Completed in 560 milliseconds

12 3 4 5 6 7 8 91011>>