/external/opencv/cvaux/src/ |
cvbgfg_common.cpp | 46 // segments - pointer to result of segmentation (for example MeanShiftSegmentation) 48 CV_IMPL void cvRefineForegroundMaskBySegm( CvSeq* segments, CvBGStatModel* bg_model ) 52 for( ; segments; segments = ((CvSeq*)segments)->h_next ) 54 CvSeq seq = *segments;
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkIntersectionHelper.h | 62 return fContour->segments()[fIndex].bounds(); 68 fLast = contour->segments().count(); 81 const SkOpSegment& segment = fContour->segments()[fIndex]; 93 return fContour->segments()[fIndex].pts(); 101 const SkOpSegment& segment = fContour->segments()[fIndex]; 125 return fContour->segments()[fIndex].verb();
|
/external/skia/src/pathops/ |
SkIntersectionHelper.h | 62 return fContour->segments()[fIndex].bounds(); 68 fLast = contour->segments().count(); 81 const SkOpSegment& segment = fContour->segments()[fIndex]; 93 return fContour->segments()[fIndex].pts(); 101 const SkOpSegment& segment = fContour->segments()[fIndex]; 125 return fContour->segments()[fIndex].verb();
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAAConvexPathRenderer.cpp | 61 static void center_of_mass(const SegmentArray& segments, SkPoint* c) { 64 int count = segments.count(); 70 p0 = segments[0].endPt(); 76 pj = segments[1].endPt() - p0; 79 const SkPoint pj = segments[i + 1].endPt() - p0; 94 const SkPoint& pt = segments[i].endPt(); 112 static void compute_vectors(SegmentArray* segments, 117 center_of_mass(*segments, fanPt); 118 int count = segments->count(); 132 Segment& sega = (*segments)[a] 662 SkSTArray<kPreallocSegmentCnt, Segment, true> segments; local [all...] |
/external/skia/src/gpu/ |
GrAAConvexPathRenderer.cpp | 61 static void center_of_mass(const SegmentArray& segments, SkPoint* c) { 64 int count = segments.count(); 70 p0 = segments[0].endPt(); 76 pj = segments[1].endPt() - p0; 79 const SkPoint pj = segments[i + 1].endPt() - p0; 94 const SkPoint& pt = segments[i].endPt(); 112 static void compute_vectors(SegmentArray* segments, 117 center_of_mass(*segments, fanPt); 118 int count = segments->count(); 132 Segment& sega = (*segments)[a] 662 SkSTArray<kPreallocSegmentCnt, Segment, true> segments; local [all...] |
/external/chromium_org/ppapi/examples/mouse_cursor/ |
mouse_cursor.cc | 58 int segments = 3; local 59 if (point.y() < height_ / segments) { 62 } else if (point.y() < (height_ / segments) * 2) {
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeInsideInfo.h | 76 const SegmentList& segments() const function in class:WebCore::FINAL 105 virtual void getIntervals(LayoutUnit lineTop, LayoutUnit lineHeight, SegmentList& segments) const OVERRIDE 107 return computedShape()->getIncludedIntervals(lineTop, lineHeight, segments);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ime/ |
Composition.cpp | 80 return m_inputMethodContext->segments();
|
InputMethodContext.h | 68 const Vector<unsigned>& segments();
|
/external/chromium_org/third_party/libwebp/enc/ |
config.c | 40 config->segments = 4; 79 config->segments = 2; 98 if (config->segments < 1 || config->segments > 4)
|
/external/chromium_org/third_party/libxslt/libxslt/ |
attrvt.c | 40 int nb_seg; /* Number of segments */ 51 void *segments[MAX_AVT_SEG]; member in struct:_xsltAttrVT 102 if (avt->segments[i] != NULL) 103 xmlFree((xmlChar *) avt->segments[i]); 105 xmlXPathFreeCompExpr((xmlXPathCompExprPtr) avt->segments[i]); 108 xmlXPathFreeCompExpr((xmlXPathCompExprPtr) avt->segments[i]); 110 if (avt->segments[i] != NULL) 111 xmlFree((xmlChar *) avt->segments[i]); 140 * needs to be added to the 'segments' array within the xsltAttrVT 154 memset(&avt->segments[avt->nb_seg], 0, MAX_AVT_SEG*sizeof(void *)) [all...] |
/external/libxslt/libxslt/ |
attrvt.c | 40 int nb_seg; /* Number of segments */ 51 void *segments[MAX_AVT_SEG]; member in struct:_xsltAttrVT 102 if (avt->segments[i] != NULL) 103 xmlFree((xmlChar *) avt->segments[i]); 105 xmlXPathFreeCompExpr((xmlXPathCompExprPtr) avt->segments[i]); 108 xmlXPathFreeCompExpr((xmlXPathCompExprPtr) avt->segments[i]); 110 if (avt->segments[i] != NULL) 111 xmlFree((xmlChar *) avt->segments[i]); 140 * needs to be added to the 'segments' array within the xsltAttrVT 154 memset(&avt->segments[avt->nb_seg], 0, MAX_AVT_SEG*sizeof(void *)) [all...] |
/external/webp/src/enc/ |
config.c | 40 config->segments = 4; 79 config->segments = 2; 98 if (config->segments < 1 || config->segments > 4)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
urlparse.py | 278 segments = bpath.split('/')[:-1] + path.split('/') 280 if segments[-1] == '.': 281 segments[-1] = '' 282 while '.' in segments: 283 segments.remove('.') 286 n = len(segments) - 1 288 if (segments[i] == '..' 289 and segments[i-1] not in ('', '..')): 290 del segments[i-1:i+1] 295 if segments == ['', '..'] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
urlparse.py | 278 segments = bpath.split('/')[:-1] + path.split('/') 280 if segments[-1] == '.': 281 segments[-1] = '' 282 while '.' in segments: 283 segments.remove('.') 286 n = len(segments) - 1 288 if (segments[i] == '..' 289 and segments[i-1] not in ('', '..')): 290 del segments[i-1:i+1] 295 if segments == ['', '..'] [all...] |
/external/icu4c/layout/ |
LookupTables.cpp | 27 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LookupSegment *segments, LEGlyphID glyph) const 33 const LookupSegment *entry = segments;
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afwarp.c | 21 * within a single dimension so that as much of its segments are aligned 66 /* Score segments for a given `scale' and `delta' in the range */ 78 AF_Segment segments, 122 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord; 123 FT_Pos y0 = FT_MulFix( segments[nn].pos, scale ) + delta; 128 /* score the length of the segments for the given range */ 179 AF_Segment segments; local 200 segments = axis->segments; [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
rbt_rule.cpp | 47 * segments, or null if there are none. The array itself is adopted, 65 segments(0), 100 // We don't validate the segments array. The caller must 101 // guarantee that the segments are well-formed (that is, that 104 this->segments = segs; 172 segments = NULL; 175 segments = (UnicodeFunctor **)uprv_malloc(other.segmentsCount * sizeof(UnicodeFunctor *)); 176 uprv_memcpy(segments, other.segments, other.segmentsCount*sizeof(segments[0])) [all...] |
/external/freetype/src/autofit/ |
afwarp.c | 21 * within a single dimension so that as much of its segments are aligned 66 /* Score segments for a given `scale' and `delta' in the range */ 78 AF_Segment segments, 122 FT_Pos len = segments[nn].max_coord - segments[nn].min_coord; 123 FT_Pos y0 = FT_MulFix( segments[nn].pos, scale ) + delta; 128 /* score the length of the segments for the given range */ 179 AF_Segment segments; local 200 segments = axis->segments; [all...] |
/external/icu4c/i18n/ |
rbt_rule.cpp | 48 * segments, or null if there are none. The array itself is adopted, 66 segments(0), 101 // We don't validate the segments array. The caller must 102 // guarantee that the segments are well-formed (that is, that 105 this->segments = segs; 173 segments = NULL; 176 segments = (UnicodeFunctor **)uprv_malloc(other.segmentsCount * sizeof(UnicodeFunctor *)); 177 uprv_memcpy(segments, other.segments, other.segmentsCount*sizeof(segments[0])) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
ProjectClassLoader.java | 126 // get the class name segments 127 String[] segments = name.split("\\."); //$NON-NLS-1$ local 130 File classFile = getFile(outFolder, segments, 0); 164 * @param segments the segments containing the path of the file 165 * @param index the offset at which to start looking into segments. 168 private File getFile(File parent, String[] segments, int index) 171 if (index == segments.length) { 175 String toMatch = segments[index]; 178 // we're at the last segments. we look for a matching <file>.clas [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentHashMap.java | 75 * The basic strategy is to subdivide the table among Segments, 77 * reduce footprint, all but one segments are constructed only 79 * in the presence of lazy construction, accesses to segments as 133 * The maximum number of segments to allow; used to bound 149 * Mask value for indexing into segments. The upper bits of a 155 * Shift value for indexing within segments. 160 * The segments, each of which is a specialized hash table. 162 final Segment<K,V>[] segments; field in class:ConcurrentHashMap 248 * Segments are specialized versions of hash tables. This 254 * Segments maintain a table of entry lists that are alway 805 final Segment<K,V>[] segments = this.segments; local 839 final Segment<K,V>[] segments = this.segments; local 941 final Segment<K,V>[] segments = this.segments; local 1117 final Segment<K,V>[] segments = this.segments; local 1404 final Segment<K,V>[] segments = this.segments; local 1437 final Segment<K,V>[] segments = this.segments; local [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ParsedURL.js | 133 var segments = path.split("/"); 134 for (var i = 0; i < segments.length; i++) { 135 var segment = segments[i]; 148 if ((path[path.length - 1] === "/") || (segments[segments.length - 1] === ".") || (segments[segments.length - 1] === ".."))
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
WidgetPullParser.java | 47 String[] segments = mDescriptor.getFullClassName().split(AdtConstants.RE_DOT); local 48 mAttributes[0][1] = segments[segments.length-1];
|
/external/sonivox/jet_tools/JetCreator/ |
JetFile.py | 93 """ Class to hold segments """
302 # count segments
303 segments = []
360 segments.append(JetSegment(segname, filename, start, end, length, output, quantize, jetevents, dlsfile, dump_file, int(transpose), int(repeat), int(mute_flags)))
363 self.segments = segments
364 if not len(segments):
365 #TODO: Check for segments when writing
366 #raise JetFileException('No segments defined in configuration file')
392 JINF_NUM_SMF_CHUNKS, len(self.segments),
[all...] |