HomeSort by relevance Sort by last modified time
    Searched defs:strip (Results 1 - 25 of 477) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/python/tools/
strip_unused_test.py 65 def strip(input_node_names): function in function:StripUnusedTest.testStripUnused
73 strip("does_not_exist")
76 strip("wanted_input_node:0")
79 strip(input_node_names)
  /build/soong/cc/
strip.go 22 Strip struct {
33 return !ctx.Config().EmbeddedInMake() && !Bool(stripper.StripProperties.Strip.None)
36 func (stripper *stripper) strip(ctx ModuleContext, in, out android.ModuleOutPath, func
41 flags.stripKeepSymbols = Bool(stripper.StripProperties.Strip.Keep_symbols)
builder.go 111 _ = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh") var
113 strip = pctx.AndroidStaticRule("strip",
824 Rule: strip,
825 Description: "strip " + outputFile.Base(),
840 Description: "strip " + outputFile.Base(),
  /external/robolectric-shadows/
robotest.sh 43 function strip() { function
57 local classpath="$(strip "$(normalize-path-list "${PRIVATE_JARS}")")"
94 if [[ "$(strip "${PRIVATE_RUN_INDIVIDUALLY}")" = 'true' ]]; then
  /prebuilts/misc/common/robolectric/3.1.1/
robotest.sh 40 function strip() { function
54 local classpath="$(strip "$(normalize-path-list "${PRIVATE_JARS}")")"
73 if [[ "$(strip "${PRIVATE_RUN_INDIVIDUALLY}")" = 'true' ]]; then
  /prebuilts/misc/common/robolectric/3.4.2/
robotest.sh 43 function strip() { function
57 local classpath="$(strip "$(normalize-path-list "${PRIVATE_JARS}")")"
76 if [[ "$(strip "${PRIVATE_RUN_INDIVIDUALLY}")" = 'true' ]]; then
  /prebuilts/misc/common/robolectric/3.5.1/
robotest.sh 43 function strip() { function
57 local classpath="$(strip "$(normalize-path-list "${PRIVATE_JARS}")")"
76 if [[ "$(strip "${PRIVATE_RUN_INDIVIDUALLY}")" = 'true' ]]; then
  /prebuilts/misc/common/robolectric/3.6.1/
robotest.sh 43 function strip() { function
57 local classpath="$(strip "$(normalize-path-list "${PRIVATE_JARS}")")"
76 if [[ "$(strip "${PRIVATE_RUN_INDIVIDUALLY}")" = 'true' ]]; then
  /frameworks/base/cmds/incidentd/src/
PrivacyBuffer.cpp 70 * Strip next field based on its private policy and request spec, then stores data in buf.
83 VLOG("[Depth %2d]Try to strip id %d, wiretype %d", depth, fieldId, read_wire_type(fieldTag));
111 status_t PrivacyBuffer::strip(const PrivacySpec& spec) { function in class:android::os::incidentd::PrivacyBuffer
112 VLOG("Strip with spec %d", spec.dest);
113 // optimization when no strip happens
124 mData.rp()->rewind(); // rewind the read pointer back to beginning after the strip.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldump.c 22 int strip; member in struct:__anon4199
123 DumpString((D->strip) ? NULL : f->source,D);
124 n= (D->strip) ? 0 : f->sizelineinfo;
126 n= (D->strip) ? 0 : f->sizelocvars;
134 n= (D->strip) ? 0 : f->sizeupvalues;
162 int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip)
168 D.strip=strip;
  /external/curl/lib/
pop3.h 66 size_t strip; /* Number of bytes from the start to ignore as member in struct:pop3_conn
  /external/icu/icu4c/source/samples/layout/
FontMap.cpp 60 line = strip(buffer);
68 fontName = strip(&c[1]);
69 scriptName = strip(line);
175 char *FontMap::strip(char *s) function in class:FontMap
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainProcessor.java 60 public void strip(File file) throws IOException { method in class:MainProcessor
  /external/minijail/
util.c 244 char *strip(char *s) function
  /external/pdfium/third_party/libtiff/
tif_strip.c 30 * Strip-organized Image Support Routines.
35 * Compute which strip a (row,sample) value is in.
42 uint32 strip; local
44 strip = row / td->td_rowsperstrip;
52 strip += (uint32)sample*td->td_stripsperimage;
54 return (strip);
75 * Compute the # bytes in a variable height, row-aligned strip.
146 * Compute the # bytes in a raw strip.
149 TIFFRawStripSize64(TIFF* tif, uint32 strip)
153 uint64 bytecount = td->td_stripbytecount[strip];
    [all...]
tif_write.c 35 #define STRIPINCR 20 /* expansion factor on strip array */
46 static int TIFFAppendToStrip(TIFF* tif, uint32 strip, uint8* data, tmsize_t cc);
54 uint32 strip; local
82 * Calculate strip and check for crossings.
91 strip = sample*td->td_stripsperimage + row/td->td_rowsperstrip;
93 strip = row / td->td_rowsperstrip;
95 * Check strip array to make sure there's space. We don't support
101 if (strip >= td->td_nstrips && !TIFFGrowStrips(tif, 1, module))
103 if (strip != tif->tif_curstrip) {
109 tif->tif_curstrip = strip;
    [all...]
  /external/syslinux/com32/lua/src/
ldump.c 22 int strip; member in struct:__anon37058
123 DumpString((D->strip) ? NULL : f->source,D);
124 n= (D->strip) ? 0 : f->sizelineinfo;
126 n= (D->strip) ? 0 : f->sizelocvars;
134 n= (D->strip) ? 0 : f->sizeupvalues;
162 int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip)
168 D.strip=strip;
  /external/toybox/toys/posix/
patch.c 34 -p Number of '/' to strip from start of file paths (default=all)
265 strip = 0; local
282 if (strip || !patchlinenum++) {
285 if (!strip) fprintf(stderr, "Removing DOS newlines\n");
286 strip = 1;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stringold.py 73 # Strip leading and trailing tabs and spaces
74 def strip(s): function
75 """strip(s) -> string
81 return s.strip()
83 # Strip leading tabs and spaces
92 # Strip trailing tabs and spaces
  /external/python/cpython2/Lib/
stringold.py 73 # Strip leading and trailing tabs and spaces
74 def strip(s): function
75 """strip(s) -> string
81 return s.strip()
83 # Strip leading tabs and spaces
92 # Strip trailing tabs and spaces
  /external/skia/src/gpu/ops/
GrDrawAtlasOp.cpp 60 SkPoint strip[4]; local
62 xforms[spriteIndex].toTriStrip(currRect.width(), currRect.height(), strip);
82 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[0];
85 SkRectPriv::GrowToInclude(&bounds, strip[0]);
88 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[1];
91 SkRectPriv::GrowToInclude(&bounds, strip[1]);
94 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[2];
97 SkRectPriv::GrowToInclude(&bounds, strip[2]);
100 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[3];
103 SkRectPriv::GrowToInclude(&bounds, strip[3])
    [all...]
  /external/skqp/src/gpu/ops/
GrDrawAtlasOp.cpp 60 SkPoint strip[4]; local
62 xforms[spriteIndex].toTriStrip(currRect.width(), currRect.height(), strip);
82 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[0];
85 SkRectPriv::GrowToInclude(&bounds, strip[0]);
88 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[1];
91 SkRectPriv::GrowToInclude(&bounds, strip[1]);
94 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[2];
97 SkRectPriv::GrowToInclude(&bounds, strip[2]);
100 *(reinterpret_cast<SkPoint*>(currVertex)) = strip[3];
103 SkRectPriv::GrowToInclude(&bounds, strip[3])
    [all...]
  /external/toybox/kconfig/
conf.c 40 static void strip(char *str) function
240 strip(line);
360 strip(line);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stringold.py 73 # Strip leading and trailing tabs and spaces
74 def strip(s): function
75 """strip(s) -> string
81 return s.strip()
83 # Strip leading tabs and spaces
92 # Strip trailing tabs and spaces
  /prebuilts/gdb/linux-x86/lib/python2.7/
stringold.py 73 # Strip leading and trailing tabs and spaces
74 def strip(s): function
75 """strip(s) -> string
81 return s.strip()
83 # Strip leading tabs and spaces
92 # Strip trailing tabs and spaces

Completed in 1032 milliseconds

1 2 3 4 5 6 7 8 91011>>