/bootable/recovery/updater/ |
Android.mk | 44 # These libs are also linked in with updater, but we don't try to call 47 # extension libs. 62 $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) macro 66 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) 68 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
|
/external/chromium_org/chrome/test/pyautolib/chromeos/ |
chromeos_utils.py | 13 sys.path.append('/usr/local') # to import autotest libs namespace
|
suid_actions.py | 22 sys.path.append('/usr/local') # to import autotest libs. namespace
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtc.scons | 69 libs = [ variable
|
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/ |
peerconnection.scons | 11 libs = [ variable
|
/external/chromium/third_party/libjingle/source/talk/ |
libjingle.scons | 215 libs = [ variable 234 libs = [ variable 285 libs = [ variable 293 libs = [ variable 304 libs = [ variable
|
/external/chromium_org/build/config/linux/ |
pkg-config.py | 14 # The result will be [ <includes>, <cflags>, <libs>, <lib_dirs> ] where each 39 flag_string = subprocess.check_output(["pkg-config", "--cflags", "--libs"] + 51 libs = [] variable 65 libs.append(flag[2:]) 73 # Output a GN array, the first one is the cflags, the second are the libs. The 76 print json.dumps([includes, cflags, libs, lib_dirs])
|
/external/chromium_org/tools/gn/ |
gyp_binary_target_writer.h | 43 std::vector<std::string> libs; member in struct:GypBinaryTargetWriter::Flags
|
command_desc.cc | 122 // libs and lib_dirs are special in that they're inherited. We don't currently 138 const OrderedSet<std::string>& libs = target->all_libs(); local 139 if (libs.empty()) 145 for (size_t i = 0; i < libs.size(); i++) 146 OutputString(" " + libs[i] + "\n"); 276 " libs\n" 283 " for libs and lib_dirs because those are inherited and are more\n" 333 } else if (what == "libs") {
|
/external/chromium_org/chrome/test/functional/ |
chromeos_prefs.py | 13 sys.path.append('/usr/local') # Required to import autotest libs namespace
|
/external/chromium_org/third_party/libjingle/source/talk/ |
libjingle.scons | 402 libs = [ variable 421 libs = [ variable 434 libs = [ variable 479 libs = [ variable 486 libs = [ variable 494 libs = [ variable 509 libs = [ variable 607 libs = [ variable 653 libs = [ variable 698 libs = variable 708 libs = [ variable 729 libs = [ variable 782 libs = [ variable [all...] |
/external/chromium_org/tools/win/split_link/ |
split_link.py | 267 Log('building import libs') namespace 280 generated import libs and .def files. If the link fails, updates the
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidTargetData.java | 384 ArrayList<String> libs = new ArrayList<String>(); local 388 libs.add(name); 394 libs.add(optionalLibraries[i].getName()); 397 setValues("(uses-library,android:name)", libs.toArray(new String[libs.size()]));
|
/external/linux-tools-perf/ |
Makefile | 179 grep-libs = $(filter -l%,$(1)) 180 strip-libs = $(filter-out -l%,$(1)) 478 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) 479 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) 528 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS)) 529 PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) 639 LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group 669 $(BUILTIN_OBJS) $(LIBS) -o $@ 744 $(QUIET_LINK)$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) $(LIBS)
|
/prebuilts/sdk/tools/lib/ |
lombok-ast-0.2.jar | |
/prebuilts/tools/common/lombok-ast/ |
lombok-ast-0.2.1.jar | |
lombok-ast-0.2.jar | |
/prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/ |
lombok-ast-0.2.1.jar | |
/ndk/build/core/ |
definitions.mk | 425 # of the module. Usually $PROJECT/libs/<abi>/<prefix><module><suffix> 509 # An installable module is one that will be copied to $PROJECT/libs/<abi>/ 649 module-get-static-libs = $(__ndk_modules.$1.STATIC_LIBRARIES) 656 module-get-whole-static-libs = $(__ndk_modules.$1.WHOLE_STATIC_LIBRARIES) 663 module-get-all-static-libs = $(strip \ 672 module-get-shared-libs = $(__ndk_modules.$1.SHARED_LIBRARIES) 681 module-get-direct-libs = $(strip \ 718 # libraries. Use module-extract-whole-static-libs to filter the 721 module-get-link-libs = $(strip \ 725 # Special dependency function used by module-get-link-libs [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
policy_base.py | 60 sys.path.append('/usr/local') # to import autotest libs. namespace
|
/external/chromium/crypto/ |
nss_util.cc | 618 std::vector<std::string> libs; local 619 libs.push_back("libsoftokn3.so"); 620 libs.push_back("libfreebl3.so"); 625 for (size_t i = 0; i < libs.size(); ++i) { 627 FilePath path = paths[j].Append(libs[i]); 636 if (loaded == libs.size()) {
|
/ndk/ |
ndk-gdb.py | 607 gdbserver_path = os.path.join(PROJECT,'libs',COMPAT_ABI,'gdbserver') 610 log('Found gdbserver under libs/%s, assuming app was built with NDK_DEBUG=1' % (COMPAT_ABI)) 621 error('''Could not find gdbserver binary under %s/libs/%s 746 libdir = os.path.join(PROJECT,'libs',COMPAT_ABI) 747 libs = [ f for f in os.listdir(libdir) variable 749 if 'libstlport_shared.so' in libs: 751 elif 'libgnustl_shared.so' in libs:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
bundlebuilder.py | 105 libs = [] variable in class:BundleBuilder 199 for path in self.libs: 542 # Python.framework was specified manually in self.libs. 543 for lib in self.libs: 893 builder.libs.append(os.path.normpath(arg)) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/ |
LibraryProperties.java | 259 List<LibraryState> libs = state.getLibraries(); local 261 for (LibraryState lib : libs) {
|
/external/chromium_org/crypto/ |
nss_util.cc | 893 std::vector<std::string> libs; local 894 libs.push_back("libsoftokn3.so"); 895 libs.push_back("libfreebl3.so"); 900 for (size_t i = 0; i < libs.size(); ++i) { 902 base::FilePath path = paths[j].Append(libs[i]); 911 if (loaded == libs.size()) { [all...] |