HomeSort by relevance Sort by last modified time
    Searched refs:endPoint (Results 1 - 25 of 27) 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 534 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 286 int endPoint = m_end;
296 endPoint = m_start;
306 newPos = min(newPos, endPoint);
308 newPos = max(newPos, endPoint);
311 if (newPos == endPoint) {
  /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.
100 void addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& endPoint);
101 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);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 319 final int startPoint, final int endPoint, final boolean vcardType21) {
320 if (startPoint < 1 || startPoint > endPoint) {
321 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
343 if (startPoint == endPoint) {
346 callsCursor.moveToPosition(endPoint - 1);
358 if (startPoint == endPoint) {
380 final int endPoint, final boolean vcardType21, String ownerVCard) {
381 if (startPoint < 1 || startPoint > endPoint) {
382 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
397 if (startPoint == endPoint) {
    [all...]
BluetoothPbapObexServer.java 577 int endPoint = startPoint + requestSize;
578 if (endPoint > nameList.size()) {
579 endPoint = nameList.size();
583 for (int j = startPoint; j < endPoint; j++) {
    [all...]
  /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];
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 299 int endPoint = stack.indexOf('\n');
300 if (endPoint != -1) {
301 int nextLine = stack.indexOf('\n', endPoint + 1);
  /external/llvm/lib/CodeGen/
LiveIntervalAnalysis.cpp 465 if (LRQ.endPoint() < MBBEnd) {
466 LI->removeRange(Kill, LRQ.endPoint());
467 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
498 if (LRQ.endPoint() < MBBEnd) {
499 LI->removeRange(MBBStart, LRQ.endPoint());
500 if (EndPoints) EndPoints->push_back(LRQ.endPoint());
793 /// Move def to NewIdx, assert endpoint after NewIdx.
    [all...]
RegisterCoalescer.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 549 SlotIndex EndPoint;
568 EndPoint = I->end;
587 EndPoint = I->end;
606 return EndPoint.isDead();
629 SlotIndex endPoint() const {
630 return EndPoint;
  /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 840 XPS_POINT endPoint;
843 endPoint = xps_point(info.fPoint[1]);
849 endPoint = xps_point(info.fPoint[1], localMatrix);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 

Completed in 2727 milliseconds

1 2