/external/autotest/client/common_lib/cros/cfm/metrics/ |
media_info_metrics_extractor_unittest.py | 7 DIRECTION = media_info_metrics_extractor.Direction 24 direction=DIRECTION.RECEIVER) 31 direction=DIRECTION.RECEIVER, 39 direction=DIRECTION.RECEIVER, 49 'bytessent', direction=DIRECTION.SENDER [all...] |
media_metrics_collector.py | 7 DIRECTION = media_info_metrics_extractor.Direction 31 'fps', direction=DIRECTION.RECEIVER, media_type=MEDIA_TYPE.VIDEO) 61 direction=DIRECTION.SENDER, variable 65 direction=DIRECTION.SENDER, variable 69 direction=DIRECTION.SENDER variable 77 direction=DIRECTION.SENDER, variable 81 direction=DIRECTION.RECEIVER, variable 86 direction=DIRECTION.SENDER, variable 90 direction=DIRECTION.RECEIVER, variable 94 direction=DIRECTION.RECEIVER, variable 107 direction=DIRECTION.RECEIVER, variable 112 direction=DIRECTION.RECEIVER, variable 117 direction=DIRECTION.SENDER, variable 121 direction=DIRECTION.SENDER, variable 125 direction=DIRECTION.SENDER, variable [all...] |
/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;
|
/external/skia/gm/ |
polygonoffset.cpp | 13 static void create_ngon(int n, SkPoint* pts, SkScalar w, SkScalar h, SkPath::Direction dir) { 429 static void GetConvexPolygon(int index, SkPath::Direction dir, 464 static void GetSimplePolygon(int index, SkPath::Direction dir, 522 const SkPath::Direction dirs[2] = { SkPath::kCW_Direction, SkPath::kCCW_Direction };
|
convex_all_line_paths.cpp | 179 static SkPath GetPath(int index, SkPath::Direction dir) { 249 // lines, wound the right direction, and short enough to fit in one 263 // Draw a single path several times, shrinking it, flipping its direction 286 const SkPath::Direction dirs[2] = { SkPath::kCW_Direction, SkPath::kCCW_Direction };
|
/external/skqp/gm/ |
polygonoffset.cpp | 13 static void create_ngon(int n, SkPoint* pts, SkScalar w, SkScalar h, SkPath::Direction dir) { 429 static void GetConvexPolygon(int index, SkPath::Direction dir, 464 static void GetSimplePolygon(int index, SkPath::Direction dir, 522 const SkPath::Direction dirs[2] = { SkPath::kCW_Direction, SkPath::kCCW_Direction };
|
convex_all_line_paths.cpp | 179 static SkPath GetPath(int index, SkPath::Direction dir) { 249 // lines, wound the right direction, and short enough to fit in one 263 // Draw a single path several times, shrinking it, flipping its direction 286 const SkPath::Direction dirs[2] = { SkPath::kCW_Direction, SkPath::kCCW_Direction };
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
PassAnalysisSupport.h | 158 Pass *getAnalysisIfAvailable(AnalysisID ID, bool Direction) const;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ |
PassAnalysisSupport.h | 183 Pass *getAnalysisIfAvailable(AnalysisID ID, bool Direction) const;
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/ |
OhciUrb.c | 348 Ed->Word0.Direction = Value;
413 return Ed->Word0.Direction;
|
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/ |
DebugCommunicationLibUsb3Internal.h | 419 /// USB data transfer direction
452 EFI_USB_DATA_DIRECTION Direction;
707 @param Direction The direction of data transfer.
725 IN EFI_USB_DATA_DIRECTION Direction,
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
TestBcp47Transforms.java | 18 import org.unicode.cldr.util.CLDRTransforms.Direction; 79 if (directionInfo.getDirection() == Direction.both) {
|
/external/syzkaller/vendor/golang.org/x/text/secure/bidirule/ |
bidirule.go | 132 // Direction reports the direction of the given label as defined by RFC 5893. 135 func Direction(b []byte) bidi.Direction { 150 // DirectionString reports the direction of the given label as defined by RFC 153 func DirectionString(s string) bidi.Direction {
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/ |
EhciSched.c | 57 Ep.Direction = EfiUsbDataIn;
761 EFI_USB_DATA_DIRECTION Direction;
763 Direction = (((EpNum & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut);
770 (Urb->Ep.Direction == Direction)) {
845 if (Urb->Ep.Direction == EfiUsbDataIn) {
|
/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;
|
/external/skia/src/core/ |
SkPath.cpp | 300 SkPathPriv::FirstDirection direction; local 301 if (!SkPathPriv::CheapComputeFirstDirection(*this, &direction)) { 352 if (!check_edge_against_rect(quadPts[0], quadPts[2], rect, direction)) { 355 if (!check_edge_against_rect(quadPts[2], quadPts[4], rect, direction)) { 359 if (!check_edge_against_rect(prevPt, pts[nextPt], rect, direction)) { 368 return check_edge_against_rect(prevPt, firstPt, rect, direction); 425 Determines if path is a rect by keeping track of changes in direction 428 The direction is computed such that: 440 There's more than four changes of direction. 442 The line reverses direction [all...] |
/external/skqp/src/core/ |
SkPath.cpp | 300 SkPathPriv::FirstDirection direction; local 301 if (!SkPathPriv::CheapComputeFirstDirection(*this, &direction)) { 352 if (!check_edge_against_rect(quadPts[0], quadPts[2], rect, direction)) { 355 if (!check_edge_against_rect(quadPts[2], quadPts[4], rect, direction)) { 359 if (!check_edge_against_rect(prevPt, pts[nextPt], rect, direction)) { 368 return check_edge_against_rect(prevPt, firstPt, rect, direction); 425 Determines if path is a rect by keeping track of changes in direction 428 The direction is computed such that: 440 There's more than four changes of direction. 442 The line reverses direction [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/ |
UsbDesc.c | 412 @param Direction The direction of data transfer.
428 IN EFI_USB_DATA_DIRECTION Direction,
445 DevReq.RequestType = USB_REQUEST_TYPE (Direction, Type, Target);
458 Direction,
|
/device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/ |
E100b.h | 654 UINT32 Direction, UINT64 mapped_addr);
656 UINT32 Direction, UINT64 mapped_addr);
658 UINT32 size, UINT32 Direction, UINT64 mapped_addr);
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/ |
OhciUrb.c | 175 @Param EdDir ED Direction to search
194 Ed->Word0.Direction == EdDir) {
601 Ed->Word0.Direction = Value;
666 return Ed->Word0.Direction;
|
/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));
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/ |
CrashDebugger.cpp | 482 bool Direction; 485 ReduceCrashingConditionals(BugDriver &bd, BugTester testFn, bool Direction) 486 : BD(bd), TestFn(testFn), Direction(Direction) {} 513 << (Direction ? "true" : "false") << ":"; 530 if (Direction) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/ |
UhciQueue.c | 65 @param Direction Direction of the data transfer.
79 IN EFI_USB_DATA_DIRECTION Direction,
92 switch (Direction) {
573 // Status packet is on the opposite direction to data packets
|
/device/linaro/bootloader/edk2/OptionRomPkg/AtapiPassThruDxe/ |
AtapiPassThru.c | [all...] |