Home
last modified time | relevance | path

Searched refs:strip (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/external/v8/tools/
Djs2c.py69 line = line.strip()
83 string = string.strip()
125 replacement = ExpandMacros(str.strip(), macros)
175 line = line.strip()
180 value = const_match.group(2).strip()
186 args = map(string.strip, macro_match.group(2).split(','))
187 body = macro_match.group(3).strip()
193 args = map(string.strip, python_match.group(2).split(','))
194 body = python_match.group(3).strip()
/external/v8/test/mjsunit/
Dfun-name.js28 function strip(s) { function
32 assertEquals('function(){}', strip((function () { }).toString()));
33 assertEquals('functionanonymous(){}', strip(new Function().toString()));
/external/elfutils/src/
DChangeLog4 * strip.c: Likewise.
8 * strip.c (handle_elf): Rewrite dynamic memory handling to use of
33 * strip.c: Likewise.
58 * src/strip.c: Likewise.
60 * strip.c: Add a few more unlikely. Reduce scope of some variables.
110 * strip.c: Likewise.
115 * strip.c (process_file): Close file before returning.
127 * strip.c (process_file): Don't mmap the input file, we modify the
143 * strip.c (handle_elf): Handle the 64-bit archs which is 64-bit
DMakefile19 …6_pic_a_SOURCES) elflint.c $(ld_SOURCES) $(libld_elf_i386_so_SOURCES) nm.c readelf.c size.c strip.c
44 strip$(EXEEXT) ld$(EXEEXT) elflint$(EXEEXT)
105 strip_SOURCES = strip.c
106 strip_OBJECTS = strip.$(OBJEXT)
120 readelf.c size.c strip.c
123 readelf.c size.c strip.c
519 install-strip:
593 install-man install-strip installcheck installcheck-am \
DMakefile.in19 …6_pic_a_SOURCES) elflint.c $(ld_SOURCES) $(libld_elf_i386_so_SOURCES) nm.c readelf.c size.c strip.c
44 strip$(EXEEXT) ld$(EXEEXT) elflint$(EXEEXT)
105 strip_SOURCES = strip.c
106 strip_OBJECTS = strip.$(OBJEXT)
120 readelf.c size.c strip.c
123 readelf.c size.c strip.c
519 install-strip:
593 install-man install-strip installcheck installcheck-am \
/external/elfutils/tests/
DMakefile.am40 msg_tst newscn run-strip-test.sh run-strip-test2.sh \
41 run-strip-test3.sh run-ecp-test.sh run-ecp-test2.sh
47 run-show-ciefde.sh run-show-abbrev.sh run-strip-test.sh \
48 run-strip-test2.sh run-ecp-test.sh run-ecp-test2.sh \
52 testfile13.bz2 run-strip-test3.sh
/external/e2fsprogs/lib/
DMakefile.elf-lib53 install-strip: install
55 @$(STRIP) --strip-unneeded --remove-section=.comment \
58 install-shlibs-strip: install-shlibs
60 @$(STRIP) --strip-unneeded --remove-section=.comment \
DMakefile.bsd-lib36 install-strip: install
38 install-shlibs-strip: install-shlibs
DMakefile.darwin-lib39 install-strip: install
41 install-shlibs-strip: install-shlibs
/external/protobuf/gtest/xcode/Config/
DReleaseProject.xcconfig18 // Deploment postprocessing is what triggers Xcode to strip
24 // Dead code strip does not affect ObjC code but can help for C
31 // When we strip we want to strip all symbols in release, but save externals.
/external/genext2fs/
DConfig.mk13 $(if $(strip $(3)),\
14 $(hide) $(TUNE2FS) -L $(strip $(3)) $(2))
15 $(if $(strip $(4)),\
/external/sqlite/dist/
DAndroid.mk118 ifneq ($(strip $(have_readline)),)
122 ifeq ($(strip $(USE_MINGW)),)
129 ifneq ($(strip $(have_readline)),)
132 ifneq ($(strip $(have_history)),)
/external/e2fsprogs/
DMakefile.in57 install-strip: subs all-libs-recursive install-strip-progs-recursive \
58 install-shlibs-strip-libs-recursive install-doc-libs
76 all-progs-recursive install-progs-recursive install-strip-progs-recursive \
86 all-libs-recursive install-libs-recursive install-strip-libs-recursive \
88 install-shlibs-strip-libs-recursive uninstall-shlibs-libs-recursive:
/external/dnsmasq/contrib/slackware-dnsmasq/
Ddnsmasq.SlackBuild39 …find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded …
40 …find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneed…
/external/elfutils/
DNEWS55 strip: fix overwriting of symbol table in input file.
67 strip: fix handling of Alpha and s390x which use incorrect hash bucket sizes.
73 strip: update section group symbol index if the associated symbol table changed
89 strip: update all version symbol table entries
95 strip: last changed caused problems when the symbol table is before the
101 Run strip tests with the correct libelf and libebl.
107 strip: Remove unused symbol table entries. This might require updating
183 strip: Implement --permissive option.
187 strip: Implement -g option.
238 strip: fix handling of ET_REL files.
[all …]
Delfutils.spec29 section sizes of an object or archive file), strip (for discarding
145 %{_bindir}/eu-strip
208 - update to 0.89 (fix eu-strip)
211 - update to 0.86 (fix eu-strip on s390x/alpha)
218 - upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
221 - upgrade to 0.82 (strip tests fixed on big-endian).
224 - upgrade to 0.81 (strip excludes unused symtable entries, test borked).
245 - update to 0.75 (eu-strip -g fix)
/external/clearsilver/scripts/
Dcommitlog.py42 mod_files.append(string.strip(a_line))
44 add_files.append(string.strip(a_line))
48 rem_files.append(string.strip(a_line))
/external/icu4c/tools/
Dicu-svnprops-check.py109 file_type = file_type.strip()
123 prop_name = prop_name.strip()
124 prop_val = prop_val.strip()
/external/icu4c/samples/layout/
DFontMap.cpp56 line = strip(buffer); in FontMap()
64 fontName = strip(&c[1]); in FontMap()
65 scriptName = strip(line); in FontMap()
171 char *FontMap::strip(char *s) in strip() function in FontMap
/external/qemu/android/tools/
Dgen-hw-config.py84 line = line.strip()
90 key = key.strip()
91 value = value.strip()
/external/libpng/scripts/
Dmakefile.cygwin73 CFLAGS= $(strip $(MINGW_CCFLAGS) $(addprefix -I,$(ZLIBINC)) \
90 LDFLAGS=$(strip -L. $(MINGW_LDFLAGS) -lpng $(addprefix -L,$(ZLIBLIB)) -lz)
91 LDSFLAGS=$(strip -shared -L. $(MINGW_LDFLAGS) -Wl,--export-all)
Dmakefile.mingw77 CFLAGS= $(strip $(MINGW_CCFLAGS) $(addprefix -I,$(ZLIBINC)) \
94 LDFLAGS=$(strip -L. $(MINGW_LDFLAGS) -lpng $(addprefix -L,$(ZLIBLIB)) -lz)
95 LDSFLAGS=$(strip -shared -L. $(MINGW_LDFLAGS))
/external/elfutils/po/
Delfutils.pot24 #: src/nm.c:59 src/readelf.c:51 src/strip.c:57
86 #: src/nm.c:83 src/size.c:61 src/strip.c:61
110 #: src/nm.c:96 src/size.c:72 src/strip.c:76
114 #: src/nm.c:124 src/size.c:100 src/strip.c:103
119 #: src/nm.c:241 src/readelf.c:376 src/size.c:202 src/strip.c:182 src/ld.c:871
128 #: src/nm.c:246 src/readelf.c:381 src/size.c:207 src/strip.c:187 src/ld.c:876
134 #: src/nm.c:351 src/readelf.c:359 src/size.c:285 src/strip.c:237 src/ld.c:490
145 #: src/nm.c:410 src/strip.c:322
183 #: src/size.c:504 src/strip.c:468
339 #: src/readelf.c:490 src/strip.c:530 src/ldgeneric.c:592 src/ldgeneric.c:1026
[all …]
/external/elfutils/config/
Delfutils.spec.in29 section sizes of an object or archive file), strip (for discarding
145 %{_bindir}/eu-strip
208 - update to 0.89 (fix eu-strip)
211 - update to 0.86 (fix eu-strip on s390x/alpha)
218 - upgrade to 0.83 (fix invalid ELf handle on *.so strip, more).
221 - upgrade to 0.82 (strip tests fixed on big-endian).
224 - upgrade to 0.81 (strip excludes unused symtable entries, test borked).
245 - update to 0.75 (eu-strip -g fix)
/external/webkit/WebKitTools/wx/packaging/
Dbuild-mac-installer.py82 output = commands.getoutput("otool -L %s" % dylib).strip()
84 filename = line.split("(")[0].strip()
144 '--version ' + wxwk_version.strip(),

12345678910>>...12