HomeSort by relevance Sort by last modified time
    Searched refs:Direction (Results 176 - 200 of 570) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/autotest/client/common_lib/cros/cfm/metrics/
media_info_metrics_extractor.py 7 # Direction and type numbers map to constants in the DataPoint group in
9 class Direction(enum.Enum):
79 direction=None,
91 @param direction: Only include metrics with this direction in the media
92 stream. See the Direction constants in this module. If None, all
103 @raises KeyError If any data point matching the direction and
117 if _media_matches(media, direction, media_type)
147 def _media_matches(media, direction, media_type):
148 direction_match = (True if direction is Non
    [all...]
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 106 template<typename ExpressionType, int Direction>
109 const typename VectorwiseOp<ExpressionType,Direction>::CrossReturnType
110 VectorwiseOp<ExpressionType,Direction>::cross(const MatrixBase<OtherDerived>& other) const
120 if(Direction==Vertical)
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegionActivity.java 83 getWidth() / 4.0f, Path.Direction.CW);
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
FastScrollThumbDrawable.java 60 Path.Direction.CCW);
  /packages/apps/Launcher3/src/com/android/launcher3/views/
TopRoundedCornerView.java 80 mClipPath.addRoundRect(mRect, mRadii, Path.Direction.CW);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusPei/
UsbIoPeim.c 26 @param Direction Specifies the data direction for the data stage.
46 IN EFI_USB_DATA_DIRECTION Direction,
95 Direction,
110 Direction,
138 @param DeviceEndpoint Endpoint number and its direction in bit 7.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
Snp.h 338 @param Direction - direction of data flow for this memory's usage:
349 IN UINT32 Direction,
362 @param Direction direction of data flow for this memory's usage:
373 IN UINT32 Direction,
382 > 4GB). Depending on the direction for which the buffer is mapped, undi will
393 @param Direction direction of data flow for this memory's usage:
404 IN UINT32 Direction,
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 124 // the Dependence Matrix with the direction reversed.
131 char Direction;
139 Direction = '<';
141 Direction = '=';
143 Direction = '>';
144 Dep.push_back(Direction);
146 Direction = 'S';
147 Dep.push_back(Direction);
152 Direction = '<';
155 Direction = '>'
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SlashDrawable.java 31 import android.graphics.Path.Direction;
156 mPath.addRoundRect(mSlashRect, radiusX, radiusY, Direction.CW);
169 mPath.addRoundRect(mSlashRect, 1.0f * width, 1.0f * height, Direction.CW);
  /packages/apps/Settings/tests/uitests/src/com/android/settings/ui/
AccessibilitySettingsTests.java 26 import android.support.test.uiautomator.Direction;
257 while (settingsPanel.fling(Direction.UP) && count < 3) {
265 settingsPanel.scroll(Direction.DOWN, 1.0f);
NotificationSettingsTests.java 24 import android.support.test.uiautomator.Direction;
109 UiObject2 phone = scrollTo(mDevice, apps, By.text("Phone"), Direction.DOWN);
134 BySelector target, Direction direction) {
135 while (!device.hasObject(target) && scrollable.scroll(direction, 1.0f)) {
141 scrollable.scroll(direction, 1.0f);
  /platform_testing/tests/functional/downloadapp/src/com/android/functional/downloadapp/
DownloadAppTests.java 23 import android.support.test.uiautomator.Direction;
81 container.scroll(Direction.UP, 1.0f);
83 container.scroll(Direction.DOWN, 1.0f);
  /prebuilts/misc/common/droiddriver/
droiddriver-0.9.jar 
  /hardware/interfaces/broadcastradio/1.1/default/
Tuner.cpp 37 using V1_0::Direction;
176 Return<Result> Tuner::scan(Direction direction, bool skipSubChannel __unused) {
185 auto task = [this, direction]() {
186 ALOGI("Performing failed scan %s", toString(direction).c_str());
204 if (direction == Direction::UP) {
220 auto task = [this, tuneTo, direction]() {
221 ALOGI("Performing scan %s", toString(direction).c_str());
231 Return<Result> Tuner::step(Direction direction, bool skipSubChannel)
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 248 // getDirection - Returns the direction associated with a particular level.
251 return DV[Level - 1].Direction;
598 unsigned Direction = getDirection(II);
599 if (Direction == DVEntry::ALL)
602 if (Direction & DVEntry::LT)
604 if (Direction & DVEntry::EQ)
606 if (Direction & DVEntry::GT)
697 // have 2 loops in common, so CommonLevels will equal 2 and the direction
    [all...]
  /external/skia/src/core/
SkGpuBlurUtils.cpp 23 using Direction = GrGaussianConvolutionFragmentProcessor::Direction;
76 Direction direction,
85 std::move(proxy), direction, radius, sigma, mode, bounds));
124 Direction direction,
134 std::move(proxy), direction, radius, sigma,
141 if (Direction::kX == direction) {
    [all...]
  /external/skqp/src/core/
SkGpuBlurUtils.cpp 23 using Direction = GrGaussianConvolutionFragmentProcessor::Direction;
76 Direction direction,
85 std::move(proxy), direction, radius, sigma, mode, bounds));
124 Direction direction,
134 std::move(proxy), direction, radius, sigma,
141 if (Direction::kX == direction) {
    [all...]
  /external/v8/benchmarks/
deltablue.js 332 var Direction = new Object();
333 Direction.NONE = 0;
334 Direction.FORWARD = 1;
335 Direction.BACKWARD = -1;
345 this.direction = Direction.NONE;
358 this.direction = (this.v2.mark != mark && Strength.stronger(this.strength, this.v2.walkStrength))
359 ? Direction.FORWARD
360 : Direction.NONE;
363 this.direction = (this.v1.mark != mark && Strength.stronger(this.strength, this.v1.walkStrength)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Path.cpp 140 SkPath::Direction dir = static_cast<SkPath::Direction>(dirHandle);
147 SkPath::Direction dir = static_cast<SkPath::Direction>(dirHandle);
155 SkPath::Direction dir = static_cast<SkPath::Direction>(dirHandle);
170 SkPath::Direction dir = static_cast<SkPath::Direction>(dirHandle);
178 SkPath::Direction dir = static_cast<SkPath::Direction>(dirHandle)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
termmgr.h 171 virtual HRESULT WINAPI InitializeDynamic(IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress) = 0;
179 HRESULT (WINAPI *InitializeDynamic)(ITPluggableTerminalInitialization *This,IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress);
189 #define ITPluggableTerminalInitialization_InitializeDynamic(This,iidTerminalClass,dwMediaType,Direction,htAddress) (This)->lpVtbl->InitializeDynamic(This,iidTerminalClass,dwMediaType,Direction,htAddress)
192 HRESULT WINAPI ITPluggableTerminalInitialization_InitializeDynamic_Proxy(ITPluggableTerminalInitialization *This,IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress);
203 virtual HRESULT WINAPI CreateDynamicTerminal(IUnknown *pOuterUnknown,IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress,ITTerminal **ppTerminal) = 0;
212 HRESULT (WINAPI *CreateDynamicTerminal)(ITTerminalManager *This,IUnknown *pOuterUnknown,IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress,ITTerminal **ppTerminal);
223 #define ITTerminalManager_CreateDynamicTerminal(This,pOuterUnknown,iidTerminalClass,dwMediaType,Direction,htAddress,ppTerminal) (This)->lpVtbl->CreateDynamicTerminal(This,pOuterUnknown,iidTerminalClass,dwMediaType,Direction,htAddress,ppTerminal)
228 HRESULT WINAPI ITTerminalManager_CreateDynamicTerminal_Proxy(ITTerminalManager *This,IUnknown *pOuterUnknown,IID iidTerminalClass,DWORD dwMediaType,TERMINAL_DIRECTION Direction,MSP_HANDLE htAddress,ITTerminal **ppTerminal)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
XhciSched.c 165 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
242 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
275 if (Urb->Ep.Direction == EfiUsbDataIn) {
277 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
304 if (Urb->Ep.Direction == EfiUsbDataIn) {
306 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
327 if (Urb->Ep.Direction == EfiUsbDataIn) {
329 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
455 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
514 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
XhciSched.c 166 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
252 Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
264 if (((UINT8) (Urb->Ep.Direction)) == EfiUsbDataIn) {
303 if (Urb->Ep.Direction == EfiUsbDataIn) {
305 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
332 if (Urb->Ep.Direction == EfiUsbDataIn) {
334 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
355 if (Urb->Ep.Direction == EfiUsbDataIn) {
357 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
656 Dci = XhcEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
    [all...]
  /hardware/interfaces/broadcastradio/1.0/vts/functional/
VtsHalBroadcastradioV1_0TargetTest.cpp 46 using ::android::hardware::broadcastradio::V1_0::Direction;
535 Return<Result> hidlResult = mTuner->scan(Direction::UP, true);
542 hidlResult = mTuner->scan(Direction::DOWN, false);
567 Return<Result> hidlResult = mTuner->step(Direction::UP, false);
574 hidlResult = mTuner->step(Direction::DOWN, true);
700 auto hidlResult = mTuner->scan(Direction::UP, true);
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Main.c 100 Retreave data from the Command History buffer. Direction maps into up arrow
103 @param Direction Command forward or back
105 @return The Command history based on the Direction
110 IN UINT16 Direction
121 if (Direction == SCAN_UP) {
132 } else if (Direction == SCAN_DOWN) {
  /platform_testing/tests/jank/dialer/src/com/android/dialer/janktests/
DialerJankTests.java 40 import android.support.test.uiautomator.Direction;
155 callLog.fling(Direction.DOWN);
157 callLog.fling(Direction.UP);

Completed in 1125 milliseconds

1 2 3 4 5 6 78 91011>>