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

1 2 3 4 5 6 7 8 91011>>

  /external/protobuf/more_tests/
Makefile 1 # Additional tests to run before releasing a package.
4 # make PACKAGE=/path/to/protobuf-VERSION.tar.gz
20 # Unpack the package into src, then install it into target.
21 PACKAGE=protobuf.tar.gz
23 src: $(PACKAGE)
24 tar zxvf $(PACKAGE)
25 mv `basename $(PACKAGE) .tar.gz` src
  /cts/tools/signature-tools/src/signature/converter/
Visibility.java 17 package signature.converter;
26 * <li><code>PACKAGE</code> the public, protected and package visible classes
35 PUBLIC, PROTECTED, PACKAGE, PRIVATE;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
SettingsConstant.java 17 package com.android.tv.settings;
24 public static final String PACKAGE = "com.android.tv.settings";
  /external/dhcpcd/
defs.h 30 #define PACKAGE "dhcpcd"
34 # define CONFIG SYSCONFDIR "/" PACKAGE ".conf"
37 # define SCRIPT LIBEXECDIR "/" PACKAGE "-run-hooks"
40 # define DUID SYSCONFDIR "/" PACKAGE ".duid"
43 # define LEASEFILE DBDIR "/" PACKAGE "-%s.lease"
46 # define PIDFILE RUNDIR "/" PACKAGE "%s%s.pid"
49 # define CONTROLSOCKET RUNDIR "/" PACKAGE ".sock"
  /external/selinux/policycoreutils/load_policy/
load_policy.c 16 #ifndef PACKAGE
17 #define PACKAGE "policycoreutils" /* the name of this package lang translation */
32 bindtextdomain(PACKAGE, LOCALEDIR);
33 textdomain(PACKAGE);
  /cts/tests/tests/app/src/android/app/cts/
LauncherActivity_IconResizerTest.java 17 package android.app.cts;
30 private static final String PACKAGE = "com.android.cts.app.stub";
34 super(PACKAGE, LauncherActivityStub.class);
  /frameworks/base/core/java/com/android/internal/annotations/
VisibleForTesting.java 17 package com.android.internal.annotations;
27 * visibility should have been if it had not been made public or package-private for testing.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
40 PACKAGE,
46 * Intended visibility if the element had not been made public or package-private for testing.
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/annotations/
VisibleForTesting.java 17 package com.android.tools.layoutlib.annotations;
27 * visibility should have been if it had not been made public or package-private for testing.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
40 PACKAGE,
46 * Intended visibility if the element had not been made public or package-private for testing.
  /frameworks/compile/mclinker/include/mcld/Config/
Config.h 32 /* Name of package */
33 #define PACKAGE "mclinker"
36 /* Version number of package */
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/annotations/
VisibleForTesting.java 17 package com.android.setupwizardlib.annotations;
27 * visibility should have been if it had not been made public or package-private for testing.
33 * Intended visibility if the element had not been made public or package-private for
39 /** The element should be considered package-private. */
40 PACKAGE,
46 * Intended visibility if the element had not been made public or package-private for testing.
  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 18 package java.lang.annotation;
57 * Package declaration.
59 PACKAGE
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
PackageDeviceInfo.java 16 package com.android.compatibility.common.deviceinfo;
29 private static final String PACKAGE = "package";
38 startArray(PACKAGE);
48 endArray(); // Package
  /cts/suite/cts/deviceTests/jank2/src/android/cts/jank/ui/
CtsDeviceJankUi.java 15 package android.cts.jank.ui;
34 private final static String PACKAGE = "com.android.cts.ui";
35 private final static String CLASS = PACKAGE + ".ScrollingActivity";
42 intent.setComponent(new ComponentName(PACKAGE, CLASS));
46 getUiDevice().wait(Until.hasObject(By.pkg(PACKAGE)), DEFAULT_ANIMATION_TIME);
  /build/tools/
java-layers.py 14 sys.stderr.write("Prints a warning when an unknown package is encountered\n")
20 sys.stderr.write(" - Lines consisting of two java package names: The\n")
21 sys.stderr.write(" first package listed must not contain any references\n")
22 sys.stderr.write(" to any classes present in the second package, or any\n")
24 sys.stderr.write(" - Lines consisting of one java package name: The\n")
25 sys.stderr.write(" packge is assumed to be a high level package and\n")
28 sys.stderr.write(" package name: The package is considered a low level\n")
29 sys.stderr.write(" package and may not import any of the other packages\n")
32 sys.stderr.write(" package name: The package is considered \'legacy\'\n"
231 sys.stderr.write("%s: Illegal import in package '%s' of '%s'\\n" namespace
    [all...]
  /cts/common/host-side/manifest-generator/tests/src/com/android/compatibility/common/generator/
ManifestGeneratorTest.java 17 package com.android.compatibility.common.generator;
30 private static final String PACKAGE = "test.package";
31 private static final String INSTRUMENT = "test.package.TestInstrument";
34 + "package=\"test.package\">\r\n"
40 + " <instrumentation android:name=\"test.package.TestInstrument\" "
41 + "android:targetPackage=\"test.package\" />\r\n"
47 private static final String ACTIVITY_A = "test.package.ActivityA";
48 private static final String ACTIVITY_B = "test.package.ActivityB"
    [all...]
  /cts/suite/cts/hostTests/jank/app/src/com/android/cts/jank/opengl/
CtsDeviceJankOpenGl.java 15 package com.android.cts.jank.opengl;
24 private final static String PACKAGE = "com.android.cts.opengl";
26 PACKAGE + "/" + PACKAGE + ".primitive.GLPrimitiveActivity";
70 final String stopCommand = String.format(STOP_CMD, PACKAGE);
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/opengl/
CtsHostJankOpenGl.java 14 package com.android.cts.jank.opengl;
24 private static final String PACKAGE = "com.android.cts.jank.opengl";
26 private static final String DEVICE_CLASS = PACKAGE + ".CtsDeviceJankOpenGl";
  /cts/tests/tests/telecom/src/android/telecom/cts/
BasicInCallServiceTest.java 17 package android.telecom.cts;
48 TestUtils.setDefaultDialer(getInstrumentation(), TestUtils.PACKAGE);
SimCallManagerTest.java 17 package android.telecom.cts;
22 import static android.telecom.cts.TestUtils.PACKAGE;
43 new PhoneAccountHandle(new ComponentName(PACKAGE, COMPONENT), ACCOUNT_ID);
113 TestUtils.setDefaultDialer(getInstrumentation(), TestUtils.PACKAGE);
114 assertEquals(TestUtils.PACKAGE, mTelecomManager.getDefaultDialerPackage());
  /cts/tests/tests/telecom2/src/android/telecom/cts/
DefaultDialerOperationsNoPermissionsTest.java 17 package android.telecom.cts;
40 TestUtils.PACKAGE = mContext.getPackageName();
154 TestUtils.setDefaultDialer(getInstrumentation(), TestUtils.PACKAGE);
  /cts/tools/dasm/src/java_cup/
sym.java 7 package java_cup;
32 static final int PACKAGE = 2;
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
ActivityAnimations.java 17 package com.example.android.activityanim;
47 private static final String PACKAGE = "com.example.android.activityanim";
118 putExtra(PACKAGE + ".orientation", orientation).
119 putExtra(PACKAGE + ".resourceId", info.resourceId).
120 putExtra(PACKAGE + ".left", screenLocation[0]).
121 putExtra(PACKAGE + ".top", screenLocation[1]).
122 putExtra(PACKAGE + ".width", v.getWidth()).
123 putExtra(PACKAGE + ".height", v.getHeight()).
124 putExtra(PACKAGE + ".description", info.description);
  /external/droiddriver/src/io/appium/droiddriver/finders/
Attribute.java 17 package io.appium.droiddriver.finders;
29 PACKAGE("package"),
  /external/elfutils/src/
config.h 46 /* Name of package */
47 #define PACKAGE "elfutils"
49 /* Define to the address where bug reports for this package should be sent. */
52 /* Define to the full name of this package. */
55 /* Define to the full name and version of this package. */
58 /* Define to the one symbol short name of this package. */
61 /* Define to the home page for this package. */
64 /* Define to the version of this package. */
92 /* Version number of package */
  /external/flac/
config.h 97 /* Name of package */
98 #define PACKAGE "flac"
100 /* Define to the address where bug reports for this package should be sent. */
103 /* Define to the full name of this package. */
106 /* Define to the full name and version of this package. */
109 /* Define to the one symbol short name of this package. */
112 /* Define to the version of this package. */
125 /* Version number of package */

Completed in 834 milliseconds

1 2 3 4 5 6 7 8 91011>>