HomeSort by relevance Sort by last modified time
    Searched full:segment (Results 201 - 225 of 2659) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu4c/i18n/
nortrans.cpp 135 UnicodeString segment; local
142 segment.remove();
144 segment.append(c);
154 fNorm2.normalize(segment, normalized, errorCode);
158 if(segment != normalized) {
  /external/libvpx/libvpx/test/
set_roi.cc 56 // Segment map
75 // Check that the segment map got set.
77 EXPECT_EQ(0, mapcompare) << "segment map error";
85 << "segment delta_q error";
94 << "segment delta_lf error";
  /libcore/luni/src/main/java/libcore/net/url/
UrlUtils.java 35 // the first character of the current path segment
53 * We've encountered either the end of a segment or the end of the
54 * complete path. If the final segment was "." or "..", remove the
69 // There's no segment to delete; this ".." segment must be retained.
  /external/freetype/src/autofit/
aflatin.c 299 /* segment; we first need to find in which contour the extremum */
338 /* now set the `round' flag depending on the segment's kind */
732 AF_Segment segment = NULL; local
780 FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */
781 FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */
825 /* we are just leaving an edge; record a new segment! */
826 segment->last = point;
827 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 );
829 /* a segment is round if either its first or last point */
831 if ( ( segment->first->flags | point->flags )
    [all...]
aflatin2.c 292 /* segment; we first need to find in which contour the extremum */
331 /* now, set the `round' flag depending on the segment's kind */
684 AF_Segment segment = NULL; local
745 else /* otherwise, find first segment start, if any */
763 /* we're at the start of a new segment */
790 /* record new segment */
791 error = af_axis_hints_new_segment( axis, memory, &segment );
795 segment[0] = seg0;
796 segment->dir = first->out_dir;
797 segment->first = first
    [all...]
  /dalvik/libdex/
SysUtil.h 58 * segment that can be made writable. (In some cases, such as when
66 * Map part of a file into a shared, read-only memory segment.
90 * Release the pages associated with a shared memory segment.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
position.py 24 """Object representing a segment of a string.
27 start: The index in to the string where the segment starts.
28 length: The length of the string segment.
  /external/stressapptest/
stressapptest.1 76 .B \-\-blocks\-per\-segment <number>
77 Number of blocks to read/write per segment per iteration (\-d).
165 .B \-\-segment-size <size>
  /external/v8/src/
date.cc 69 void DateCache::ClearSegment(DST* segment) {
70 segment->start_sec = kMaxEpochTimeInSec;
71 segment->end_sec = -kMaxEpochTimeInSec;
72 segment->offset_ms = 0;
73 segment->last_used = 0;
206 // Extend the after_ segment.
209 // The after_ segment is either invalid or starts too late.
211 // If the after_ segment is valid, replace it with a new segment.
266 // If the before_ segment ends too early, then jus
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 234 * @param pdu The WAP-WDP PDU segment
248 int segment = (0xFF & pdu[index++]); // >= 0 local
250 if (segment >= totalSegments) {
251 Rlog.e(TAG, "WDP bad segment #" + segment + " expecting 0-" + (totalSegments - 1));
255 // Only the first segment contains sourcePort and destination Port
258 if (segment == 0) {
259 //process WDP segment
276 + ", ID = " + referenceNumber + ", segment# = " + segment + '/' + totalSegments)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
ResizeState.java 24 import com.android.ide.common.api.Segment;
51 public Segment horizontalFillSegment;
54 public Segment verticalFillSegment;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/
MockNodeProxy.java 33 * and making the last segment of the FQCN the XML name of the view (e.g. "View")
50 * and making the last segment of the FQCN the XML name of the view (e.g. "View").
54 * matching the last FQCN segment (e.g. "Button")
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 34 /// Each node has storage for up to one path and a map mapping a path segment to
45 /// - If the node has a path 'p2' but no children, take the last path segment
48 /// - Insert a new child for the last segment of 'p' and insert the rest of
85 /// \c findEquivalent() function is called recursively for each path segment
91 /// - .. a child matching the next path segment. In this case, all children of
156 // The children of this node stored in a map based on the next path segment.
  /external/eigen/test/eigen2/
eigen2_submatrices.cpp 119 VERIFY_IS_APPROX(v1.template start<2>(), v1.segment(0,2));
120 VERIFY_IS_APPROX(v1.template start<2>(), v1.template segment<2>(0));
124 VERIFY_IS_APPROX(v1.template end<2>(), v1.segment(i,2));
125 VERIFY_IS_APPROX(v1.template end<2>(), v1.template segment<2>(i));
127 VERIFY_IS_APPROX(v1.segment(i,2), v1.template segment<2>(i));
  /external/webkit/Source/WebCore/platform/audio/
HRTFPanner.cpp 169 for (unsigned segment = 0; segment < numberOfSegments; ++segment) {
175 // Each segment renders with an azimuth index closer by one to the desired azimuth index.
208 // Calculate the source and destination pointers for the current segment.
209 unsigned offset = segment * framesPerSegment;
  /external/sonivox/jet_tools/JetCreator/
JetDialogs.py 299 self.segment = None
359 InfoMsg("Start/End", "The segment starting and ending times are illogical.")
363 InfoMsg("Segment Name", "The segment must have a name.")
367 InfoMsg("MIDI File", "The segment must have a midi file selected.")
383 """ Builds the segment info for graphing """
386 segment = JetSegment(self.GetValue(JetDefs.F_SEGNAME),
401 segment = JetSegment(self.GetValue(JetDefs.F_SEGNAME),
414 return segment
423 """ Play the segment button pressed """
1017 segment = JetSegment("Test Segment Name", 'C:\/_Data\/JetCreator\/JetDemo1\/jenn_Burning Line.mid', variable
    [all...]
  /external/grub/stage1/
stage1.h 66 /* The stack segment. */
69 /* The segment of disk buffer. The disk buffer MUST be 32K long and
  /external/webkit/Source/WebCore/svg/
SVGPointList.cpp 61 FloatPoint segment = FloatPoint(adjustAnimatedValue(from.x(), to.x(), progress), local
63 resultList.append(segment);
  /frameworks/base/libs/hwui/
Patch.cpp 160 const float segment = stepY - previousStepY; local
163 y2 = y1 + floorf(segment * stretchY + 0.5f);
165 y2 = y1 + segment * rescaleY;
168 float vOffset = y1 == y2 ? 0.0f : 0.5 - (0.5 * segment / (y2 - y1));
228 const float segment = stepX - previousStepX; local
231 x2 = x1 + floorf(segment * stretchX + 0.5f);
233 x2 = x1 + segment * rescaleX;
236 float uOffset = x1 == x2 ? 0.0f : 0.5 - (0.5 * segment / (x2 - x1));
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 23 struct Segment {
34 // is the corner where the previous segment meets this segment
52 typedef SkTArray<Segment, true> SegmentArray;
125 const Segment& sega = (*segments)[a];
127 Segment& segb = (*segments)[b];
137 if (Segment::kLine == segb.fType) {
149 const Segment& sega = (*segments)[a];
151 Segment& segb = (*segments)[b];
250 segments->back().fType = Segment::kLine
    [all...]
  /external/libxml2/
uri.c 505 * @empty: allow an empty segment
507 * Parse a segment and fills in the appropriate fields
510 * segment = *pchar
511 * segment-nz = 1*pchar
512 * segment-nz-nc = 1*( unreserved / pct-encoded / sub-delims / "@" )
513 * ; non-zero-length segment without any colon ":"
542 * path-abempty = *( "/" segment )
582 * path-absolute = "/" [ segment-nz *( "/" segment ) ]
628 * path-rootless = segment-nz *( "/" segment
1821 xmlChar *ret, *segment = NULL; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 95 * The first intersecting segment that is found is returned; in the case where more than one
96 * segment is found, the segment closest to the start point is returned.
429 * returns the closest intersecting segment, if any exists.
443 LineSegment segment = (LineSegment)segmentArray[x]; local
448 movementDirection.dot(segment.mNormal) : -1.0f;
451 (excludeObject == null || segment.owner != excludeObject) &&
452 segment.calculateIntersection(startPoint, endPoint, hitPoint)) {
458 normalX = segment.mNormal.x;
459 normalY = segment.mNormal.y
490 LineSegment segment = (LineSegment)segmentArray[x]; local
    [all...]
  /external/webkit/Source/WebKit2/Platform/
Region.cpp 57 for (Shape::SegmentIterator segment = m_shape.segments_begin(span), end = m_shape.segments_end(span); segment != end && segment + 1 != end; segment += 2) {
58 int x = *segment;
59 int width = *(segment + 1) - x;
101 // Since the segments are equal the second segment can just be ignored.
169 for (Shape::SegmentIterator segment = segments_begin(span), end = segments_end(span); segment != end; ++segment)
    [all...]
  /hardware/ti/omap3/dspbridge/inc/
cmm.h 172 * ulSegId: SM segment Id used in CMM_Calloc() attrs.
173 * Set to 0 to use default segment.
245 * pAttrs Attrs contains segment ID.Default if NULL.
270 * ulDSPSize: Size of DSP segment in bytes.
271 * pulSegId: Address to store segment Id.
278 * - On success *pulSegId is a valid SM segment ID.
300 * Unregister the given memory segment that was previously registered
304 * ulSegId Segment identifier returned by CMM_RegisterGPPSMSeg.
407 * pAddr: Virtual base address of segment.
409 * uSegId: Segment identifier of SM segment(s
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
cmm.h 172 * ulSegId: SM segment Id used in CMM_Calloc() attrs.
173 * Set to 0 to use default segment.
245 * pAttrs Attrs contains segment ID.Default if NULL.
270 * ulDSPSize: Size of DSP segment in bytes.
271 * pulSegId: Address to store segment Id.
278 * - On success *pulSegId is a valid SM segment ID.
300 * Unregister the given memory segment that was previously registered
304 * ulSegId Segment identifier returned by CMM_RegisterGPPSMSeg.
407 * pAddr: Virtual base address of segment.
409 * uSegId: Segment identifier of SM segment(s
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7 891011>>