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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/importlib/
__init__.py 6 def _resolve_name(name, package, level):
8 if not hasattr(package, 'rindex'):
9 raise ValueError("'package' not set to a string")
10 dot = len(package)
13 dot = package.rindex('.', 0, dot)
16 "package")
17 return "%s.%s" % (package[:dot], name)
20 def import_module(name, package=None):
23 The 'package' argument is required when performing a relative import. It
24 specifies the package to use as the anchor point from which to resolve th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/importlib/
__init__.py 6 def _resolve_name(name, package, level):
8 if not hasattr(package, 'rindex'):
9 raise ValueError("'package' not set to a string")
10 dot = len(package)
13 dot = package.rindex('.', 0, dot)
16 "package")
17 return "%s.%s" % (package[:dot], name)
20 def import_module(name, package=None):
23 The 'package' argument is required when performing a relative import. It
24 specifies the package to use as the anchor point from which to resolve th
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
requireprovidesorter_test.py 36 'goog.provide(\'package.xyz\');',
38 'goog.provide(\'package.abcd\');'
43 'goog.provide(\'package.abcd\');',
44 'goog.provide(\'package.xyz\');'
57 'goog.require(\'package.xyz\');',
59 'goog.require(\'package.abcd\');'
64 'goog.require(\'package.abcd\');',
65 'goog.require(\'package.xyz\');'
78 'goog.provide(\'package.subpackage.Whatever\');',
80 'goog.require(\'package.subpackage.ClassB\');'
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 0 package ANTLR::Runtime::EarlyExitException;
MismatchedSetException.pm 0 package ANTLR::Runtime::MismatchedSetException;
RuleReturnScope.pm 0 package ANTLR::Runtime::RuleReturnScope;
TokenStream.pm 0 package ANTLR::Runtime::TokenStream;
CharStream.pm 0 package ANTLR::Runtime::CharStream;
IntStream.pm 0 package ANTLR::Runtime::IntStream;
Stream.pm 0 package ANTLR::Runtime::Stream;
  /external/chromium_org/build/android/
adb_gdb_content_shell 15 --package-name=org.chromium.content_shell_apk \
adb_gdb_cronet_sample 15 --package-name=org.chromium.cronet_sample_apk \
adb_gdb_mojo_shell 15 --package-name=org.chromium.mojo_shell_apk \
adb_gdb_android_webview_shell 15 --package-name=org.chromium.android_webview.shell \
adb_gdb_chrome_shell 15 --package-name=org.chromium.chrome.shell \
  /external/chromium_org/tools/site_compare/scrapers/
__init__.py 24 package = __import__(browser[0], globals(), locals(), [''])
25 module = package.GetScraper(browser[1])
  /frameworks/base/tools/aapt/
ResourceIdCache.h 15 static uint32_t lookup(const String16& package,
20 static uint32_t store(const String16& package,
  /cts/tools/utils/cts/
tools.py 24 """This class represents a test package.
26 Each test package consists of one or more suites, each containing one or more subsuites and/or
29 The package structure is currently stored using Python dictionaries and lists. Translation
78 """Add a test to the package.
90 """Add an attribute to the test package itself."""
94 """Returns a minidom Document representing the test package structure."""
96 package = doc.createElement('TestPackage')
98 package.setAttribute(attr, value)
99 self.root_suite.WriteDescription(doc, package)
100 doc.appendChild(package)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/
LoadAsModule.pm 26 # Imports Perl scripts into a package for easy unit testing.
28 package LoadAsModule;
50 my ($self, $package, $script) = @_;
53 package $package;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 36 self.package = None
99 """Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
103 for package in self.packages:
104 # Locate package source directory
105 src_dir = self.get_package_dir(package)
107 # Compute package build directory
108 build_dir = os.path.join(*([self.build_lib] + package.split('.')))
117 file[plen:] for file in self.find_data_files(package, src_dir)
119 data.append((package, src_dir, build_dir, filenames))
122 def find_data_files(self, package, src_dir)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_py.py 36 self.package = None
99 """Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
103 for package in self.packages:
104 # Locate package source directory
105 src_dir = self.get_package_dir(package)
107 # Compute package build directory
108 build_dir = os.path.join(*([self.build_lib] + package.split('.')))
117 file[plen:] for file in self.find_data_files(package, src_dir)
119 data.append((package, src_dir, build_dir, filenames))
122 def find_data_files(self, package, src_dir)
    [all...]
  /build/tools/signapk/test/
run 3 package := NotePad.apk macro
5 all: out/signed-$(package)
26 out/signed-$(package): $(package) $(cert)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
android_dumpsys_power_monitor_unittest.py 14 package = 'com.google.android.apps.chrome'
19 package, output))
25 package = 'com.android.chrome'
31 package, output))
  /external/openssl/crypto/des/
DES.pm 0 package DES;
  /frameworks/base/core/tests/coretests/apks/
FrameworkCoreTests_apk.mk 7 # Make sure every package name gets the FrameworkCoreTests_ prefix.
10 # Every package should have a native library

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 91011>>