/ndk/tests/standalone/init-fini-arrays/ |
run.sh | 4 LIBFILE=libfoo.so 9 $CXX $LDFLAGS $CXXFLAGS -shared -o $LIBFILE foo.cpp 30 ${PREFIX}readelf -S $LIBFILE | grep -q -e .init_array 37 ${PREFIX}readelf -S $LIBFILE | grep -q -e .fini_array
|
/external/libffi/testsuite/ |
run-all-tests | 81 # All this is to make the libFile be an absolute path. 82 libFile=`find out/host/${HOST_OS}-${HOST_ARCH} -name "${libName}.a" | head -1` 83 libDir=`dirname ${libFile}` 85 libFile="${libDir}/${libName}.a" 87 if [ "x$libFile" = "x" ]; then 103 "$CC" -g -I"../${HOST_OS}-${HOST_ARCH}" -o "$execFile" "$file" "$libFile"
|
/external/chromium_org/build/android/gyp/ |
create_native_libraries_header.py | 41 with open(options.ordered_libraries, 'r') as libfile: 42 libraries = json.load(libfile)
|
strip_library_for_device.py | 42 with open(options.libraries_file, 'r') as libfile: 43 libraries = json.load(libfile)
|
/external/compiler-rt/cmake/Modules/ |
AddCompilerRT.cmake | 58 get_target_property(libfile ${name} LOCATION) 59 configure_file(${LIB_SYMS} ${libfile}.syms) 60 install(FILES ${libfile}.syms
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/ |
build_vc.pl | 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h); 101 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE); 102 $command = $LIB.' '.$LIB_OPTS.' '.$libfile.' '.$objlist;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/ |
build_vc.pl | 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h); 103 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE); 104 $command = $LIB.' '.$LIB_OPTS.' '.$libfile.' '.$objlist;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/ |
build_vc.pl | 34 my (@headerlist, @filelist, $hd, $file, $ofile, $command, $objlist, $libfile, $h); 101 $libfile = File::Spec->catfile('lib', 'omxVC'.$LIB_TYPE); 102 $command = $LIB.' '.$LIB_OPTS.' '.$libfile.' '.$objlist;
|
/external/libpng/scripts/ |
makefile.acorn | 17 LibFile $(LibFileflags) @.o.png @.o.pngerror @.o.pngrio @.o.pngrtran \ 23 LibFile $(LibFileflags) @.mm.png @.mm.pngerror @.mm.pngrio \
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
bcppcompiler.py | 270 libfile = self.find_library_file(library_dirs, lib, debug) 271 if libfile is None: 276 ld_args.append(libfile) 326 libfile = os.path.join(dir, self.library_filename(name)) 327 if os.path.exists(libfile): 328 return libfile
|
msvccompiler.py | 568 libfile = os.path.join(dir, self.library_filename (name)) 569 if os.path.exists(libfile): 570 return libfile
|
msvc9compiler.py | 772 libfile = os.path.join(dir, self.library_filename (name)) 773 if os.path.exists(libfile): 774 return libfile
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
bcppcompiler.py | 270 libfile = self.find_library_file(library_dirs, lib, debug) 271 if libfile is None: 276 ld_args.append(libfile) 326 libfile = os.path.join(dir, self.library_filename(name)) 327 if os.path.exists(libfile): 328 return libfile
|
msvccompiler.py | 568 libfile = os.path.join(dir, self.library_filename (name)) 569 if os.path.exists(libfile): 570 return libfile
|
msvc9compiler.py | 772 libfile = os.path.join(dir, self.library_filename (name)) 773 if os.path.exists(libfile): 774 return libfile
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
split-lib.py | 48 libfile = open(libname, "w") 56 libfile.write(line)
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
split-lib.py | 48 libfile = open(libname, "w") 56 libfile.write(line)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 217 libfile = os.path.join(dir, "lib%s.so" % name) 218 if os.path.exists(libfile): 219 return libfile
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 217 libfile = os.path.join(dir, "lib%s.so" % name) 218 if os.path.exists(libfile): 219 return libfile
|
/hardware/ti/omap4xxx/domx/make/ |
build.mk | 148 LIBFILE := $(addprefix -l, $(ST_LIBS) $(SH_LIBS)) $(LIB_OBJS) 228 # $(CC) $(TARGETARGS) $(CFLAGS) $(LIBPATH) $(MAPFILE) -o $@ $(BASEOBJ) $(LIBFILE) 229 # $(CC) $(TARGETARGS) $(CFLAGS) $(LIBPATH) $(MAPFILE) -o $@ $(OBJECTS) $(LIBFILE) 233 $(CC) $(TARGETARGS) $(CFLAGS) $(LIBPATH) $(MAPFILE) -o $@ $(OBJECTS) $(LIBFILE) 377 @$(SHELLCMD) echo LIBFILE: $(LIBFILE)
|
/external/chromium_org/tools/win/split_link/ |
split_link.py | 269 libfile = 'part%d.lib' % i 270 flags_with_implib_and_deffile = flags + ['/IMPLIB:%s' % libfile, 273 import_libs.append(libfile)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/ |
test.xml | 30 <echo message="libfile: ${library-file}" />
|
/ndk/sources/host-tools/ndk-depends/ |
ndk-depends.cc | 1031 ElfFile libfile; local 1034 if (!libfile.Open(libpath.c_str(), &error)) { 1037 String soname = libfile.GetLibName(); 1048 libfile.GetNeededLibs(&node.needed_libs); 1370 ElfFile libfile; local [all...] |
/external/zlib/src/old/ |
Makefile.riscos | 21 LibFile $(LibFileflags) @.o.adler32 @.o.compress @.o.crc32 @.o.deflate \
|
/external/chromium_org/ppapi/native_client/src/untrusted/pnacl_support_extension/ |
pnacl_component_crx_gen.py | 322 '(arch:libfile) tuple.')
|