HomeSort by relevance Sort by last modified time
    Searched defs:Package (Results 1 - 25 of 48) sorted by null

1 2

  /art/test/024-illegal-access/src/otherpkg/
Package.java 17 package otherpkg;
20 * Package-scope class (public here).
22 public class Package {
  /art/test/024-illegal-access/src2/otherpkg/
Package.java 17 package otherpkg;
20 * Package-scope class.
22 class Package {
  /external/chromium_org/chrome/browser/component_updater/
update_response.h 35 // <package name="component.crx"
55 // The diff data members correspond to the differential update package, if
62 struct Package {
63 Package();
64 ~Package();
84 std::vector<Package> packages;
update_response.cc 33 UpdateResponse::Result::Manifest::Package::Package() : size(0), sizediff(0) {}
34 UpdateResponse::Result::Manifest::Package::~Package() {}
103 // Parses the <package> tag.
104 bool ParsePackageTag(xmlNode* package,
107 UpdateResponse::Result::Manifest::Package p;
108 p.name = GetAttribute(package, "name");
110 *error = "Missing name for package.";
114 p.namediff = GetAttribute(package, "namediff")
176 std::vector<xmlNode*> package = GetChildren(packages[0], "package"); local
    [all...]
component_updater_service.cc 733 // Assume one and only one package per component.
744 typedef UpdateResponse::Result::Manifest::Package Package;
745 const Package& package(it->manifest.packages[0]);
746 crx->next_fp = package.fingerprint;
748 // Resolve the urls by combining the base urls with the package names.
750 const GURL url(it->crx_urls[i].Resolve(package.name));
755 const GURL url(it->crx_diffurls[i].Resolve(package.namediff));
794 // Called when the CRX package has been downloaded to a temporary location
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.h 8 * file name: package.h
16 * Read, modify, and write ICU .dat data package files.
26 // .dat package file representation ---------------------------------------- ***
43 class U_TOOLUTIL_API Package {
47 * Prepare this object for a new, empty package.
49 Package();
52 ~Package();
55 * Read an existing .dat package file.
61 * Write a .dat package file with the items in this object.
63 * The package becomes unusable
    [all...]
package.cpp 8 * file name: package.cpp
16 * Read, modify, and write ICU .dat data package files.
33 #include "package.h"
186 fprintf(stderr, "icupkg: \"%s\" is not recognized as a package filename (must end with .dat)\n",
192 fprintf(stderr, "icupkg: the package name \"%s\" is too long (>=%ld)\n",
371 // .dat package file representation ---------------------------------------- ***
386 Package::Package() {
404 // create a header for an empty package
420 Package::~Package()
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
package.h 8 * file name: package.h
16 * Read, modify, and write ICU .dat data package files.
26 // .dat package file representation ---------------------------------------- ***
43 class U_TOOLUTIL_API Package {
47 * Prepare this object for a new, empty package.
49 Package();
52 ~Package();
55 * Uses the prefix of the first entry of the package in readPackage(),
56 * rather than the package basename.
69 * Read an existing .dat package file
    [all...]
package.cpp 8 * file name: package.cpp
16 * Read, modify, and write ICU .dat data package files.
33 #include "package.h"
186 fprintf(stderr, "icupkg: \"%s\" is not recognized as a package filename (must end with .dat)\n",
192 fprintf(stderr, "icupkg: the package name \"%s\" is too long (>=%ld)\n",
372 // .dat package file representation ---------------------------------------- ***
387 Package::Package()
407 // create a header for an empty package
423 Package::~Package()
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 18 package com.android.server;
40 private final WeakHashMap<String, Package> mPackages =
41 new WeakHashMap<String, Package>();
44 public final static class Package {
49 public Package(Context c) {
100 Package pkg = mPackages.get(packageName);
122 pkg = new Package(context);
  /libcore/luni/src/main/java/java/lang/
Package.java 33 package java.lang;
41 * Contains information about a Java package. This includes implementation and
46 * from the same package share a {@code Package} instance.
51 public class Package implements AnnotatedElement {
63 Package(String name, String specTitle, String specVersion, String specVendor,
77 * this package, if present.
95 * Returns an array of this package's annotations.
99 Class<?> c = Class.forName(getName() + ".package-info");
107 * Returns an array of this package's declared annotations. Package annotations aren'
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Package.java 17 package com.android.inputmethod.latin.dicttool;
28 public class Package {
29 private Package() {
34 public static final String COMMAND = "package";
43 return COMMAND + " <src_filename> <dst_filename>: Package a file for distribution";
  /frameworks/base/tools/apilint/
apilint.py 142 class Package():
148 self.name = raw[raw.index("package")+1]
172 if raw.startswith("package"):
173 pkg = Package(raw, blame)
299 All action values must be scoped by package and match name:
300 package android.foo {
329 All extra values must be scoped by package and match name:
330 package android.foo {
581 """Catch package layering violations.
612 warn(clazz, f, "Field type violates package layering"
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 92 // The type of package to build.
100 class Package;
125 const String16& package,
131 const String16& package,
142 const String16& package,
152 const String16& package,
164 bool hasBagOrEntry(const String16& package,
168 bool hasBagOrEntry(const String16& package,
177 bool appendComment(const String16& package,
183 bool appendTypeComment(const String16& package,
    [all...]
ResourceTable.cpp 144 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
145 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
247 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
249 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
1744 sp<Package> package = new Package(mAssetsPackage, packageId); local
2012 String16 package, type, name; local
2147 String16 package, type, name; local
    [all...]
  /frameworks/base/tools/aidl/
Type.h 28 Type(const string& package, const string& name,
33 inline string Package() const { return m_package; }
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
  /external/clang/include/clang/AST/
DeclObjC.h     [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 17 package android.content.pm;
86 * Parser for package files (APKs) on disk. This supports apps packaged either
95 * <li>All APKs must have the exact same package name, version code, and signing
199 final Package owner;
210 ParsePackageItemArgs(Package _owner, String[] _outError,
229 ParseComponentArgs(Package _owner, String[] _outError,
242 * Lightweight parsed details about a single package.
254 * Path where this package was found on disk. For monolithic packages
327 /** If set to true, we will only allow package files that exactly match
328 * the DTD. Otherwise, we try to get as much from the package as w
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 365 ALOGE("idmap: target package ID is invalid (%02x)", targetPackageId);
2859 const Package* package; member in struct:android::ResTable::Entry
2871 const Package* const package; member in struct:android::ResTable::Type
2892 const ResTable_package* const package; member in struct:android::ResTable::Package
4661 String16 package, type, name; local
4826 String16 package, type, name; local
5636 Package* package = new Package(this, header, pkg); local
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.2.0/
sdklib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.0/
sdklib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.2/
sdklib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.5.0/
sdklib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.5.1/
sdklib-22.5.1.jar 

Completed in 382 milliseconds

1 2