Home
last modified time | relevance | path

Searched refs:displayIndex (Results 1 – 20 of 20) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_video.c130 #define CHECK_DISPLAY_INDEX(displayIndex, retval) \ argument
136 if (displayIndex < 0 || displayIndex >= _this->num_displays) { \
632 int displayIndex; in SDL_GetIndexOfDisplay() local
634 for (displayIndex = 0; displayIndex < _this->num_displays; ++displayIndex) { in SDL_GetIndexOfDisplay()
635 if (display == &_this->displays[displayIndex]) { in SDL_GetIndexOfDisplay()
636 return displayIndex; in SDL_GetIndexOfDisplay()
645 SDL_GetDisplayDriverData(int displayIndex) in SDL_GetDisplayDriverData() argument
647 CHECK_DISPLAY_INDEX(displayIndex, NULL); in SDL_GetDisplayDriverData()
649 return _this->displays[displayIndex].driverdata; in SDL_GetDisplayDriverData()
653 SDL_GetDisplayName(int displayIndex) in SDL_GetDisplayName() argument
[all …]
DSDL_sysvideo.h426 extern void *SDL_GetDisplayDriverData( int displayIndex );
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/
DvktWsiDisplayTests.cpp360 for (deUint32 displayIndex = 0; in getDisplays() local
361 displayIndex < countRetrieved; in getDisplays()
362 displayIndex++) in getDisplays()
364 const VkDisplayKHR display = displaysProps[displayIndex].display; in getDisplays()
574 for (deUint32 displayIndex = 0; in getDisplays2() local
575 displayIndex < countRetrieved; in getDisplays2()
576 displayIndex++) in getDisplays2()
578 const VkDisplayKHR display = displaysProps[displayIndex].displayProperties.display; in getDisplays2()
881 for (deUint32 displayIndex = 0; in testGetPhysicalDeviceDisplayPropertiesKHR() local
882 displayIndex < displayCountRetrieved; in testGetPhysicalDeviceDisplayPropertiesKHR()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/wsi/
DvktWsiDisplayTests.cpp360 for (deUint32 displayIndex = 0; in getDisplays() local
361 displayIndex < countRetrieved; in getDisplays()
362 displayIndex++) in getDisplays()
364 const VkDisplayKHR display = displaysProps[displayIndex].display; in getDisplays()
574 for (deUint32 displayIndex = 0; in getDisplays2() local
575 displayIndex < countRetrieved; in getDisplays2()
576 displayIndex++) in getDisplays2()
578 const VkDisplayKHR display = displaysProps[displayIndex].displayProperties.display; in getDisplays2()
881 for (deUint32 displayIndex = 0; in testGetPhysicalDeviceDisplayPropertiesKHR() local
882 displayIndex < displayCountRetrieved; in testGetPhysicalDeviceDisplayPropertiesKHR()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_video.h297 extern DECLSPEC const char * SDLCALL SDL_GetDisplayName(int displayIndex);
307 extern DECLSPEC int SDLCALL SDL_GetDisplayBounds(int displayIndex, SDL_Rect * rect);
319 extern DECLSPEC int SDLCALL SDL_GetDisplayDPI(int displayIndex, float * ddpi, float * hdpi, float *…
338 extern DECLSPEC int SDLCALL SDL_GetDisplayUsableBounds(int displayIndex, SDL_Rect * rect);
345 extern DECLSPEC int SDLCALL SDL_GetNumDisplayModes(int displayIndex);
358 extern DECLSPEC int SDLCALL SDL_GetDisplayMode(int displayIndex, int modeIndex,
364 extern DECLSPEC int SDLCALL SDL_GetDesktopDisplayMode(int displayIndex, SDL_DisplayMode * mode);
369 extern DECLSPEC int SDLCALL SDL_GetCurrentDisplayMode(int displayIndex, SDL_DisplayMode * mode);
393 extern DECLSPEC SDL_DisplayMode * SDLCALL SDL_GetClosestDisplayMode(int displayIndex, const SDL_Dis…
DSDL_system.h58 extern DECLSPEC int SDLCALL SDL_Direct3D9GetAdapterIndex( int displayIndex );
74 extern DECLSPEC SDL_bool SDLCALL SDL_DXGIGetOutputInfo( int displayIndex, int *adapterIndex, int *o…
/third_party/skia/experimental/docs/
DanimationCommon.js54 var displayIndex;
59 displayIndex = animationState.displayDict[ref];
72 displayIndex = animationState.displayList.length;
77 animationState.displayDict[ref] = displayIndex;
81 displayIndex = animationState.displayDict[action.ref];
99 assert(displayIndex < animationState.displayList.length);
100 var display = animationState.displayList[displayIndex];
/third_party/flutter/skia/experimental/docs/
DanimationCommon.js54 var displayIndex;
59 displayIndex = animationState.displayDict[ref];
72 displayIndex = animationState.displayList.length;
77 animationState.displayDict[ref] = displayIndex;
81 displayIndex = animationState.displayDict[action.ref];
99 assert(displayIndex < animationState.displayList.length);
100 var display = animationState.displayList[displayIndex];
/third_party/flutter/glfw/src/
Dwin32_monitor.c152 DWORD adapterIndex, displayIndex, primaryIndex = 0; in _glfwPlatformGetMonitors() local
199 for (displayIndex = 0; ; displayIndex++) in _glfwPlatformGetMonitors()
204 if (!EnumDisplayDevicesW(adapter.DeviceName, displayIndex, &display, 0)) in _glfwPlatformGetMonitors()
/third_party/flutter/skia/third_party/externals/sdl/src/video/windows/
DSDL_windowsvideo.c277 SDL_Direct3D9GetAdapterIndex(int displayIndex) in SDL_Direct3D9GetAdapterIndex() argument
285 SDL_DisplayData *pData = (SDL_DisplayData *)SDL_GetDisplayDriverData(displayIndex); in SDL_Direct3D9GetAdapterIndex()
352 SDL_DXGIGetOutputInfo(int displayIndex, int *adapterIndex, int *outputIndex) in SDL_DXGIGetOutputInfo() argument
360 SDL_DisplayData *pData = (SDL_DisplayData *)SDL_GetDisplayDriverData(displayIndex); in SDL_DXGIGetOutputInfo()
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_video.c387 int displayIndex; in video_getNumDisplayModesNegative() local
394 displayIndex = SDLTest_RandomSint32BoundaryValue(0, displayNum, SDL_FALSE); in video_getNumDisplayModesNegative()
395 result = SDL_GetNumDisplayModes(displayIndex); in video_getNumDisplayModesNegative()
396 SDLTest_AssertPass("Call to SDL_GetNumDisplayModes(%d=out-of-bounds/boundary)", displayIndex); in video_getNumDisplayModesNegative()
400 displayIndex = SDLTest_RandomIntegerInRange(-2000, -1000); in video_getNumDisplayModesNegative()
401 result = SDL_GetNumDisplayModes(displayIndex); in video_getNumDisplayModesNegative()
402 …DLTest_AssertPass("Call to SDL_GetNumDisplayModes(%d=out-of-bounds/large negative)", displayIndex); in video_getNumDisplayModesNegative()
405 displayIndex = SDLTest_RandomIntegerInRange(1000, 2000); in video_getNumDisplayModesNegative()
406 result = SDL_GetNumDisplayModes(displayIndex); in video_getNumDisplayModesNegative()
407 …DLTest_AssertPass("Call to SDL_GetNumDisplayModes(%d=out-of-bounds/large positive)", displayIndex); in video_getNumDisplayModesNegative()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DAlphabeticIndex.java866 private int displayIndex; field in AlphabeticIndex.Bucket
1104 int displayIndex = 0; in BucketList() local
1106 bucket.displayIndex = displayIndex++; in BucketList()
1133 return bucket.displayIndex; in getBucketIndex()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DAlphabeticIndex.java900 private int displayIndex; field in AlphabeticIndex.Bucket
1150 int displayIndex = 0; in BucketList() local
1152 bucket.displayIndex = displayIndex++; in BucketList()
1179 return bucket.displayIndex; in getBucketIndex()
/third_party/flutter/skia/third_party/externals/sdl/src/video/uikit/
DSDL_uikitmodes.m262 int displayIndex = (int) (display - _this->displays);
267 if (SDL_GetDisplayBounds(displayIndex, rect) < 0) {
/third_party/node/deps/icu-small/source/i18n/
Dalphaindex.cpp130 int32_t displayIndex = 0; in BucketList() local
132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
/third_party/skia/third_party/externals/icu/source/i18n/
Dalphaindex.cpp130 int32_t displayIndex = 0; in BucketList() local
132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dalphaindex.cpp130 int32_t displayIndex = 0; in BucketList() local
132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
/third_party/icu/icu4c/source/i18n/
Dalphaindex.cpp130 int32_t displayIndex = 0; in BucketList() local
132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
/third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d/
DSDL_render_d3d.c522 int displayIndex; in D3D_CreateRenderer() local
597 displayIndex = SDL_GetWindowDisplayIndex(window); in D3D_CreateRenderer()
598 data->adapter = SDL_Direct3D9GetAdapterIndex(displayIndex); in D3D_CreateRenderer()
/third_party/weex-loader/deps/weex-styler/lib/
Dvalidator.js2266 displayIndex: NUMBER_VALIDATOR, property
2888 displayIndex: NUMBER_VALIDATOR, property