/external/skia/samplecode/ |
SamplePathFuzz.cpp | 206 SkPath::Direction makeDirection() { 207 return (SkPath::Direction) fRand.nextRangeU(SkPath::kCW_Direction, SkPath::kCCW_Direction); 385 SkPath::Direction dir = makeDirection(); 393 SkPath::Direction dir = makeDirection(); 399 SkPath::Direction dir = makeDirection();
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 25 import android.graphics.Path.Direction; 556 private static Direction getDirection(int direction) { 557 for (Direction d : Direction.values()) { 558 if (direction == d.nativeInt) { 824 * @param dir The direction to wind the rectangle's contour 830 Direction direction = getDirection(dir); local 832 switch (direction) { [all...] |
/external/clang/lib/AST/ |
CommentSema.cpp | 233 int Direction = getParamPassDirection(ArgLower); 235 if (Direction == -1) { 240 Direction = getParamPassDirection(ArgLower); 243 if (Direction != -1) { 245 (ParamCommandComment::PassDirection)Direction); 250 Direction = ParamCommandComment::In; // Sane fall back. 253 Command->setDirection((ParamCommandComment::PassDirection)Direction, 265 // User didn't provide a direction argument. [all...] |
/external/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 90 /// Dependence::DVEntry - Each level in the distance/direction vector 91 /// has a direction (or perhaps a union of several directions), and 102 unsigned char Direction : 3; // Init to ALL, then refine. 108 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false), 161 /// getDirection - Returns the direction associated with a particular 214 /// dependence (direction vectors, etc.) and is used when the compiler is 247 /// getDirection - Returns the direction associated with a particular 368 unsigned char Direction; 502 /// have 2 loops in common, so CommonLevels will equal 2 and the direction 603 /// Sets appropriate direction vector entry and, when possible [all...] |
/platform_testing/tests/functional/permission/src/com/android/functional/permissiontests/ |
PermissionHelper.java | 29 import android.support.test.uiautomator.Direction; 266 view.scroll(Direction.DOWN, 1.0f); 281 view.scroll(Direction.DOWN, 1.0f);
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
ViewClippingTests.java | 118 Path.Direction.CW);
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
SwipeAction.java | 25 import io.appium.droiddriver.scroll.Direction.PhysicalDirection; 73 * @param direction specifies where the view port will move, instead of the 77 public static SwipeAction toScroll(PhysicalDirection direction) { 78 return new SwipeAction(direction, scrollSteps); 89 * @param direction specifies where the view port will move, instead of the 93 public static SwipeAction toFling(PhysicalDirection direction) { 94 return new SwipeAction(direction, flingSteps); 97 private final PhysicalDirection direction; field in class:SwipeAction 108 public SwipeAction(PhysicalDirection direction, int steps) { 109 this(direction, steps, false, 1000L) [all...] |
/external/llvm/include/llvm/ |
PassAnalysisSupport.h | 181 Pass *getAnalysisIfAvailable(AnalysisID ID, bool Direction) const;
|
/frameworks/base/graphics/java/android/graphics/ |
Outline.java | 241 mPath.addOval(left, top, right, bottom, Path.Direction.CW);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ViewLayersActivity5.java | 77 Math.min(getWidth(), getHeight()) / 3.0f, Path.Direction.CW);
|
/hardware/ti/omap3/dspbridge/inc/ |
qosregistry.h | 276 UINT Direction; /* DSP_TONODE or DSP_FROMNODE */
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
qosregistry.h | 270 UINT Direction; /* DSP_TONODE or DSP_FROMNODE */
|
/platform_testing/tests/functional/settingstests/src/com/android/settings/functional/ |
BluetoothNetworkSettingsTests.java | 29 import android.support.test.uiautomator.Direction;
|
/platform_testing/tests/jank/sysapp/src/com/android/sysapp/janktests/ |
ChromeJankTests.java | 33 import android.support.test.uiautomator.Direction;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
cciss_ioctl.h | 60 //transfer direction 135 BYTE Direction:2;
|
/external/skia/gm/ |
convex_all_line_paths.cpp | 40 static SkPath GetPath(int index, int offset, SkPath::Direction dir) { 237 // lines, wound the right direction, and short enough to fit in one 251 // Draw a single path several times, shrinking it, flipping its direction 267 const SkPath::Direction dirs[2] = { SkPath::kCW_Direction, SkPath::kCCW_Direction };
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mspaddr.h | 148 STDMETHOD (CreateTerminal) (BSTR pTerminalClass,__LONG32 lMediaType,TERMINAL_DIRECTION Direction,ITTerminal **ppTerminal); 149 STDMETHOD (GetDefaultStaticTerminal) (__LONG32 lMediaType,TERMINAL_DIRECTION Direction,ITTerminal **ppTerminal);
|
/external/clang/include/clang/AST/ |
Comment.h | 157 /// Parameter passing direction, see ParamCommandComment::PassDirection. 158 unsigned Direction : 2; 160 /// True if direction was specified explicitly in the comment. 735 ParamCommandCommentBits.Direction = In; 752 return static_cast<PassDirection>(ParamCommandCommentBits.Direction); 759 void setDirection(PassDirection Direction, bool Explicit) { 760 ParamCommandCommentBits.Direction = Direction;
|
/platform_testing/libraries/google-app-camera-helper/src/android/platform/test/helpers/ |
GoogleCameraHelperImpl.java | 27 import android.support.test.uiautomator.Direction; 167 activityView.swipe(Direction.LEFT, 1.0f); 734 activityView.swipe(Direction.RIGHT, 1.0f); [all...] |
/external/skia/src/core/ |
SkPath.cpp | 259 SkPathPriv::FirstDirection direction; local 260 if (!SkPathPriv::CheapComputeFirstDirection(*this, &direction)) { 311 if (!check_edge_against_rect(quadPts[0], quadPts[2], rect, direction)) { 314 if (!check_edge_against_rect(quadPts[2], quadPts[4], rect, direction)) { 318 if (!check_edge_against_rect(prevPt, pts[nextPt], rect, direction)) { 326 return check_edge_against_rect(prevPt, firstPt, rect, direction); 379 Determines if path is a rect by keeping track of changes in direction 382 The direction is computed such that: 394 There's more than four changes of direction. 396 The line reverses direction [all...] |
/external/webrtc/talk/app/webrtc/ |
statstypes.cc | 129 StatsReport::Direction direction) 130 : TypedId(type, id), direction_(direction) {} 145 const StatsReport::Direction direction_; 644 StatsType type, const std::string& id, StatsReport::Direction direction) { 645 return Id(new RefCountedObject<IdWithDirection>(type, id, direction));
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
ModeTransitionView.java | 126 Path.Direction.CW); 130 mShadePath.addRect(0, 0, mWidth, - getScrollDistance(), Path.Direction.CW);
|
/packages/apps/Gallery/src/com/android/camera/ |
HighlightView.java | 95 Path.Direction.CW); 98 path.addRect(new RectF(mDrawRect), Path.Direction.CW);
|
/platform_testing/tests/androidbvt/src/com/android/androidbvt/ |
SysUINotificationShadeTests.java | 33 import android.support.test.uiautomator.Direction; 185 obj.swipe(Direction.LEFT, 1.0f);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
OutlineTest.java | 149 path.addCircle(50, 50, 50, Path.Direction.CW);
|