Searched defs:segments (Results 1 - 25 of 89) sorted by relevance

1234

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicLineSegments.cpp28 // The number of line segments required to approximate the cubic
36 double segments = sqrt(dist / (8 * FLT_EPSILON)); local
37 return segments;
H A DQuadraticLineSegments.cpp26 // The number of line segments required to approximate the quad
32 double segments = sqrt(dist / (8 * FLT_EPSILON)); local
33 return segments;
/external/skia/experimental/Intersection/
H A DCubicLineSegments.cpp28 // The number of line segments required to approximate the cubic
36 double segments = sqrt(dist / (8 * FLT_EPSILON)); local
37 return segments;
H A DQuadraticLineSegments.cpp26 // The number of line segments required to approximate the quad
32 double segments = sqrt(dist / (8 * FLT_EPSILON)); local
33 return segments;
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_rule.h43 * <p>A rule may contain segments in its input string and segment
99 * segments. If there are no segments this is null. N.B. This is
106 UnicodeFunctor** segments; member in class:TransliterationRule
109 * The number of elements in segments[] or zero if segments is NULL.
142 * lookup services for matchers and segments.
170 * segments, or null if there are none. The array itself is adopted,
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath_utils.h54 static INLINE VGint num_elements_for_segments(const VGubyte *segments, argument
61 VGubyte segment = segments[i];
H A Dstroker.h42 struct array *segments; member in struct:stroker
/external/icu/icu4c/source/i18n/
H A Drbt_rule.h43 * <p>A rule may contain segments in its input string and segment
99 * segments. If there are no segments this is null. N.B. This is
106 UnicodeFunctor** segments; member in class:TransliterationRule
109 * The number of elements in segments[] or zero if segments is NULL.
142 * lookup services for matchers and segments.
170 * segments, or null if there are none. The array itself is adopted,
/external/icu/icu4c/source/layout/
H A DLookupTables.cpp27 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const argument
34 LEReferenceTo<LookupSegment> entry(base, success, segments);
H A DSegmentArrayProcessor.cpp37 const LookupSegment *segments = segmentArrayLookupTable->segments; local
43 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success);
H A DSegmentArrayProcessor2.cpp37 const LookupSegment *segments = segmentArrayLookupTable->segments; local
43 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success);
H A DSegmentSingleProcessor.cpp37 const LookupSegment *segments = segmentSingleLookupTable->segments; local
43 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success);
H A DSegmentSingleProcessor2.cpp38 const LookupSegment *segments = segmentSingleLookupTable->segments; local
44 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success);
H A DLookupTables.h58 const LookupSegment *lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const;
71 LookupSegment segments[ANY_NUMBER]; member in struct:SegmentSingleLookupTable
73 LE_VAR_ARRAY(SegmentSingleLookupTable, segments)
77 LookupSegment segments[ANY_NUMBER]; member in struct:SegmentArrayLookupTable
79 LE_VAR_ARRAY(SegmentArrayLookupTable, segments)
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath_utils.h54 static INLINE VGint num_elements_for_segments(const VGubyte *segments, argument
61 VGubyte segment = segments[i];
H A Dstroker.h42 struct array *segments; member in struct:stroker
/external/chromium_org/ppapi/examples/mouse_cursor/
H A Dmouse_cursor.cc58 int segments = 3; local
59 if (point.y() < height_ / segments) {
62 } else if (point.y() < (height_ / segments) * 2) {
/external/opencv/cvaux/src/
H A Dcvbgfg_common.cpp46 // segments - pointer to result of segmentation (for example MeanShiftSegmentation)
48 CV_IMPL void cvRefineForegroundMaskBySegm( CvSeq* segments, CvBGStatModel* bg_model ) argument
52 for( ; segments; segments = ((CvSeq*)segments)->h_next )
54 CvSeq seq = *segments;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowUriMatcher.java41 String[] segments = path.split("/");
42 addNodes(authNode, Arrays.asList(segments), code);
48 List<String> segments = uri.getPathSegments();
54 return matchSegments(rootNode.map.get(auth), segments);
57 private int matchSegments(MatchNode node, List<String> segments) { argument
58 if (segments.isEmpty()) return node.code;
59 String segment = segments.get(0);
60 segments = segments.subList(1, segments
82 addNodes(MatchNode baseNode, List<String> segments, int code) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java46 /** stores the segments of an XMPPath */
47 private List segments = new ArrayList(5); field in class:XMPPath
57 segments.add(segment);
67 return (XMPPathSegment) segments.get(index);
76 return segments.size();
/external/chromium_org/third_party/WebKit/Source/core/html/ime/
H A DInputMethodContext.cpp139 const Vector<unsigned>& InputMethodContext::segments() function in class:blink::InputMethodContext
/external/chromium_org/third_party/libxslt/libxslt/
H A Dattrvt.c40 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[av
[all...]
/external/e2fsprogs/intl/
H A Dgmo.h95 /* The number of system dependent segments. */
97 /* Offset of table describing system dependent segments. */
130 /* Offset of static string segments in file. */
132 /* Alternating sequence of static and system dependent segments.
140 } segments[1]; member in struct:sysdep_string
143 /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF,
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_unittest.cc236 std::vector<InputMethodEngineInterface::SegmentInfo> segments; local
238 engine_->GetCotextIdForTesting(), "test", 0, 0, 0, segments, NULL);
H A Dmock_input_method_engine.cc25 const std::vector<SegmentInfo>& segments,
19 SetComposition( int context_id, const char* text, int selection_start, int selection_end, int cursor, const std::vector<SegmentInfo>& segments, std::string* error) argument

Completed in 847 milliseconds

1234