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

1 2 3 4

  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_DirectionTest.java 20 import android.graphics.Path.Direction;
26 @TestTargetClass(Path.Direction.class)
35 assertEquals(Direction.CW, Direction.valueOf("CW"));
36 assertEquals(Direction.CCW, Direction.valueOf("CCW"));
37 // Every Direction element will be tested somewhere else.
47 Direction[] expected = {
48 Direction.CW,
49 Direction.CCW}
    [all...]
PathMeasureTest.java 27 import android.graphics.Path.Direction;
86 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW);
100 mPath.addRect(1, 2, 3, 4, Path.Direction.CW);
112 mPath.addRect(1, 2, 3, 4, Path.Direction.CW);
124 circle.addCircle(0, 0, 1, Direction.CW);
157 mPath.addRect(1, 2, 3, 4, Path.Direction.CW);
171 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW);
PathDashPathEffectTest.java 31 import android.graphics.Path.Direction;
92 p.addRect(new RectF(-SQUARE, -SQUARE, SQUARE, SQUARE), Direction.CCW);
SumPathEffectTest.java 33 import android.graphics.Path.Direction;
55 path.addRect(10, 10, WIDTH - 10, HEIGHT - 10, Direction.CW);
PathTest.java 64 args = {android.graphics.RectF.class, android.graphics.Path.Direction.class}
78 path.addRect(rect, Path.Direction.CW);
87 android.graphics.Path.Direction.class}
100 path.addRect(LEFT, TOP, RIGHT, BOTTOM, Path.Direction.CW);
288 args = {float.class, float.class, float.class, android.graphics.Path.Direction.class}
300 path.addCircle(XCOORD, YCOORD, 10.0f, Path.Direction.CW);
375 args = {android.graphics.RectF.class, android.graphics.Path.Direction.class}
385 path.addRect(bounds, Path.Direction.CW);
485 args = {android.graphics.RectF.class, android.graphics.Path.Direction.class}
492 path.addOval(oval, Path.Direction.CW)
    [all...]
  /external/webkit/WebKit/android/nav/
CachedHistory.h 42 void addToVisited(const CachedNode* , CachedFrame::Direction );
43 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
55 void setWorking(CachedFrame::Direction , const CachedFrame* ,
62 CachedFrame::Direction mDirection;
69 CachedFrame::Direction mLastMove;
70 CachedFrame::Direction mPriorMove;
81 const char* direction(CachedFrame::Direction d) const;
CachedHistory.cpp 44 void CachedHistory::addToVisited(const CachedNode* node, CachedFrame::Direction direction)
48 mVisited[0].mDirection = direction;
51 bool CachedHistory::checkVisited(const CachedNode* node, CachedFrame::Direction direction) const
53 // if the direction is unchanged and we've already visited this node, don't visit it again
56 if (direction != mVisited[index].mDirection)
58 index++; // compare with last direction, previous to last node (where the arrow took us from)
93 void CachedHistory::setWorking(CachedFrame::Direction newMove,
97 CachedFrame::Direction lastAxis = (CachedFrame::Direction) (mLastMove & ~CachedFrame::RIGHT_DOWN); // up, left or uniniti (…)
139 const char* CachedHistory::Debug::direction(CachedFrame::Direction d) const function in class:android::CachedHistory::Debug
    [all...]
CachedRoot.h 49 bool adjustForScroll(BestData* , Direction , WebCore::IntPoint* scrollPtr,
71 void innerMove(const CachedNode* ,BestData* bestData, Direction ,
77 const CachedNode* moveCursor(Direction , const CachedFrame** , WebCore::IntPoint* scroll);
90 bool scrollDelta(WebCore::IntRect& cursorRingBounds, Direction , int* delta);
CachedFrame.h 51 enum Direction {
84 bool checkVisited(const CachedNode* , CachedFrame::Direction ) const;
200 static bool CheckBetween(Direction , const WebCore::IntRect& bestRect,
202 bool checkBetween(BestData* , Direction );
204 void findClosest(BestData* , Direction original, Direction test,
  /external/webkit/WebCore/platform/text/
BidiContext.h 36 static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction direction, bool override = false, BidiContext* parent = 0);
40 WTF::Unicode::Direction dir() const { return static_cast<WTF::Unicode::Direction>(m_direction); }
44 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiContext* parent)
46 , m_direction(direction)
53 unsigned m_direction : 5; // Direction
BidiResolver.h 64 BidiStatus(WTF::Unicode::Direction eorDir, WTF::Unicode::Direction lastStrongDir, WTF::Unicode::Direction lastDir, PassRefPtr<BidiContext> bidiContext)
72 WTF::Unicode::Direction eor;
73 WTF::Unicode::Direction lastStrong;
74 WTF::Unicode::Direction last;
89 BidiCharacterRun(int start, int stop, BidiContext* context, WTF::Unicode::Direction dir)
150 void setLastDir(WTF::Unicode::Direction lastDir) { m_status.last = lastDir; }
151 void setLastStrongDir(WTF::Unicode::Direction lastStrongDir) { m_status.lastStrong = lastStrongDir; }
152 void setEorDir(WTF::Unicode::Direction eorDir) { m_status.eor = eorDir;
417 Direction direction = (embedding == RightToLeftEmbedding || embedding == RightToLeftOverride) ? RightToLeft : LeftToRight; local
    [all...]
BidiContext.cpp 31 PassRefPtr<BidiContext> BidiContext::create(unsigned char level, Direction direction, bool override, BidiContext* parent)
33 ASSERT(direction == (level % 2 ? RightToLeft : LeftToRight));
36 return adoptRef(new BidiContext(level, direction, override, parent));
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 91 mPath.addRoundRect(r, mOuterRadii, Path.Direction.CW);
93 mPath.addRect(r, Path.Direction.CW);
101 Path.Direction.CCW);
103 mPath.addRect(mInnerRect, Path.Direction.CCW);
  /external/webkit/WebCore/rendering/
BidiRun.h 37 BidiRun(int start, int stop, RenderObject* object, BidiContext* context, WTF::Unicode::Direction dir)
RootInlineBox.h 152 WTF::Unicode::Direction m_lineBreakBidiStatusEor : 5;
153 WTF::Unicode::Direction m_lineBreakBidiStatusLastStrong : 5;
154 WTF::Unicode::Direction m_lineBreakBidiStatusLast : 5;
InlineIterator.h 56 WTF::Unicode::Direction direction() const;
87 TextDirection dir = next->style()->direction();
88 WTF::Unicode::Direction d = (ub == Embed
112 TextDirection dir = next->style()->direction();
113 WTF::Unicode::Direction d = (ub == Embed
157 TextDirection dir = o->style()->direction();
158 WTF::Unicode::Direction d = (ub == Embed
217 ALWAYS_INLINE WTF::Unicode::Direction InlineIterator::direction() cons function in class:WebCore::InlineIterator
    [all...]
  /sdk/traceview/src/com/android/traceview/
MethodData.java 376 return (mDirection == Direction.INCREASING) ? result : -result;
380 return (mDirection == Direction.INCREASING) ? -1 : 1;
382 return (mDirection == Direction.INCREASING) ? 1 : -1;
387 return (mDirection == Direction.INCREASING) ? -1 : 1;
389 return (mDirection == Direction.INCREASING) ? 1 : -1;
396 return (mDirection == Direction.INCREASING) ? result : -result;
411 return (mDirection == Direction.INCREASING) ? result : -result;
421 if (mDirection == Direction.INCREASING)
422 mDirection = Direction.DECREASING;
424 mDirection = Direction.INCREASING
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 48 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
49 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
  /external/skia/include/core/
SkPath.h 353 enum Direction {
354 /** clockwise direction for adding closed contours */
356 /** counter-clockwise direction for adding closed contours */
362 @param dir The direction to wind the rectangle's contour
364 void addRect(const SkRect& rect, Direction dir = kCW_Direction);
376 @param dir The direction to wind the rectangle's contour
379 Direction dir = kCW_Direction);
384 @param dir The direction to wind the oval's contour
386 void addOval(const SkRect& oval, Direction dir = kCW_Direction);
396 @param dir The direction to wind the circle's contou
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 332 public enum Direction {
338 Direction(int ni) {
348 * @param dir The direction to wind the rectangle's contour
350 public void addRect(RectF rect, Direction dir) {
364 * @param dir The direction to wind the rectangle's contour
367 Direction dir) {
375 * @param dir The direction to wind the oval's contour
377 public void addOval(RectF oval, Direction dir) {
390 * @param dir The direction to wind the circle's contour
392 public void addCircle(float x, float y, float radius, Direction dir)
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 127 ATTRIBUTE Octets-Direction 228 integer
246 # Octets-Direction
247 VALUE Octets-Direction Sum 0
248 VALUE Octets-Direction Input 1
249 VALUE Octets-Direction Output 2
250 VALUE Octets-Direction MaxOveral 3
251 VALUE Octets-Direction MaxSession 4
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
TrafficMonitor.c 305 this reset element will be with the same threshold but opposite in direction
337 TrafficAlertElement->Direction = TrafficAlertRegParm->Direction;
349 /*corresponding to the Alert request but opposite in the direction.*/
365 the direction and the call back that is set to null the CurrentState set to disable.
370 /*opposite in the direction from the TrafficAlertElement->Direction*/
371 if (TrafficAlertRegParm->Direction == TRAFF_UP)
372 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_DOWN;
374 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_UP
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/
TrafficMonitor.c 293 this reset element will be with the same threshold but opposite in direction
325 TrafficAlertElement->Direction = TrafficAlertRegParm->Direction;
337 /*corresponding to the Alert request but opposite in the direction.*/
353 the direction and the call back that is set to null the CurrentState set to disable.
358 /*opposite in the direction from the TrafficAlertElement->Direction*/
359 if (TrafficAlertRegParm->Direction == TRAFF_UP)
360 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_DOWN;
362 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_UP
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
TrafficMonitor.c 305 this reset element will be with the same threshold but opposite in direction
337 TrafficAlertElement->Direction = TrafficAlertRegParm->Direction;
349 /*corresponding to the Alert request but opposite in the direction.*/
365 the direction and the call back that is set to null the CurrentState set to disable.
370 /*opposite in the direction from the TrafficAlertElement->Direction*/
371 if (TrafficAlertRegParm->Direction == TRAFF_UP)
372 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_DOWN;
374 TrafficAlertElement->ResetElment[0]->Direction = TRAFF_UP
    [all...]
  /external/skia/src/animator/
SkPathParts.cpp 212 SK_MEMBER(direction, PathDirection)
219 SkAddGeom::SkAddGeom() : direction(SkPath::kCCW_Direction) {
241 fPath->fPath.addRect(fRect, (SkPath::Direction) direction);
257 fPath->fPath.addOval(fRect, (SkPath::Direction) direction);
279 fPath->fPath.addCircle(x, y, radius, (SkPath::Direction) direction);
300 fPath->fPath.addRoundRect(fRect, rx, ry, (SkPath::Direction) direction);
    [all...]

Completed in 779 milliseconds

1 2 3 4