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

1 2 3

  /external/v8/test/mjsunit/
fun-name.js 28 function strip(s) { function
32 assertEquals('function(){}', strip((function () { }).toString()));
33 assertEquals('functionanonymous(){}', strip(new Function().toString()));
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
EdgeInfoVec.java 33 package jme3tools.converters.model.strip;
FaceInfoVec.java 33 package jme3tools.converters.model.strip;
StripInfoVec.java 33 package jme3tools.converters.model.strip;
StripStartInfo.java 33 package jme3tools.converters.model.strip;
EdgeInfo.java 33 package jme3tools.converters.model.strip;
FaceInfo.java 33 package jme3tools.converters.model.strip;
39 int m_stripId; // real strip Id
40 int m_testStripId; // strip Id in an experiment
IntVec.java 33 package jme3tools.converters.model.strip;
VertexCache.java 33 package jme3tools.converters.model.strip;
PrimitiveGroup.java 33 package jme3tools.converters.model.strip;
55 case PT_STRIP: return "strip";
86 sb.append("Strip:").append(numIndices).append("\n");
StripInfo.java 33 package jme3tools.converters.model.strip;
74 // If either the faceInfo has a real strip index because it is
75 // already assign to a committed strip OR it is assigned in an
86 // Marks the face with the current strip ID
144 // Builds a strip forward as far as we can go, then builds backwards, and joins the two lists
206 // add this to the strip
231 // reset the indices for building the strip backwards and do so
274 // add this to the strip
320 // Returns true if the input face and the current strip share an edge
TriStrip.java 33 package jme3tools.converters.model.strip;
100 * bool to indicate whether to stitch together strips into one huge strip
101 * or not. If set to true, you'll get back one huge strip stitched together
110 * Sets the minimum acceptable size for a strip, in triangles. All strips
194 // strip from CreateStrips()
Stripifier.java 33 package jme3tools.converters.model.strip;
509 // Tell the strip that it is now real
510 StripInfo strip = strips.at(i); local
511 strip.m_experimentId = -1;
514 allStrips.add(strip);
516 // Iterate through the faces of the strip
517 // Tell the faces of the strip that they belong to a real strip now
522 strip.markTriangle(faces.at(j));
555 // Updates the input vertex cache with this strip's vertices
604 StripInfo strip = strips.at(i); local
796 StripInfo strip = allStrips.at(i); local
1263 StripInfo strip = tempStrips2.at(i); local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestTangentGen.java 77 Mesh strip = createTriangleStripMesh(); local
78 addMesh("strip", strip, new Vector3f(0, -3, 0));
111 Mesh strip = new Mesh(); local
112 strip.setMode(Mode.TriangleStrip);
131 strip.setBuffer(Type.Position, 3, vb);
132 strip.setBuffer(Type.Normal, 3, nb);
133 strip.setBuffer(Type.TexCoord, 2, tb);
134 strip.setBuffer(Type.Index, 3, ib);
135 strip.updateBound()
    [all...]
  /external/icu4c/samples/layout/
FontMap.cpp 56 line = strip(buffer);
64 fontName = strip(&c[1]);
65 scriptName = strip(line);
171 char *FontMap::strip(char *s) function in class:FontMap
  /external/openssh/
logintest.c 225 char full[17], strip[9], abbrev[5]; local
228 memset(strip, '\0', sizeof(strip));
232 line_stripname(strip, full, sizeof(strip)-1);
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
  /ndk/build/core/
default-build-commands.mk 91 # The strip command is only used for shared libraries and executables.
92 # It is thus safe to use --strip-unneeded, which is only dangerous
94 cmd-strip = $(PRIVATE_STRIP) --strip-unneeded $(call host-path,$1)
117 TARGET_STRIP = $(TOOLCHAIN_PREFIX)strip
  /external/libppp/src/
systems.c 246 strip(char *line) function
349 cp = strip(line);
385 cp = strip(line);
  /bionic/libc/upstream-netbsd/libc/regex/
regex2.h 94 * The internal representation is a *strip*, a sequence of
112 typedef u_int32_t sop; /* strip operator */
181 sop *strip; /* malloced area for strip */ member in struct:re_guts
regcomp.c 112 sop *strip; /* malloced strip */ local
113 sopno ssize; /* malloced strip size (allocated) */
114 sopno slen; /* malloced strip length (used) */
270 p->strip = malloc(p->ssize * sizeof(sop));
272 if (p->strip == NULL) {
684 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
685 assert(OP(p->strip[p->pend[i]]) == ORPAREN);
1134 sopno start, /* operand from here to end of strip */
    [all...]
  /external/llvm/lib/Support/
regex2.h 44 * The internal representation is a *strip*, a sequence of
62 typedef unsigned long sop; /* strip operator */
129 sop *strip; /* malloced area for strip */ member in struct:re_guts
  /external/skia/samplecode/
SamplePatch.cpp 189 SkPoint* strip = stripStorage.get(); local
190 SkPoint* tex = strip + stripCount;
202 strip[i*2 + 0] = *upper++;
203 strip[i*2 + 1] = *lower++;
212 strip, doTextures ? tex : NULL,
  /ndk/sources/host-tools/ndk-stack/regex/
regex2.h 44 * The internal representation is a *strip*, a sequence of
62 typedef unsigned long sop; /* strip operator */
129 sop *strip; /* malloced area for strip */ member in struct:re_guts
  /external/linux-tools-perf/
Makefile 102 STRIP ?= strip
180 strip-libs = $(filter-out -l%,$(1))
478 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
528 PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
659 strip: $(PROGRAMS) $(OUTPUT)perf
660 $(STRIP) $(STRIP_OPTS) $(PROGRAMS) $(OUTPUT)perf
903 .PHONY: all install clean strip
  /system/core/fastboot/
fastboot.c 391 static char *strip(char *s) function
441 name = strip(name);
442 for(n = 0; n < count; n++) val[n] = strip(val[n]);
444 name = strip(name);
454 out[n] = strdup(strip(val[n]));

Completed in 1375 milliseconds

1 2 3