HomeSort by relevance Sort by last modified time
    Searched refs:package (Results 1 - 25 of 570) 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/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/third_party/JSON/JSON-2.59/t/
_unicode_handling.pm 0 #package utf8;
2 package _unicode_handling;
  /external/chromium_org/build/android/
adb_gdb_content_shell 15 --package-name=org.chromium.content_shell_apk \
adb_gdb_drt 15 --package-name=org.chromium.native_test \
adb_gdb_android_webview_shell 15 --package-name=org.chromium.android_webview.shell \
adb_gdb_chromium_testshell 15 --package-name=org.chromium.chrome.testshell \
  /external/chromium_org/tools/site_compare/scrapers/
__init__.py 24 package = __import__(browser[0], globals(), locals(), [''])
25 module = package.GetScraper(browser[1])
  /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/build/linux/
pkg-config-wrapper 18 echo "usage: $0 /path/to/sysroot [pkg-config-arguments] package" >&2
23 package=${!#}
35 prefix=`PKG_CONFIG_PATH=$config_path pkg-config --variable=prefix "$package" | sed -e 's|/usr$||'`
  /external/chromium_org/chrome/test/chromedriver/chrome/
adb.h 26 const std::string& package) = 0;
28 const std::string& package) = 0;
30 const std::string& package,
33 const std::string& package) = 0;
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
DES.pm 0 package DES;
  /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
  /frameworks/base/tools/aapt/
ResourceIdCache.h 14 static uint32_t lookup(const android::String16& package,
19 static uint32_t store(const android::String16& package,

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 91011>>