HomeSort by relevance Sort by last modified time
    Searched refs:endPoint (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceLinearGradient.cpp 51 FloatPoint RenderSVGResourceLinearGradient::endPoint(const LinearGradientAttributes& attributes) const
58 gradientData->gradient = Gradient::create(startPoint(m_attributes), endPoint(m_attributes));
RenderSVGResourceLinearGradient.h 47 FloatPoint endPoint(const LinearGradientAttributes&) const;
SVGRenderTreeAsText.cpp 557 ts << " [start=" << gradient->startPoint(attributes) << "] [end=" << gradient->endPoint(attributes) << "]\n";
  /packages/apps/UnifiedEmail/src/com/android/mail/perf/
Timer.java 157 PerformancePoint endPoint = values.get(i + 1);
159 cpuDurationNanos += endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos;
160 wallDurationMillis += endPoint.mWallTimeMillis - startPoint.mWallTimeMillis;
210 PerformancePoint endPoint = new PerformancePoint();
215 long cpuDurationNanos = endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos;
216 long wallDurationMillis = endPoint.mWallTimeMillis - startPoint.mWallTimeMillis;
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 369 void SubGraph::RemoveRuleStarts (int startPoint, int endPoint)
371 if (startPoint == -1 && endPoint == -1) {
373 endPoint= lastId;
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
390 void SubGraph::RemoveRuleEnds (int startPoint, int endPoint)
392 if (startPoint == -1 && endPoint == -1) {
394 endPoint= lastId;
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
411 void SubGraph::RemoveNulls (int startPoint, int endPoint)
413 if (startPoint == -1 && endPoint == -1)
    [all...]
sub_grph.h 171 void RemoveUnreachedConnections (int startPoint, int endPoint);
172 void RemoveUnreachedConnectionsDebug (int startPoint, int endPoint);
173 void RemoveTagConnections (int startPoint, int endPoint);
237 void RemoveNulls (int startPoint, int endPoint);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 288 int endPoint = m_end;
298 endPoint = m_start;
308 newPos = std::min(newPos, endPoint);
310 newPos = std::max(newPos, endPoint);
313 if (newPos == endPoint) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 135 AnnotationEndpoint endPoint = null;
137 // Do we have an endpoint at the beginning of this annotation already?
169 // there is an endpoint that would intersect with this annotation. Find one of the annotations
170 // associated with the endpoint, to print in the error message
186 // There are no annotations on this endpoint. This "shouldn't" happen. We can still throw an exception.
188 "Cannot add annotation %s, due to existing annotation endpoint at %d",
194 // the next endpoint matches the end of the annotation we are adding
195 endPoint = nextEntry.getValue();
213 // If endPoint is null, we need to create a new, empty one and add it to annotations
214 if (endPoint == null)
    [all...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 274 int endPoint = resLengthInChars;
275 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
279 if (endPoint - startPoint >= 1) {
374 int endPoint = resLengthInChars;
375 StringBuilder result1 = new StringBuilder(16 + endPoint - startPoint);
379 if (endPoint - startPoint >= 1) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 59 // add... method. For example, a line returns the endpoint, while a cubic returns
60 // two tangent points and the endpoint.
119 void addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& endPoint);
120 void addBezierCurveTo(const FloatPoint& controlPoint1, const FloatPoint& controlPoint2, const FloatPoint& endPoint);
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 99 * @param endPoint The end point for the ray in world units.
109 public boolean castRay(Vector2 startPoint, Vector2 endPoint, Vector2 movementDirection,
117 executeRay(startPoint, endPoint, hitPoint, hitNormal, mTileSegmentTester) != -1) {
126 if (testSegmentAgainstList(mTemporarySegments, startPoint, endPoint, tempHitPoint,
235 public void addTemporarySurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal,
239 newSegment.set(startPoint, endPoint, normal);
271 * @param endPoint The ending point for the ray in world space.
277 protected int executeStraigtRay(final Vector2 startPoint, final Vector2 endPoint,
304 if (visitor.visit(mCollisionTiles[tileIndex], startPoint, endPoint,
324 * @param endPoint The ending point for the ray in world space
    [all...]
SolidSurfaceComponent.java 75 public void addSurface(Vector2 startPoint, Vector2 endPoint, Vector2 normal) {
77 mEndPoints.add(endPoint);
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 47 int endPoint;
142 mLines[i].endPoint = Integer.valueOf(idx[1]);
283 ThreeDPoint end = mRotatedPoints[l.endPoint];
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 612 int endPoint = startPoint + requestSize;
613 if (endPoint > nameList.size()) {
614 endPoint = nameList.size();
618 for (int j = startPoint; j < endPoint; j++) {
    [all...]
BluetoothPbapVcardManager.java 344 final int startPoint, final int endPoint, final boolean vcardType21,
346 if (startPoint < 1 || startPoint > endPoint) {
347 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
369 if (startPoint == endPoint) {
372 callsCursor.moveToPosition(endPoint - 1);
387 if (startPoint == endPoint) {
409 final int endPoint, final boolean vcardType21, String ownerVCard,
411 if (startPoint < 1 || startPoint > endPoint) {
412 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
427 if (startPoint == endPoint) {
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 316 int endPoint = stack.indexOf('\n');
317 if (endPoint != -1) {
318 int nextLine = stack.indexOf('\n', endPoint + 1);
  /external/llvm/lib/CodeGen/
LiveIntervalAnalysis.cpp 477 if (LRQ.endPoint() < MBBEnd) {
478 LI->removeSegment(Kill, LRQ.endPoint());
479 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
510 if (LRQ.endPoint() < MBBEnd) {
511 LI->removeSegment(MBBStart, LRQ.endPoint());
512 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
810 /// Move def to NewIdx, assert endpoint after NewIdx.
    [all...]
RegisterCoalescer.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 132 D2D1FORCEINLINE D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES LinearGradientBrushProperties(const D2D1_POINT_2F &startPoint, const D2D1_POINT_2F &endPoint) {
133 D2D1_LINEAR_GRADIENT_BRUSH_PROPERTIES r = {startPoint, endPoint};
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 88 const SlotIndex EndPoint;
92 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint,
94 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
113 return EndPoint.isDead();
136 SlotIndex endPoint() const {
137 return EndPoint;
453 SlotIndex EndPoint;
457 EndPoint = I->end;
462 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PinchViewportTest.cpp 743 WebPoint endPoint(extentRect.x, extentRect.y);
750 mainFrame->moveRangeSelection(initialPoint, endPoint);
    [all...]
  /external/chromium_org/third_party/skia/src/device/xps/
SkXPSDevice.cpp 840 XPS_POINT endPoint;
843 endPoint = xps_point(info.fPoint[1]);
849 endPoint = xps_point(info.fPoint[1], localMatrix);
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp 841 XPS_POINT endPoint;
844 endPoint = xps_point(info.fPoint[1]);
850 endPoint = xps_point(info.fPoint[1], localMatrix);
    [all...]
  /prebuilts/misc/common/power-helper/
PowerTestHelper.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 

Completed in 599 milliseconds

1 2