HomeSort by relevance Sort by last modified time
    Searched refs:package (Results 226 - 250 of 713) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importlib.py 77 package = None
79 package = name.rsplit('.', 1)[0]
81 package = import_name
85 module.__package__ = package
129 # Test importing a module from a package with an absolute name.
146 # Test importing a module from a package through a relatve import.
154 # Test importing a module from a package with an absolute name with
155 # the 'package' argument given.
165 # Relative imports cannot happen without the 'package' argument being
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importlib.py 77 package = None
79 package = name.rsplit('.', 1)[0]
81 package = import_name
85 module.__package__ = package
129 # Test importing a module from a package with an absolute name.
146 # Test importing a module from a package through a relatve import.
154 # Test importing a module from a package with an absolute name with
155 # the 'package' argument given.
165 # Relative imports cannot happen without the 'package' argument being
  /frameworks/base/tools/aapt/
ResourceTable.cpp 144 "a reference to another resource, in the form \"<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>\"\n"
145 "or to a theme attribute in the form \"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\"."},
247 "\"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>\") or\n"
249 "\"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>\")\n"
1744 sp<Package> package = new Package(mAssetsPackage, packageId); local
2012 String16 package, type, name; local
2147 String16 package, type, name; local
    [all...]
  /external/qemu/distrib/
package-release.sh 4 # and package them for easier distribution.
116 # $2: Source package file.
122 # The package file is ....../something-darwin.tar.bz2
124 # so extract the prefix from the package name.
129 panic "Can't get package prefix from $PKG_FILE_BASENAME"
212 --package-dir=*)
213 OPT_PKG_DIR=${OPT##--package-dir=}
215 --package-prefix=*)
216 OPT_PKG_PREFIX=${OPT##--package-prefix=}
245 Rebuild the emulator binaries from source and package them into tarball
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 116 def does_tree_import(self, package, name, string):
120 return fixer_util.does_tree_import(package, name, node)
128 for package, name, import_ in failing_tests:
129 n = self.does_tree_import(package, name, import_ + "\n" + string)
131 n = self.does_tree_import(package, name, string + "\n" + import_)
141 for package, name, import_ in passing_tests:
142 n = self.does_tree_import(package, name, import_ + "\n" + string)
144 n = self.does_tree_import(package, name, string + "\n" + import_)
151 def find_binding(self, name, string, package=None):
152 return fixer_util.find_binding(name, parse(string), package)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_util.py 116 def does_tree_import(self, package, name, string):
120 return fixer_util.does_tree_import(package, name, node)
128 for package, name, import_ in failing_tests:
129 n = self.does_tree_import(package, name, import_ + "\n" + string)
131 n = self.does_tree_import(package, name, string + "\n" + import_)
141 for package, name, import_ in passing_tests:
142 n = self.does_tree_import(package, name, import_ + "\n" + string)
144 n = self.does_tree_import(package, name, string + "\n" + import_)
151 def find_binding(self, name, string, package=None):
152 return fixer_util.find_binding(name, parse(string), package)
    [all...]
  /external/protobuf/python/google/protobuf/
descriptor.py 111 which will include protocol "package" name and the name of any
167 which will include protocol "package" name and the name of any
408 full_name: (str) Full name of the type, including package name
487 full_name: (str) Full name of the service, including package name.
561 package: name of the package
566 def __init__(self, name, package, options=None, serialized_pb=None):
571 self.package = package
  /build/tools/droiddoc/templates-sac/
customizations.cs 249 if:subcount(class.package) ?>
251 <?cs call:list("Interfaces", class.package.interfaces) ?>
252 <?cs call:list("Classes", class.package.classes) ?>
253 <?cs call:list("Enums", class.package.enums) ?>
254 <?cs call:list("Exceptions", class.package.exceptions) ?>
255 <?cs call:list("Errors", class.package.errors) ?>
257 elif:subcount(package) ?>
259 <?cs call:class_link_list("Interfaces", package.interfaces) ?>
260 <?cs call:class_link_list("Classes", package.classes) ?>
261 <?cs call:class_link_list("Enums", package.enums) ?
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
pimp.py 0 """Package Install Manager for Python.
46 # source: setup-based package
197 def unpack(self, archive, output=None, package=None):
210 def unpack(self, archive, output=None, package=None):
220 def unpack(self, archive, output=None, package=None):
258 if package:
259 names = package.filterExpectedSkips(names)
417 """Given a list of dictionaries containing package
471 """Find a package. The package can be specified by nam
    [all...]
  /cts/tests/signature/
Android.mk 18 # don't include this package in any target
64 # Split up config/api/1.xml by "package" and save the files as the
74 $(PRIVATE_API_XML_DESC) $(PRIVATE_RES_DIR) package
  /external/chromium_org/build/android/pylib/
android_commands.py 394 """Blocks until the device's package manager is available.
397 package manager isn't back after 120 seconds.
421 """Reboots the device and waits for the package manager to return.
443 # To run tests we need at least the package manager and the sd card (or
453 def Uninstall(self, package):
454 """Uninstalls the specified package from the device.
457 package: Name of the package to remove.
462 uninstall_command = 'uninstall %s' % package
468 """Installs the specified package to the device
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/
package 53 echo ${prog}: -f option requires package root directory.
68 echo ${prog}: -r option requires package resource directory.
146 # derive the root name for the package from the root name of the info file
149 # create package directory
151 echo Generating Installer package $pkg ...
155 # (gnu)tar/pax and compress root directory to package archive
156 echo -n " creating package archive ... "
178 # copy info file to package
185 # copy tiff file to package
194 # copy resources to package
    [all...]
  /frameworks/base/tools/aidl/
aidl_language_y.y 16 %token PACKAGE
37 package { }
39 | package imports { }
42 package: label
43 PACKAGE { }
89 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
110 b->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
170 c->package = g_currentPackage ? strdup(g_currentPackage) : NULL;
  /packages/apps/Email/
Android.mk 42 # (the default package target doesn't seem to deal with multiple asset dirs)
68 # only include rules to build other stuff for the original package, not the derived package.
  /cts/build/
test_host_java_library.mk 17 # package XML needed by CTS.
  /cts/hostsidetests/sample/
Android.mk 23 # Must match the package name in CtsTestCaseList.mk
  /cts/hostsidetests/sample/app/
Android.mk 19 # Don't include this package in any target.
  /cts/hostsidetests/security/
Android.mk 23 # Must match the package name in CtsTestCaseList.mk
  /cts/hostsidetests/theme/
Android.mk 25 # Must match the package name in CtsTestCaseList.mk
  /cts/hostsidetests/usb/SerialTestApp/
Android.mk 18 # don't include this package in any target
  /cts/libs/deviceutil/jni/
Android.mk 21 # Don't include this package in any configuration by default.
  /cts/suite/cts/deviceTests/browserbench/
Android.mk 18 # don't include this package in any target
  /cts/suite/cts/deviceTests/dram/
Android.mk 18 # don't include this package in any target
  /cts/suite/cts/deviceTests/filesystemperf/
Android.mk 18 # don't include this package in any target
  /cts/suite/cts/deviceTests/opengl/
Android.mk 18 # don't include this package in any target

Completed in 681 milliseconds

1 2 3 4 5 6 7 8 91011>>