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

1 2 3 4 5 6 7 8 91011>>

  /external/toolchain-utils/binary_search_tool/cros_pkg/
get_initial_items.sh 6 # part of the binary search triage on ChromeOS packages. This script
7 # generates the list of current ChromeOS packages, that is then used
13 cd ${GOOD_BUILD}/packages
switch_to_bad.sh 6 # part of the binary search triage on ChromeOS packages. This script
7 # copies a list of packages from the 'bad' build tree into the working
24 sudo cp ${BAD_BUILD}/packages/$pkg ${WORK_BUILD}/packages/$pkg
35 sudo cp ${BAD_BUILD}/packages/$o ${WORK_BUILD}/packages/$o
switch_to_good.sh 6 # part of the binary search triage on ChromeOS packages. This script
7 # copies a list of packages from the 'good' build tree into the working
24 sudo cp ${GOOD_BUILD}/packages/$pkg ${WORK_BUILD}/packages/$pkg
35 sudo cp ${GOOD_BUILD}/packages/$o ${WORK_BUILD}/packages/$o
  /build/make/core/
aapt_flags.mk 2 # aapt doesn't accept multiple --extra-packages flags.
3 # We have to collapse them into a single --extra-packages flag here.
6 ifeq ($(filter 0 1,$(words $(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))),)
7 aapt_flags := $(subst --extra-packages$(space),--extra-packages@,$(LOCAL_AAPT_FLAGS))
8 aapt_flags_extra_packages := $(patsubst --extra-packages@%,%,$(filter --extra-packages@%,$(aapt_flags)))
10 LOCAL_AAPT_FLAGS := $(filter-out --extra-packages@%,$(aapt_flags)) \
11 --extra-packages $(subst $(space),:,$(aapt_flags_extra_packages))
force_aapt2.mk 30 ifneq (,$(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))
31 LOCAL_AAPT_FLAGS := $(subst --extra-packages=,--extra-packages$(space), \
33 --extra-packages=android.support.% \
34 --extra-packages=androidx.%, \
35 $(subst --extra-packages$(space),--extra-packages=,$(LOCAL_AAPT_FLAGS))))
36 ifeq (,$(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))
  /cts/tests/tests/appwidget/packages/src/android/appwidget/cts/packages/
Launcher.java 16 package android.appwidget.cts.packages;
  /external/python/uritemplates/
setup.py 5 packages = [ variable
19 packages=packages, variable
  /cts/tests/tests/shortcutmanager/packages/src/android/content/pm/cts/shortcutmanager/packages/
Launcher.java 16 package android.content.pm.cts.shortcutmanager.packages;
  /development/python-packages/adb/
setup.py 26 packages=['adb'], variable
  /development/python-packages/fastboot/
setup.py 26 packages=['fastboot'], variable
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
setup.py 8 packages=['trace_event_impl'], variable
  /external/selinux/python/sepolicy/
setup.py 13 packages=[ variable
  /external/u-boot/tools/patman/
setup.py 8 packages=['patman'], variable
  /external/walt/pywalt/
setup.py 13 packages=find_packages(), variable
  /external/curl/
post_update.sh 6 rm $1/packages/Android/Android.mk
  /cts/hostsidetests/devicepolicy/app/ContentCaptureService/src/com/android/cts/devicepolicy/contentcaptureservice/
SimpleContentCaptureService.java 33 final ArraySet<String> packages = new ArraySet<>(); local
34 packages.add("com.android.cts.devicepolicy.contentcaptureapp");
35 packages.add("com.android.cts.devicepolicy.contentcaptureservice");
36 packages.add("com.android.cts.deviceandprofileowner");
38 setContentCaptureWhitelist(packages, null);
  /external/python/google-api-python-client/
setup.py 35 packages = [ variable
64 packages=packages, variable
  /external/autotest/server/site_tests/ssp_PackageInstall/
ssp_PackageInstall.py 14 """Tests that server tests can install packages inside containers."""
17 def install_os_packages(self, packages):
20 @param packages: OS packages to be installed.
22 for package in packages:
27 def install_python_packages(self, packages):
30 @param packages: Python packages to be installed.
32 for package in packages:
48 any of the given packages failed to be installed
    [all...]
  /external/grpc-grpc/test/distrib/csharp/test_codegen/
test_codegen.sh 20 ls -lR "../packages/Grpc.Tools.__GRPC_NUGET_VERSION__/tools"
31 PROTOC=../packages/Grpc.Tools.__GRPC_NUGET_VERSION__/tools/${PLATFORM_ARCH}/protoc
32 PLUGIN=../packages/Grpc.Tools.__GRPC_NUGET_VERSION__/tools/${PLATFORM_ARCH}/grpc_csharp_plugin
  /external/python/cpython3/Lib/test/
test_ttk_textonly.py 10 *runtktests.get_tests(gui=False, packages=['test_ttk']))
  /cts/hostsidetests/devicepolicy/app/ProfileOwner/src/com/android/cts/profileowner/
AppUsageObserverTest.java 32 final String[] packages = {"not.real.package.name"}; local
41 usm.registerAppUsageObserver(obsId, packages, 60, TimeUnit.SECONDS, pendingIntent);
44 usm.registerAppUsageObserver(obsId, packages, 59, TimeUnit.SECONDS, pendingIntent);
52 final String[] packages = {"not.real.package.name"}; local
61 usm.registerUsageSessionObserver(obsId, packages, Duration.ofSeconds(60),
65 usm.registerUsageSessionObserver(obsId, packages, Duration.ofSeconds(59),
74 final String[] packages = {"not.real.package.name"}; local
84 usm.registerAppUsageObserver(obsId, packages, 60, TimeUnit.MINUTES, pendingIntent);
87 usm.registerAppUsageObserver(OBSERVER_LIMIT, packages, 60, TimeUnit.MINUTES,
96 usm.registerUsageSessionObserver(obsId, packages, Duration.ofSeconds(60)
    [all...]
  /external/python/setuptools/setuptools/tests/
test_find_packages.py 92 packages = find_packages(self.dist_dir)
93 assert packages == ['pkg', 'pkg.subpkg']
97 packages = find_packages(self.dist_dir, exclude=('pkg.*',))
98 assert packages == ['pkg']
102 Excluding a parent package should not exclude child packages as well.
106 packages = find_packages(self.dist_dir, exclude=('pkg',))
107 assert packages == ['pkg.subpkg']
111 If include is specified, other packages should be excluded.
116 packages = find_packages(self.dist_dir, include=['other_pkg'])
117 assert packages == ['other_pkg'
    [all...]
  /external/python/setuptools/tests/
test_pypi.py 25 "packages from Pypi.")
29 """Collect the name of the top packages on Pypi."""
30 packages = rpc_pypi('top_packages')
31 return packages[:limit]
74 Pypi will be queried to get the current list of top packages.
78 packages = get_top_packages(TOP)
79 packages = [name for name, downloads in packages]
81 packages = metafunc.config.option.package_name
82 metafunc.parametrize("package_name", packages)
    [all...]
  /external/cmockery/cmockery_0_1_2/
Makefile.am 108 rpm: dist-gzip packages/rpm.sh packages/rpm/rpm.spec
109 @cd packages && ./rpm.sh ${PACKAGE} ${VERSION}
111 deb: dist-gzip packages/deb.sh packages/deb/*
112 @cd packages && ./deb.sh ${PACKAGE} ${VERSION}
117 EXTRA_DIST = packages/rpm.sh packages/rpm/rpm.spec packages/deb.sh packages/deb
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
AmUtils.java 49 String[] packages = output.split("\\n"); local
50 for (int i = packages.length -1; i >=0; --i) {
51 if (packages[i].equals(packageName)) {

Completed in 5089 milliseconds

1 2 3 4 5 6 7 8 91011>>