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

1 2 3 4 5 6 7 8 91011>>

  /art/test/435-new-instance/src/pkg/
ProtectedClass.java 17 package pkg; package
  /art/test/800-smali/src/pkg/
ProtectedClass.java 17 package pkg; package
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/my.pkg/main/
main.go 2 import "my.pkg"
4 println(pkg.Text)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/my.pkg/main/
main.go 2 import "my.pkg"
4 println(pkg.Text)
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/my.pkg/
pkg.go 1 package pkg package
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/my.pkg/
pkg.go 1 package pkg package
  /cts/tests/framework/base/activitymanager/appPrereleaseSdk/fake-framework/src/android/content/
ComponentName.java 20 public ComponentName(String pkg, String cls) {}
  /external/annotation-tools/annotation-file-utilities/tests/
Package.java 1 package pkg.name.here;
  /prebuilts/go/darwin-x86/src/
cmp.bash 14 # "go build <pkg>" assembly output for each package
31 for pkg in `go list std`; do
32 echo $pkg
33 DIR=$GOROOT/src/$pkg
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
45 for pkg in `go list std`; do
46 echo $pkg
47 DIR=$GOROOT/src/$pkg
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
54 for pkg in `go list std`; d
    [all...]
  /prebuilts/go/linux-x86/src/
cmp.bash 14 # "go build <pkg>" assembly output for each package
31 for pkg in `go list std`; do
32 echo $pkg
33 DIR=$GOROOT/src/$pkg
34 go build -gcflags "$FLAGS1 -S" -o /dev/null $pkg &> $DIR/old.txt
45 for pkg in `go list std`; do
46 echo $pkg
47 DIR=$GOROOT/src/$pkg
48 go build -gcflags "$FLAGS2 -S" -o /dev/null $pkg &> $DIR/new.txt
54 for pkg in `go list std`; d
    [all...]
  /frameworks/base/core/java/android/nfc/
INfcAdapterExtras.aidl 26 Bundle open(in String pkg, IBinder b);
27 Bundle close(in String pkg, IBinder b);
28 Bundle transceive(in String pkg, in byte[] data_in);
29 int getCardEmulationRoute(in String pkg);
30 void setCardEmulationRoute(in String pkg, int route);
31 void authenticate(in String pkg, in byte[] token);
32 String getDriverName(in String pkg);
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
DumpsysPackageReceiverTest.java 39 PackageInfo pkg = p.getPackages().get("com.android.soundrecorder"); local
40 assertEquals("com.android.soundrecorder", pkg.getPackageName());
41 assertTrue(pkg.isSystemApp());
42 assertFalse(pkg.isUpdatedSystemApp());
43 assertEquals("3.1.36 (88)", pkg.getVersionName());
59 PackageInfo pkg = p.getPackages().get("com.android.soundrecorder"); local
60 assertNotNull("failed to parse package data", pkg);
61 assertEquals("com.android.soundrecorder", pkg.getPackageName());
62 assertTrue(pkg.isSystemApp());
63 assertFalse(pkg.isUpdatedSystemApp())
81 PackageInfo pkg = p.getPackages().get("com.android.soundrecorder"); local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowComponentName.java 20 private String pkg; field in class:ShadowComponentName
23 public void __constructor__(String pkg, String cls) {
24 if (pkg == null) throw new NullPointerException("package name is null");
26 this.pkg = pkg;
30 public void __constructor__(Context pkg, String cls) {
32 this.pkg = pkg.getPackageName();
36 public void __constructor__(Context pkg, Class<?> cls) {
37 this.pkg = pkg.getPackageName()
56 String pkg = in.readString(); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
AndroidTestBaseUpdater.java 41 public void updatePackage(Package pkg) {
45 if (apkTargetsApiLevelLessThanOrEqualToOMR1(pkg)) {
46 prefixRequiredLibrary(pkg, ANDROID_TEST_BASE);
51 prefixImplicitDependency(pkg, ANDROID_TEST_RUNNER, ANDROID_TEST_BASE);
OrgApacheHttpLegacyUpdater.java 40 public void updatePackage(Package pkg) {
44 if (apkTargetsApiLevelLessThanOrEqualToOMR1(pkg)) {
45 prefixRequiredLibrary(pkg, ORG_APACHE_HTTP_LEGACY);
  /tools/metalava/src/test/java/com/android/tools/metalava/
ExtractAnnotationsTest.kt 31 package test.pkg;
77 warnings = "src/test/pkg/IntDefTest.java:11: error: This typedef annotation class should have @Retention(RetentionPolicy.SOURCE) [AnnotationExtraction:146]",
78 extractAnnotations = mapOf("test.pkg" to """
81 <item name="test.pkg.IntDefTest void setFlags(java.lang.Object, int) 1">
83 <val name="value" val="{test.pkg.IntDefTest.STYLE_NORMAL, test.pkg.IntDefTest.STYLE_NO_TITLE, test.pkg.IntDefTest.STYLE_NO_FRAME, test.pkg.IntDefTest.STYLE_NO_INPUT, 3, 4}" />
87 <item name="test.pkg.IntDefTest void setStyle(int, int) 0">
89 <val name="value" val="{test.pkg.IntDefTest.STYLE_NORMAL, test.pkg.IntDefTest.STYLE_NO_TITLE, test.pkg.IntDefTest.STYLE_NO_FRAME, t (…)
    [all...]
  /external/toolchain-utils/binary_search_tool/cros_pkg/
switch_to_bad.sh 22 while read pkg || [[ -n "$pkg" ]];
24 sudo cp ${BAD_BUILD}/packages/$pkg ${WORK_BUILD}/packages/$pkg
27 echo "Failed to copy ${pkg} to work build tree."
38 echo "Failed to copy ${pkg} to work build tree."
switch_to_good.sh 22 while read pkg || [[ -n "$pkg" ]];
24 sudo cp ${GOOD_BUILD}/packages/$pkg ${WORK_BUILD}/packages/$pkg
27 echo "Failed to copy ${pkg} to work build tree."
38 echo "Failed to copy ${pkg} to work build tree."
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageSharedLibraryUpdaterTest.java 27 PackageParser.Package pkg = before.build(); local
28 updaterSupplier.get().updatePackage(pkg);
29 after.check(pkg);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
CodeGenerationUtils.java 61 * @param pkg the package in which the file resides, like "com.laamella.parser"
64 public static Path fileInPackageAbsolutePath(String root, String pkg, String file) {
65 pkg = packageToPath(pkg);
66 return Paths.get(root, pkg, file).normalize();
69 public static Path fileInPackageAbsolutePath(Path root, String pkg, String file) {
70 return fileInPackageAbsolutePath(root.toString(), pkg, file);
77 public static Path fileInPackageRelativePath(String pkg, String file) {
78 pkg = packageToPath(pkg);
    [all...]
  /external/ImageMagick/Magick++/bin/
Magick++-config.in 44 pkg-config --cflags Magick++
47 pkg-config --cflags Magick++
50 pkg-config --cflags Magick++
53 pkg-config --libs Magick++
56 pkg-config --libs Magick++
  /external/ImageMagick/MagickCore/
MagickCore-config.in 41 pkg-config --cflags MagickCore
44 pkg-config --cflags MagickCore
47 pkg-config --cflags MagickCore
50 pkg-config --libs MagickCore
53 pkg-config --libs MagickCore
  /external/ImageMagick/MagickWand/
MagickWand-config.in 41 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
44 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
47 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --cflags MagickWand
50 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --libs MagickWand
53 PKG_CONFIG_PATH="@libdir@/pkgconfig" pkg-config --libs MagickWand
  /frameworks/base/services/core/java/com/android/server/notification/
RankingConfig.java 34 Collection<NotificationChannelGroup> getNotificationChannelGroups(String pkg,
36 void createNotificationChannelGroup(String pkg, int uid, NotificationChannelGroup group,
38 ParceledListSlice<NotificationChannelGroup> getNotificationChannelGroups(String pkg,
40 void createNotificationChannel(String pkg, int uid, NotificationChannel channel,
42 void updateNotificationChannel(String pkg, int uid, NotificationChannel channel, boolean fromUser);
43 NotificationChannel getNotificationChannel(String pkg, int uid, String channelId, boolean includeDeleted);
44 void deleteNotificationChannel(String pkg, int uid, String channelId);
45 void permanentlyDeleteNotificationChannel(String pkg, int uid, String channelId);
46 void permanentlyDeleteNotificationChannels(String pkg, int uid);
47 ParceledListSlice<NotificationChannel> getNotificationChannels(String pkg, int uid, boolean includeDeleted)
    [all...]
  /prebuilts/go/darwin-x86/test/safe/
nousesafe.go 1 // $G $D/pkg.go && pack grc pkg.a pkg.$A 2> /dev/null && rm pkg.$A && errchk $G -I . -u $D/main.go
2 // rm -f pkg.a

Completed in 850 milliseconds

1 2 3 4 5 6 7 8 91011>>