HomeSort by relevance Sort by last modified time
    Searched refs:strip (Results 651 - 675 of 2233) sorted by null

<<21222324252627282930>>

  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
MOTree.java 239 boolean strip = true;
247 strip = false;
248 } else if (!strip) {
  /frameworks/rs/
update_rs_prebuilts.sh 196 strip tools/$SHORT_OSNAME/bin/$a
201 strip tools/$SHORT_OSNAME/lib64/$a
206 strip tools/$SHORT_OSNAME/lib/$a
  /ndk/build/core/
default-build-commands.mk 104 # The strip command is only used for shared libraries and executables.
105 # It is thus safe to use --strip-unneeded, which is only dangerous
107 cmd-strip = $(PRIVATE_STRIP) --strip-unneeded $(call host-path,$1)
110 cmd-add-gnu-debuglink = $(PRIVATE_OBJCOPY) --add-gnu-debuglink=$(strip $(call host-path,$2)) $(call host-path,$1)
161 TARGET_STRIP = $(TOOLCHAIN_PREFIX)strip
definitions.mk 48 assert-defined = $(foreach __varname,$(strip $1),\
49 $(if $(strip $($(__varname))),,\
64 $(if $(strip $($(__varname))),,\
329 link-whole-archives = $(if $(strip $1),$(call link-whole-archive-flags,$1))
501 $(if $(strip $(__ndk_import_depth)),,\
509 $(eval LOCAL_$(__field) := $(call strip-lib-prefix,$(LOCAL_$(__field)))))\
554 module-get-listed-export = $(strip \
577 $(eval __fieldval := $(strip $(__ndk_modules.$(__mod).$(__field))))\
630 module-is-static-library = $(strip \
640 module-is-shared-library = $(strip \
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifData.java 80 * Adds an uncompressed strip.
82 protected void setStripBytes(int index, byte[] strip) {
84 mStripBytes.set(index, strip);
89 mStripBytes.add(strip);
94 * Gets the strip count.
101 * Gets the strip at the specified index.
110 * Returns true if this header contains uncompressed strip.
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifData.java 80 * Adds an uncompressed strip.
82 protected void setStripBytes(int index, byte[] strip) {
84 mStripBytes.set(index, strip);
89 mStripBytes.add(strip);
94 * Gets the strip count.
101 * Gets the strip at the specified index.
110 * Returns true if this header contains uncompressed strip.
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ExifData.java 80 * Adds an uncompressed strip.
82 protected void setStripBytes(int index, byte[] strip) {
84 mStripBytes.set(index, strip);
89 mStripBytes.add(strip);
94 * Gets the strip count.
101 * Gets the strip at the specified index.
110 * Returns true if this header contains uncompressed strip.
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifData.java 81 * Adds an uncompressed strip.
83 protected void setStripBytes(int index, byte[] strip) {
85 mStripBytes.set(index, strip);
90 mStripBytes.add(strip);
95 * Gets the strip count.
102 * Gets the strip at the specified index.
111 * Returns true if this header contains uncompressed strip.
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_traceback.py 42 self.assertTrue(err[1].strip() == "return x!")
59 self.assertTrue(err[1].strip() == "[x for x in x] = x")
65 self.assertTrue(err[1].strip() == "print 2")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_traceback.py 42 self.assertTrue(err[1].strip() == "return x!")
59 self.assertTrue(err[1].strip() == "[x for x in x] = x")
65 self.assertTrue(err[1].strip() == "print 2")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_traceback.py 42 self.assertTrue(err[1].strip() == "return x!")
59 self.assertTrue(err[1].strip() == "[x for x in x] = x")
65 self.assertTrue(err[1].strip() == "print 2")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_traceback.py 42 self.assertTrue(err[1].strip() == "return x!")
59 self.assertTrue(err[1].strip() == "[x for x in x] = x")
65 self.assertTrue(err[1].strip() == "print 2")
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c 112 sop *strip; /* malloced strip */ local
113 sopno ssize; /* malloced strip size (allocated) */
114 sopno slen; /* malloced strip length (used) */
269 p->strip = calloc(p->ssize, sizeof(sop));
271 if (p->strip == NULL) {
683 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
684 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
1133 sopno start, /* operand from here to end of strip */
    [all...]
  /external/markdown/markdown/
blockprocessors.py 46 elif not line.strip():
247 if line.strip() == ">":
352 h.text = m.group('header').strip()
378 h.text = lines[0].strip()
449 if block.strip():
  /external/skia/samplecode/
SamplePatch.cpp 179 SkPoint* strip = stripStorage.get(); local
180 SkPoint* tex = strip + stripCount;
192 strip[i*2 + 0] = *upper++;
193 strip[i*2 + 1] = *lower++;
202 strip, doTextures ? tex : nullptr,
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 565 final boolean strip;
567 strip = true;
570 strip = true;
572 strip = false; // not mUppercase format
574 if (strip) {
  /external/libvpx/libvpx/build/make/
Makefile 211 # If we're in debug mode, pretend we don't have GNU strip, to fall back to
215 # Older binutils strip global symbols not needed for relocation processing
216 # when given --strip-unneeded. Using nm and awk to identify globals and
218 # test_libvpx were observed under OS/2: simply use --strip-debug.
220 $(if $(quiet),@echo " [STRIP] $@ < $<")
221 $(qexec)$(STRIP) --strip-debug \
232 pairmap=$(if $(strip $(2)),\
241 find_file=$(foreach f,$(1),$(call find_file1,$(strip $(f)),$(strip $(2)))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetypes.py 47 return string.strip(self.enum)
114 return string.strip(self.type)
137 return string.strip(self.keyword)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
204 return "%s" % (string.strip(self.abso))
231 string.strip(self.logc),
234 return "%s(%s)" % (string.strip(self.logc), nice(self.term))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 47 return string.strip(self.enum)
114 return string.strip(self.type)
137 return string.strip(self.keyword)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
204 return "%s" % (string.strip(self.abso))
231 string.strip(self.logc),
234 return "%s(%s)" % (string.strip(self.logc), nice(self.term))
  /tools/test/connectivity/acts/framework/acts/controllers/
android_device.py 99 clean_lines = str(device_list_str, 'utf-8').strip().split('\n')
102 tokens = line.strip().split('\t')
322 out = self.fastboot.getvar("product").strip()
332 model = out.decode("utf-8").strip().split('[')[-1][:-1].lower()
337 model = out.decode("utf-8").strip().split('[')[-1][:-1].lower()
676 clean_out = str(out,'utf-8').strip().split('\n')
692 completed = out.decode('utf-8').strip()
  /build/core/
config.mk 207 TARGET_DEVICE_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_DEVICE_DIR)/kernel-headers))
218 TARGET_BOARD_KERNEL_HEADERS := $(strip $(wildcard $(TARGET_BOARD_KERNEL_HEADERS)))
224 TARGET_PRODUCT_KERNEL_HEADERS := $(strip $(wildcard $(PRODUCT_VENDOR_KERNEL_HEADERS)))
229 TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME))
230 TARGET_CPU_ABI := $(strip $(TARGET_CPU_ABI))
234 TARGET_CPU_ABI2 := $(strip $(TARGET_CPU_ABI2))
337 # Strip whitespace from the ABI list string.
338 TARGET_CPU_ABI_LIST := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST)))
339 TARGET_CPU_ABI_LIST_32_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_32_BIT)))
340 TARGET_CPU_ABI_LIST_64_BIT := $(subst $(space),$(comma),$(strip $(TARGET_CPU_ABI_LIST_64_BIT))
    [all...]
  /external/llvm/utils/buildit/
build_llvm 132 for prog in ar nm ranlib strip lipo ld as ; do
254 # Find the right version of strip to use.
255 STRIP=strip
257 STRIP=`xcrun -sdk $SDKROOT -find strip`
261 # Strip local symbols from llvm libraries.
263 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
265 $STRIP -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa]
267 $STRIP -Sxl $
    [all...]
  /external/opencv3/3rdparty/libtiff/
tiffio.h 74 typedef uint32 tstrile_t; /* strip or tile number */
75 typedef tstrile_t tstrip_t; /* strip number */
216 /* put decoded strip/tile */
353 extern uint64 TIFFRawStripSize64(TIFF* tif, uint32 strip);
354 extern tmsize_t TIFFRawStripSize(TIFF* tif, uint32 strip);
459 extern tmsize_t TIFFReadEncodedStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
460 extern tmsize_t TIFFReadRawStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
463 extern tmsize_t TIFFWriteEncodedStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
464 extern tmsize_t TIFFWriteRawStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
  /external/pdfium/third_party/libtiff/
tiffio.h 74 typedef uint32 tstrile_t; /* strip or tile number */
75 typedef tstrile_t tstrip_t; /* strip number */
216 /* put decoded strip/tile */
360 extern uint64 TIFFRawStripSize64(TIFF* tif, uint32 strip);
361 extern tmsize_t TIFFRawStripSize(TIFF* tif, uint32 strip);
466 extern tmsize_t TIFFReadEncodedStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
467 extern tmsize_t TIFFReadRawStrip(TIFF* tif, uint32 strip, void* buf, tmsize_t size);
470 extern tmsize_t TIFFWriteEncodedStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
471 extern tmsize_t TIFFWriteRawStrip(TIFF* tif, uint32 strip, void* data, tmsize_t cc);
  /frameworks/base/tools/fonts/
fontchain_lint.py 349 line = line.strip()
354 chars = chars.strip()
355 prop = prop.strip()
383 line = line.strip()
387 sequence = sequence.strip().split(' ')
390 description = description.strip()

Completed in 1819 milliseconds

<<21222324252627282930>>