HomeSort by relevance Sort by last modified time
    Searched refs:packages (Results 126 - 150 of 364) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 64 cmd.distribution.packages = [pkg_dir]
81 cmd.distribution.packages = [pkg_dir]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 64 cmd.distribution.packages = [pkg_dir]
81 cmd.distribution.packages = [pkg_dir]
  /bootable/recovery/updater/
Android.mk 11 # Build a statically-linked binary to include in OTA packages
17 # needed only for OTA packages.)
  /external/chromium_org/android_webview/build/
resources_config.mk 24 android_webview_aapt_flags += --extra-packages org.chromium.ui
25 android_webview_aapt_flags += --extra-packages org.chromium.content
  /external/chromium_org/components/component_updater/
update_response.cc 134 result->manifest.packages.push_back(p);
170 // Get the <packages> node.
171 std::vector<xmlNode*> packages = GetChildren(manifest, "packages"); local
172 if (packages.empty()) {
173 *error = "Missing packages tag on manifest.";
178 std::vector<xmlNode*> package = GetChildren(packages[0], "package");
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 238 final String[] packages = pm.getPackagesForUid(reason); local
239 if (packages != null && packages.length == 1) {
240 return packages[0];
  /frameworks/webview/chromium/
package.mk 54 LOCAL_AAPT_FLAGS += --extra-packages com.android.webview.chromium
88 # packages. Only enable this when we are running jarjar.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 179 // Display the list of AndroidManifest packages in a selection dialog
315 TreeSet<String> packages = new TreeSet<String>(); local
325 packages.add(manifestData.getPackage());
328 return packages.toArray(new String[packages.size()]);
  /cts/tests/tests/security/src/android/security/cts/
ListeningPortsTest.java 206 String[] packages = pm.getPackagesForUid(uid); local
207 if (packages == null) {
210 return Arrays.asList(packages).toString();
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 70 final String[] packages = pm.getPackagesForUid(mUid); local
72 if (mAccount == null || mAuthTokenType == null || packages == null) {
119 for (String pkg : packages) {
  /sdk/bash_completion/
adb.bash 227 local serial i where cur packages
254 packages="$(
255 command adb ${args[@]} shell pm list packages '2>' /dev/null 2> /dev/null | tr -d '\r' | {
263 COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -W "${packages}" -- "${cur}") )
  /build/core/
base_rules.mk 433 # This is set by packages that are linking to other packages that export
448 # This is set by packages that contain instrumentation, allowing them to
495 # aapt doesn't accept multiple --extra-packages flags.
496 # We have to collapse them into a single --extra-packages flag here.
499 ifeq ($(filter 0 1,$(words $(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))),)
500 aapt_flags := $(subst --extra-packages$(space),--extra-packages@,$(LOCAL_AAPT_FLAGS))
501 aapt_flags_extra_packages := $(patsubst --extra-packages@%,%,$(filter --extra-packages@%,$(aapt_flags))
    [all...]
  /external/doclava/src/com/google/doclava/
Stubs.java 144 // packages contains all the notStrippable classes mapped by their containing packages
145 HashMap<PackageInfo, List<ClassInfo>> packages = new HashMap<PackageInfo, List<ClassInfo>>(); local
155 if (packages.containsKey(cl.containingPackage())) {
156 packages.get(cl.containingPackage()).add(cl);
160 packages.put(cl.containingPackage(), classes);
168 writeApi(apiWriter, packages, notStrippable);
174 writeKeepList(keepListWriter, packages, notStrippable);
816 // extract the set of packages, sort them by name, and write them out in that order
829 final PackageInfo[] packages = pkgs.toArray(new PackageInfo[pkgs.size()]) local
1032 final PackageInfo[] packages = allPackageClassMap.keySet().toArray(new PackageInfo[0]); local
1130 final PackageInfo[] packages = pkgs.toArray(new PackageInfo[pkgs.size()]); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
libxml2.spec 120 %{_libdir}/python*/site-packages/libxml2.py*
121 %{_libdir}/python*/site-packages/drv_libxml2.py*
122 %{_libdir}/python*/site-packages/libxml2mod*
  /build/tools/droiddoc/templates-ds/
customizations.cs 235 <div id="resize-packages-nav">
236 <div id="packages-nav" class="scroll-pane">
239 <?cs call:package_link_list(docs.packages) ?>
242 </div> <!-- end packages-nav -->
243 </div> <!-- end resize-packages -->
303 scrollIntoView("packages-nav");
  /external/emma/core/java12/com/vladium/emma/report/lcov/
ReportGenerator.java 103 * Visitor for top-level node; opens output file, enqueues packages.
121 // Enqueue packages
124 for (Iterator packages = item.getChildren(order); packages.hasNext(); )
126 final IItem pkg = (IItem) packages.next();
134 * Visitor for packages; enqueues source files contained by the package.
  /frameworks/base/core/java/com/android/internal/content/
PackageMonitor.java 33 * Helper class for monitoring the state of packages: adding, removing,
174 public boolean onHandleForceStop(Intent intent, String[] packages, int uid, boolean doit) {
184 public void onPackagesAvailable(String[] packages) {
187 public void onPackagesUnavailable(String[] packages) {
  /frameworks/base/media/java/android/service/media/
MediaBrowserService.java 393 final String[] packages = pm.getPackagesForUid(uid); local
394 final int N = packages.length;
396 if (packages[i].equals(pkg)) {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 115 String[] packages = nameAndHashcode[0].split("\\."); local
116 return packages[packages.length - 1];
  /external/protobuf/python/
setup.py 102 packages = [ 'google' ], variable
  /frameworks/base/services/core/java/com/android/server/
MmsServiceBroker.java 211 final String[] packages = getPackageManager().getPackagesForUid(Binder.getCallingUid()); local
212 if (packages != null && packages.length > 0) {
213 return packages[0];
  /packages/apps/Settings/src/com/android/settings/
UsageAccessSettings.java 92 final String[] packages; local
94 packages = mIPackageManager.getAppOpPermissionPackages(
97 Log.w(TAG, "PackageManager is dead. Can't get list of packages requesting "
102 if (packages == null) {
103 // No packages are requesting permission to use the UsageStats API.
108 for (final String packageName : packages) {
114 // Load the packages that have been granted the PACKAGE_USAGE_STATS permission.
127 // Load the remaining packages that have requested but don't have the
145 // Find out which packages have been granted permission from AppOps.
205 // Now add new packages to the PreferenceScreen
    [all...]
  /build/core/tasks/
boot_jars_package_check.mk 16 # Rules to check if classes in the boot jars are from the whitelisted packages.
  /cts/suite/cts/utils/
get_csv_report.py 113 packages = getChildrenWithTag(testResult, "TestPackage")
114 for package in packages:
  /cts/tools/signature-tools/
sig-check 62 --packages \

Completed in 1119 milliseconds

1 2 3 4 56 7 8 91011>>