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

1 2 3 4 5

  /dalvik/tests/024-illegal-access/src/otherpkg/
Package.java 17 package otherpkg;
20 * Package-scope class (public here).
22 public class Package {
  /dalvik/tests/024-illegal-access/src2/otherpkg/
Package.java 17 package otherpkg;
20 * Package-scope class.
22 class Package {
  /external/icu4c/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);
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
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
152 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) {
153 Package *addListPkg = NULL;
157 pkg = new Package;
    [all...]
  /dalvik/tests/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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Version.java 0 package ch.ethz.ssh2;
12 Package pkg = Version.class.getPackage();
18 Package pkg = Version.class.getPackage();
  /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);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
PackageTest.java 17 package org.apache.harmony.luni.tests.java.lang;
32 Package getTestPackage(String resourceJar, String className)
34 Support_Resources.copyFile(resources, "Package", resourceJar);
35 URL resourceURL = new URL("file:/" + resPath + "/Package/"
57 * @tests java.lang.Package#getImplementationVendor()
58 * @tests java.lang.Package#getImplementationVersion()
59 * @tests java.lang.Package#getSpecificationTitle()
60 * @tests java.lang.Package#getSpecificationVendor()
61 * @tests java.lang.Package#getSpecificationVersion()
62 * @tests java.lang.Package#getImplementationTitle(
    [all...]
  /external/openfst/src/include/fst/script/
arg-packs.h 62 struct Package {
73 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
88 struct Package<T1, T2, T3, T4, T5, T6, T7, T8, none_type> {
98 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
112 struct Package<T1, T2, T3, T4, T5, T6, T7,
122 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6,
135 struct Package<T1, T2, T3, T4, T5, T6, none_type,
144 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5, T6 arg6) :
155 struct Package<T1, T2, T3, T4, T5, none_type, none_type,
163 Package(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5)
    [all...]
concat.h 27 typedef args::Package<MutableFstClass*, const FstClass&> ConcatArgs1;
28 typedef args::Package<const FstClass&, MutableFstClass*> ConcatArgs2;
closure.h 27 typedef args::Package<MutableFstClass*, const ClosureType> ClosureArgs;
project.h 27 typedef args::Package<MutableFstClass*, ProjectType> ProjectArgs;
arcsort.h 29 typedef args::Package<MutableFstClass*, const ArcSortType> ArcSortArgs;
decode.h 29 typedef args::Package<MutableFstClass*, const string&> DecodeArgs;
epsnormalize.h 27 typedef args::Package<const FstClass&, MutableFstClass*,
minimize.h 27 typedef args::Package<MutableFstClass*, MutableFstClass*, float> MinimizeArgs;
relabel.h 34 typedef args::Package<MutableFstClass *,
48 typedef args::Package<MutableFstClass*,
70 typedef args::Package<MutableFstClass*, const SymbolTable*,
73 void Relabel(args::Package<MutableFstClass*, const SymbolTable*,
reverse.h 27 typedef args::Package<const FstClass &, MutableFstClass *> ReverseArgs;
synchronize.h 27 typedef args::Package<const FstClass &, MutableFstClass *> SynchronizeArgs;
union.h 27 typedef args::Package<MutableFstClass *, const FstClass &> UnionArgs;
  /frameworks/base/services/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/
ClassLoader.java 33 package java.lang;
92 private Map<String, Package> packages = new HashMap<String, Package>();
572 * Returns the package with the specified name. Package information is
576 * the name of the package to find.
577 * @return the package with the requested name; {@code null} if the package
580 protected Package getPackage(String name) {
591 protected Package[] getPackages()
    [all...]
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...]

Completed in 449 milliseconds

1 2 3 4 5