/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMWSFilter.java | 30 * Do not strip whitespace child nodes of this element. 35 * Strip whitespace child nodes of this element. 37 public static final short STRIP = 2; 52 * @return one of NOTSTRIP, STRIP, or INHERIT.
|
/external/e2fsprogs/lib/ |
Makefile.solaris-lib | 49 install-strip: install 50 $(STRIP) -x $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB) 52 install-shlibs-strip: install-shlibs 53 $(STRIP) -x $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB)
|
Makefile.elf-lib | 58 install-strip: install 59 $(E) " STRIP-LIB $(ELF_INSTALL_DIR)/$(ELF_LIB)" 60 $(Q) $(STRIP) --strip-unneeded --remove-section=.comment \ 63 install-shlibs-strip: install-shlibs 64 $(E) " STRIP-LIB $(ELF_INSTALL_DIR)/$(ELF_LIB)" 65 $(Q) $(STRIP) --strip-unneeded --remove-section=.comment \
|
/ndk/build/tools/ |
build-ndk-stack.sh | 96 STRIP="$STRIP" \
|
build-gcc.sh | 381 # strip binaries to reduce final package size 382 test -z "$STRIP" && STRIP=strip 383 run $STRIP $TOOLCHAIN_PATH/bin/* 384 run $STRIP $TOOLCHAIN_PATH/$ABI_CONFIGURE_TARGET/bin/* 385 run $STRIP $TOOLCHAIN_PATH/libexec/gcc/*/*/cc1$HOST_EXE 386 run $STRIP $TOOLCHAIN_PATH/libexec/gcc/*/*/cc1plus$HOST_EXE 387 run $STRIP $TOOLCHAIN_PATH/libexec/gcc/*/*/collect2$HOST_EXE
|
build-llvm.sh | 169 # To stop /usr/bin/install -s calls strip on darwin binary 360 test -z "$STRIP" && STRIP=strip 361 find $TOOLCHAIN_BUILD_PREFIX/bin -maxdepth 1 -type f -exec $STRIP {} \; 362 # Note that MacOSX strip generate the follow error on .dylib: 364 find $TOOLCHAIN_BUILD_PREFIX/lib -maxdepth 1 -type f \( -name "*.dll" -o -name "*.so" \) -exec $STRIP {} \;
|
prebuilt-common.sh | 866 STRIP=${STRIP:-strip} 930 STRIP=$ABI_CONFIGURE_HOST-strip 931 export CC CXX CPP LD AR AS RANLIB STRIP 972 STRIP=$ABI_CONFIGURE_HOST-strip [all...] |
common-build-host-funcs.sh | 779 STRIP=$BH_HOST_CONFIG-strip 781 export CC CXX LD AR AS RANLIB NM STRIP STRINGS 819 register_var_option "--no-strip" _BH_OPTION_NO_STRIP "Don't strip generated binaries."
|
build-gnu-libstdc++.sh | 176 export STRIP=${BINPREFIX}strip
|
/build/core/combo/ |
select.mk | 31 $(combo_target)STRIP := $(STRIP) 88 ccache := $(strip $(wildcard $(ccache)))
|
HOST_darwin-x86.mk | 20 ifneq ($(strip $(BUILD_HOST_64bit)),) 32 ifneq ($(strip $(BUILD_HOST_static)),) 40 ifneq ($(strip $(MAC_SDK_VERSION)),) 80 ifneq (,$(strip $(wildcard $(HOST_TOOLCHAIN_PREFIX)-gcc))) 93 HOST_STRIP := $(STRIP) 94 HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-debug $< -o $@
|
/external/expat/amiga/ |
Makefile | 81 STRIP := strip 107 $(STRIP) $(STRIPFLAGS) $@ 121 $(STRIP) $(STRIPFLAGS) $@ 129 $(STRIP) $(STRIPFLAGS) $@ 171 $(STRIP) $(STRIPFLAGS) $@ 185 $(STRIP) $(STRIPFLAGS) $@ 193 $(STRIP) $(STRIPFLAGS) $@ 220 $(STRIP) $(STRIPFLAGS) $@ 236 $(STRIP) $(STRIPFLAGS) $ [all...] |
/hardware/ti/omap4xxx/domx/make/ |
start.mk | 99 STRIP := $(CROSS)strip
|
build.mk | 30 TARGETNAME := $(strip $(TARGETNAME)) 31 TARGETTYPE := $(strip $(TARGETTYPE)) 32 SUBMODULES := $(strip $(SUBMODULES)) 33 SOURCES := $(strip $(SOURCES)) 34 INCLUDES := $(strip $(INCLUDES)) 35 LIBINCLUDES := $(strip $(LIBINCLUDES)) 37 SH_SONAME := $(strip $(SH_SONAME)) 38 ST_LIBS := $(strip $(ST_LIBS)) 39 SH_LIBS := $(strip $(SH_LIBS)) 41 CFLAGS := $(strip $(CFLAGS) [all...] |
/ndk/sources/host-tools/ndk-stack/ |
GNUMakefile | 19 STRIP := strip 31 ifneq (,$(strip $(DEBUG))) 34 strip-cmd = 38 strip-cmd = $(STRIP) $1 89 $(call strip-cmd,$@)
|
/external/llvm/utils/buildit/ |
build_llvm | 128 for prog in ar nm ranlib strip lipo ld as ; do 247 # Find the right version of strip to use. 248 STRIP=strip 250 STRIP=`xcrun -sdk $SDKROOT -find strip` 254 # Strip local symbols from llvm libraries. 256 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or 258 $STRIP -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa] 260 $STRIP -Sxl $ [all...] |
/external/compiler-rt/make/ |
options.mk | 44 STRIP := strip
|
AppleBI.mk | 47 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \ 87 $(call GetCNAVar,STRIP,Platform.darwin_bni,Release,) -S $(SYMROOT)/libcompiler_rt.dylib \
|
lib_info.mk | 33 $(if $(call strneq,,$(strip $($(key).OnlyArchs) $($(key).OnlyConfigs))),,\ 59 SHARED_LIBRARY SHARED_LIBRARY_SUFFIX STRIP LIPO DSYMUTIL
|
/libcore/luni/src/main/java/java/util/jar/ |
Pack200.java | 170 * a String representation of {@code strip}. 172 static final String STRIP = "strip";
|
/external/dropbear/debian/ |
rules | 7 STRIP =strip 9 STRIP =: nostrip 70 $(STRIP) -R .comment -R .note '$(DIR)'/usr/sbin/* \
|
/external/libvpx/libvpx/build/make/ |
configure.sh | 423 STRIP=${STRIP} 584 STRIP=${STRIP:-${CROSS}strip} 810 STRIP=arm-none-linux-gnueabi-strip 854 STRIP=${TOOLCHAIN_PATH}strip 896 STRIP=${TOOLCHAIN_PATH}/stri [all...] |
/external/compiler-rt/make/platform/ |
darwin_bni.mk | 15 STRIP := $(shell xcrun -sdk $(SDKROOT) -find strip)
|
/external/libvorbis/ |
configure | 829 STRIP [all...] |
/external/e2fsprogs/resize/ |
Makefile.in | 77 install-strip: install 79 echo " STRIP $(root_sbindir)/$$i"; \ 80 $(STRIP) $(DESTDIR)$(root_sbindir)/$$i; \
|