Searched refs:globs (Results 1 - 13 of 13) sorted by relevance
/third_party/openssl/test/ |
H A D | filterprov.c | 58 struct filter_prov_globals_st *globs = get_globals(); in filter_gettable_params() local 60 return OSSL_PROVIDER_gettable_params(globs->deflt); in filter_gettable_params() 65 struct filter_prov_globals_st *globs = get_globals(); in filter_get_params() local 67 return OSSL_PROVIDER_get_params(globs->deflt, params); in filter_get_params() 73 struct filter_prov_globals_st *globs = get_globals(); in filter_get_capabilities() local 75 return OSSL_PROVIDER_get_capabilities(globs->deflt, capability, cb, arg); in filter_get_capabilities() 82 struct filter_prov_globals_st *globs = get_globals(); in filter_query() local 85 globs->query_count++; in filter_query() 86 for (i = 0; i < globs->num_dispatch; i++) { in filter_query() 87 if (globs in filter_query() 100 struct filter_prov_globals_st *globs = get_globals(); filter_unquery() local 116 struct filter_prov_globals_st *globs = get_globals(); filter_teardown() local 168 struct filter_prov_globals_st *globs = get_globals(); filter_provider_set_filter() local 235 struct filter_prov_globals_st *globs = get_globals(); filter_provider_check_clean_finish() local [all...] |
/third_party/python/Lib/ |
H A D | doctest.py | 183 def _extract_future_flags(globs): 186 have been imported into the given namespace (globs). 190 feature = globs.get(fname, None) 512 - globs: The namespace (aka globals) that the examples should 529 def __init__(self, examples, globs, name, filename, lineno, docstring): 532 DocTest's globals are initialized with a copy of `globs`. 538 self.globs = globs.copy() 560 self.globs == other.globs an [all...] |
H A D | cProfile.py | 164 globs = { 173 globs = { 180 runctx(code, globs, None, options.outfile, options.sort)
|
H A D | trace.py | 708 globs = { 723 globs = { 729 t.runctx(code, globs, globs)
|
H A D | profile.py | 584 globs = { 593 globs = { 600 runctx(code, globs, None, options.outfile, options.sort)
|
H A D | pdb.py | 545 globs = glob.glob(glob.escape(text) + '*') 546 for fn in globs: 830 globs = frame.f_globals if frame else None 831 line = linecache.getline(filename, lineno, globs)
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | filter.py | 73 for s, globs in list(self._globs.items()): 74 if not globs or '*' in globs: 78 globs = self._globs.get(test.suite.name, []) 79 for g in globs:
|
/third_party/python/Tools/c-analyzer/cpython/ |
H A D | _files.py | 44 globs = (os.path.join(REPO_ROOT, file) for file in GLOBS) 45 yield from expand_filenames(globs)
|
/third_party/node/deps/v8/tools/release/ |
H A D | filter_build_files.py | 83 def add_files_from_globs(globs): 84 list_of_files.extend(itertools.chain(*map(glob.iglob, globs)))
|
/third_party/vk-gl-cts/external/amber/src/tools/ |
H A D | check_language.py | 171 globs = ['*'] 173 for glob in globs:
|
/third_party/python/Lib/distutils/command/ |
H A D | build_py.py | 123 globs = (self.package_data.get('', []) 126 for pattern in globs:
|
/third_party/python/Lib/test/ |
H A D | test_zipimport.py | 693 globs=locals() 706 globs=locals()
|
H A D | test_io.py | 4679 globs = globals() 4680 c_io_ns.update((x.__name__, globs["C" + x.__name__]) for x in mocks) 4681 py_io_ns.update((x.__name__, globs["Py" + x.__name__]) for x in mocks)
|
Completed in 17 milliseconds