/third_party/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_video.c | 130 #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 …]
|
D | SDL_sysvideo.h | 426 extern void *SDL_GetDisplayDriverData( int displayIndex );
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/wsi/ |
D | vktWsiDisplayTests.cpp | 360 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/ |
D | vktWsiDisplayTests.cpp | 360 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/ |
D | SDL_video.h | 297 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…
|
D | SDL_system.h | 58 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/ |
D | animationCommon.js | 54 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/ |
D | animationCommon.js | 54 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/ |
D | win32_monitor.c | 152 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/ |
D | SDL_windowsvideo.c | 277 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/ |
D | testautomation_video.c | 387 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/ |
D | AlphabeticIndex.java | 866 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/ |
D | AlphabeticIndex.java | 900 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/ |
D | SDL_uikitmodes.m | 262 int displayIndex = (int) (display - _this->displays); 267 if (SDL_GetDisplayBounds(displayIndex, rect) < 0) {
|
/third_party/node/deps/icu-small/source/i18n/ |
D | alphaindex.cpp | 130 int32_t displayIndex = 0; in BucketList() local 132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | alphaindex.cpp | 130 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/ |
D | alphaindex.cpp | 130 int32_t displayIndex = 0; in BucketList() local 132 getBucket(*publicBucketList, i)->displayIndex_ = displayIndex++; in BucketList()
|
/third_party/icu/icu4c/source/i18n/ |
D | alphaindex.cpp | 130 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/ |
D | SDL_render_d3d.c | 522 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/ |
D | validator.js | 2266 displayIndex: NUMBER_VALIDATOR, property 2888 displayIndex: NUMBER_VALIDATOR, property
|