Searched defs:pkg (Results 1 - 6 of 6) sorted by relevance

/development/build/tools/
H A Dsdk_repo.mk15 define sdk-repo-pkg-zip
30 define mk-sdk-repo-pkg-1
31 $(call sdk-repo-pkg-zip,$(1),$(2),$(3)): $(2)
34 zip -9rq ../$(notdir $(call sdk-repo-pkg-zip,$(1),$(2),$(3))) $(3)/*
35 $(call dist-for-goals, sdk_repo, $(call sdk-repo-pkg-zip,$(1),$(2),$(3)))
37 $(call sdk-repo-pkg-zip,$(1),$(2),$(3)):$(notdir $(call sdk-repo-pkg-zip,$(1),$(2),$(3)))
51 define mk-sdk-repo-pkg-2
52 $(call sdk-repo-pkg-zip,$(1),$(2),$(3)): $(2)
55 zip -9rq ../../$(notdir $(call sdk-repo-pkg
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/
H A DApiDemos.java121 protected Intent activityIntent(String pkg, String componentName) { argument
123 result.setClassName(pkg, componentName);
/development/samples/Support13Demos/src/com/example/android/supportv13/
H A DSupport13Demos.java121 protected Intent activityIntent(String pkg, String componentName) { argument
123 result.setClassName(pkg, componentName);
/development/samples/Support4Demos/src/com/example/android/supportv4/
H A DSupport4Demos.java121 protected Intent activityIntent(String pkg, String componentName) { argument
123 result.setClassName(pkg, componentName);
/development/apps/Development/src/com/android/development/
H A DBadBehaviorActivity.java78 public boolean activityStarting(Intent intent, String pkg) { argument
95 public boolean activityResuming(String pkg) { argument
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkey.java250 * @param pkg The package name.
251 * @return Returns true if we should run against pkg.
253 private boolean checkEnteringPackage(String pkg) { argument
255 if (mInvalidPackages.contains(pkg)) {
259 if (!mValidPackages.contains(pkg)) {
270 public boolean activityStarting(Intent intent, String pkg) { argument
271 boolean allow = checkEnteringPackage(pkg) || (DEBUG_ALLOW_ANY_STARTS != 0);
281 + intent + " in package " + pkg);
284 currentPackage = pkg;
289 public boolean activityResuming(String pkg) { argument
[all...]

Completed in 450 milliseconds