/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | mustpass.py | 45 def __init__ (self, name, path, incpath, devicepath, copyright = None): 46 self.name = name 47 self.path = path 48 self.incpath = incpath 49 self.devicepath = devicepath 50 self.copyright = copyright 53 def __init__ (self, name, filters, glconfig = None, rotation = "unspecified", surfacetype = None, surfacewidth = None, surfaceheight = None, baseseed = None, fboconfig = None, required = False, runtime = None, os = "any", skip = "none"): 54 self.name = name 55 self.glconfig = glconfig 56 self [all...] |
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | xcode.py | 113 def __init__(self, gyp_path, path, build_file_dict): 114 self.gyp_path = gyp_path 115 self.path = path 116 self.project = gyp.xcodeproj_file.PBXProject(path=path) 118 os.path.dirname(os.path.abspath(self.gyp_path)), 121 self.project.SetProperty("projectDirPath", projectDirPath) 122 self.project_file = gyp.xcodeproj_file.XCProjectFile( 123 {"rootObject": self.project} 125 self.build_file_dict = build_file_dict 127 # TODO(mark): add destructor that cleans up self [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | xcode.py | 113 def __init__(self, gyp_path, path, build_file_dict): 114 self.gyp_path = gyp_path 115 self.path = path 116 self.project = gyp.xcodeproj_file.PBXProject(path=path) 118 os.path.dirname(os.path.abspath(self.gyp_path)), 121 self.project.SetProperty("projectDirPath", projectDirPath) 122 self.project_file = gyp.xcodeproj_file.XCProjectFile( 123 {"rootObject": self.project} 125 self.build_file_dict = build_file_dict 127 # TODO(mark): add destructor that cleans up self [all...] |
/third_party/python/Modules/clinic/ |
H A D | overlapped.c.h | 380 "cancel($self, /)\n" 389 _overlapped_Overlapped_cancel_impl(OverlappedObject *self); 392 _overlapped_Overlapped_cancel(OverlappedObject *self, PyObject *Py_UNUSED(ignored)) in _overlapped_Overlapped_cancel() argument 394 return _overlapped_Overlapped_cancel_impl(self); in _overlapped_Overlapped_cancel() 398 "getresult($self, wait=False, /)\n" 410 _overlapped_Overlapped_getresult_impl(OverlappedObject *self, BOOL wait); 413 _overlapped_Overlapped_getresult(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) in _overlapped_Overlapped_getresult() argument 422 return_value = _overlapped_Overlapped_getresult_impl(self, wait); in _overlapped_Overlapped_getresult() 429 "ReadFile($self, handle, size, /)\n" 438 _overlapped_Overlapped_ReadFile_impl(OverlappedObject *self, HANDL 442 _overlapped_Overlapped_ReadFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_ReadFile() argument 472 _overlapped_Overlapped_ReadFileInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_ReadFileInto() argument 507 _overlapped_Overlapped_WSARecv(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSARecv() argument 539 _overlapped_Overlapped_WSARecvInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSARecvInto() argument 575 _overlapped_Overlapped_WriteFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WriteFile() argument 610 _overlapped_Overlapped_WSASend(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSASend() argument 647 _overlapped_Overlapped_AcceptEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_AcceptEx() argument 680 _overlapped_Overlapped_ConnectEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_ConnectEx() argument 709 _overlapped_Overlapped_DisconnectEx(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_DisconnectEx() argument 743 _overlapped_Overlapped_TransmitFile(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_TransmitFile() argument 778 _overlapped_Overlapped_ConnectNamedPipe(OverlappedObject *self, PyObject *arg) _overlapped_Overlapped_ConnectNamedPipe() argument 806 _overlapped_Overlapped_ConnectPipe(OverlappedObject *self, PyObject *arg) _overlapped_Overlapped_ConnectPipe() argument 879 _overlapped_Overlapped_WSASendTo(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSASendTo() argument 917 _overlapped_Overlapped_WSARecvFrom(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSARecvFrom() argument 949 _overlapped_Overlapped_WSARecvFromInto(OverlappedObject *self, PyObject *const *args, Py_ssize_t nargs) _overlapped_Overlapped_WSARecvFromInto() argument [all...] |
/third_party/node/deps/v8/tools/testrunner/local/fake_testsuite/ |
H A D | testcfg.py | 12 def _list_test_filenames(self): 15 def list_tests(self): 16 self.test_count_estimation = 2 17 fast = self._create_test("fast", self.suite) 18 slow = self._create_test("slow", self.suite) 26 def _test_loader_class(self): 29 def _test_class(self):
|
/third_party/python/Include/cpython/ |
H A D | bytearrayobject.h | 22 PyByteArrayObject *self = _PyByteArray_CAST(op); in PyByteArray_AS_STRING() local 23 if (Py_SIZE(self)) { in PyByteArray_AS_STRING() 24 return self->ob_start; in PyByteArray_AS_STRING() 29 # define PyByteArray_AS_STRING(self) PyByteArray_AS_STRING(_PyObject_CAST(self)) 33 PyByteArrayObject *self = _PyByteArray_CAST(op); in PyByteArray_GET_SIZE() local 34 return Py_SIZE(self); in PyByteArray_GET_SIZE() 37 # define PyByteArray_GET_SIZE(self) PyByteArray_GET_SIZE(_PyObject_CAST(self))
|
/third_party/vk-gl-cts/external/amber/src/tools/ |
H A D | check_language_test.py | 28 def testMatches(self): 43 self.assertTrue( 47 def testSuppression(self): 48 self.assertFalse(check_language.check_match("", "in the man-pages")) 49 self.assertFalse(check_language.check_match("", "the MS_SLAVE test")) 52 def testMatchStartofFileWhenRequireSpace(self): 53 self.assertTrue(check_language.check_match("", "he said")) 56 def testMatchOverNewline(self): 57 self.assertTrue(check_language.check_match("", "flying\nblind"))
|
/third_party/skia/third_party/externals/sfntly/cpp/tools/ |
H A D | test_data_generator_xml.py | 24 def __init__(self, table_data_generators, fonts, destination): 25 self.table_data_generators = table_data_generators 26 self.fonts = fonts 27 self.destination = destination 29 def Generate(self): 30 for font_path in self.fonts: 32 document = FontDataGeneratorXML(self.table_data_generators, 35 if not self.destination else 36 self.destination + os.path.basename(font_path)) + '.xml'
|
/third_party/skia/tools/skp/page_sets/ |
H A D | skia_amazon_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaBuildbotMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_amazon_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaAmazonMobilePageSet, self).__init__( 40 self.AddStory(SkiaBuildbotMobilePage(url, self))
|
H A D | skia_baidu_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_baidu_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaBaiduMobilePageSet, self).__init__( 41 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_booking_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_booking_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaBookingMobilePageSet, self).__init__( 41 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_capitalvolkswagen_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_capitalvolkswagen_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaCapitalvolkswagenMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_cnn_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_cnn_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaCnnDesktopPageSet, self).__init__( 40 self.AddStory(SkiaDesktopPage(url, self)
|
H A D | skia_cnn_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_cnn_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaCnnMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_cnnarticle_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_cnnarticle_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaCnnarticleMobilePageSet, self).__init__( 41 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_deviantart_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_deviantart_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaDeviantartMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_digg_tablet.py | 14 def __init__(self, url, page_set): 15 super(SkiaBuildbotDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_digg_tablet.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 29 def __init__(self): 30 super(SkiaDiggTabletPageSet, self).__init__( 39 self.AddStory(SkiaBuildbotDesktopPage(url, self))
|
H A D | skia_ebay_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_ebay_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url, timeout_in_seconds=120) 29 def __init__(self): 30 super(SkiaEbayDesktopPageSet, self).__init__( 39 self.AddStory(SkiaDesktopPage(url, self))
|
H A D | skia_espn_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaBuildbotDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_espn_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 31 def __init__(self): 32 super(SkiaEspnDesktopPageSet, self).__init__( 41 self.AddStory(SkiaBuildbotDesktopPage(url, self))
|
H A D | skia_facebook_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_facebook_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaFacebookDesktopPageSet, self).__init__( 40 self.AddStory(SkiaDesktopPage(url, self)
|
H A D | skia_facebook_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_facebook_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaFacebookMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self))
|
H A D | skia_forecastio_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_forecastio_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaForecastioMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self)
|
H A D | skia_googleimagesearch_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_googleimagesearch_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaGoogleimagesearchDesktopPageSet, self).__init__( 40 self.AddStory(SkiaDesktopPage(url, self)
|
H A D | skia_googlenews_mobile.py | 14 def __init__(self, url, page_set): 15 super(SkiaMobilePage, self).__init__( 20 self.archive_data_file = 'data/skia_googlenews_mobile.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaGooglenewsMobilePageSet, self).__init__( 40 self.AddStory(SkiaMobilePage(url, self)
|
H A D | skia_googlesearch_desktop.py | 14 def __init__(self, url, page_set): 15 super(SkiaDesktopPage, self).__init__( 20 self.archive_data_file = 'data/skia_googlesearch_desktop.json' 22 def RunNavigateSteps(self, action_runner): 23 action_runner.Navigate(self.url) 30 def __init__(self): 31 super(SkiaGooglesearchDesktopPageSet, self).__init__( 40 self.AddStory(SkiaDesktopPage(url, self)
|