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

1 2 3 4 5

  /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/icu/icu4c/source/tools/toolutil/
pkg_icu.h 16 const char *sourcePath, const char *addList, icu::Package *pkg,
19 U_CAPI icu::Package * U_EXPORT2
20 readList(const char *filesPath, const char *listname, UBool readContents, icu::Package *listPkgIn);
pkg_icu.cpp 12 #include "package.h"
55 * If the listname ends with ".dat", then read the ICU .dat package file.
58 U_CAPI Package * U_EXPORT2
59 readList(const char *filesPath, const char *listname, UBool readContents, Package *listPkgIn) {
60 Package *listPkg = listPkgIn;
70 listPkg=new Package();
137 // read the ICU .dat package
154 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) {
155 Package *addListPkg = NULL;
159 pkg = new Package;
    [all...]
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...]
  /art/test/024-illegal-access/src/
CheckInstanceof.java 22 if (obj instanceof otherpkg.Package)
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 17 package libcore.java.lang;
25 private static final List<Package> packages = Arrays.asList(Package.getPackages());
28 // Package annotations aren't supported, but pre-ICS we crashed.
34 Package libcoreJavaLang = Package.getPackage("libcore.java.lang");
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_icu.h 16 const char *sourcePath, const char *addList, U_NAMESPACE_QUALIFIER Package *pkg,
19 U_CAPI U_NAMESPACE_QUALIFIER Package * U_EXPORT2
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...]
pkg_icu.cpp 12 #include "package.h"
55 * If the listname ends with ".dat", then read the ICU .dat package file.
58 U_CAPI Package * U_EXPORT2
60 Package *listPkg;
69 listPkg=new Package();
135 // read the ICU .dat package
150 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) {
151 Package *addListPkg = NULL;
155 pkg = new Package;
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...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CommandList.java 17 package com.android.inputmethod.latin.dicttool;
27 Dicttool.addCommand("package", Package.Packager.class);
28 Dicttool.addCommand("unpackage", Package.Unpackager.class);
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";
  /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...]
  /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/libart/src/main/java/java/lang/
ClassLoader.java 33 package java.lang;
92 private Map<String, Package> packages = new HashMap<String, Package>();
586 * Returns the package with the specified name. Package information is
590 * the name of the package to find.
591 * @return the package with the requested name; {@code null} if the package
594 protected Package getPackage(String name) {
605 protected Package[] getPackages()
    [all...]
  /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...]
  /external/llvm/utils/release/
test-release.sh 177 # Final package name.
178 Package=clang+llvm-$Release
180 Package=$Package-$RC
182 Package=$Package-$Triple
385 # Create a package of the release binaries.
389 mv llvmCore-$Release-$RC.install $Package
391 tar cfz $BuildDir/$Package.tar.gz $Package
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
BaseDexClassLoader.java 17 package dalvik.system;
81 * Returns package information for the given package.
87 * a {@code Package} object the first time it is being requested
89 * Package} object is then put into the {@code ClassLoader}'s
90 * package cache, so we see the same one next time. We don't
91 * create {@code Package} objects for {@code null} arguments or
92 * for the default package.
95 * {@code Package} objects representing the same package: It ca
    [all...]
  /external/icu/icu4c/source/tools/icupkg/
icupkg.cpp 16 * This tool operates on ICU data (.dat package) files.
37 #include "package.h"
68 "Read the input ICU .dat package file, modify it according to the options,\n"
70 "and optionally write the resulting ICU .dat package to the output file.\n"
72 "An ICU .dat package is written if items are removed or added,\n"
77 "If the input filename is \"new\" then an empty package is created.\n"
86 "outfilename) for a non-package ICU data file.\n"
107 "\t-a list or --add list add items to the package\n"
108 "\t-r list or --remove list remove items from the package\n"
109 "\t-x list or --extract list extract items from the package\n
    [all...]
  /build/core/tasks/tools/
package-modules.mk 0 # Package up modules to a zip file.
51 @echo "Package $@"
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSetting.java 17 package com.android.server.pm;
25 * Settings data for a particular package we know about.
29 PackageParser.Package pkg;
43 * Note that it keeps the same PackageParser.Package instance.
  /frameworks/base/tools/aapt/
Android.mk 36 Package.cpp \

Completed in 479 milliseconds

1 2 3 4 5