/third_party/python/Lib/test/support/ |
H A D | import_helper.py | 108 def import_fresh_module(name, fresh=(), blocked=(), *, 114 This function imports and returns a fresh copy of the named Python module 119 *fresh* is an iterable of additional module names that are also removed 127 The named module and any modules named in the *fresh* and *blocked* 129 sys.modules when the fresh import is complete. 145 fresh = list(fresh) 147 names = {name, *fresh, *blocked} 154 # Return None when one of the "fresh" modules can not be imported. 156 for modname in fresh [all...] |
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
H A D | EncoderJNI.java | 30 private boolean fresh = true; field in EncoderJNI.Wrapper 63 fresh = false; in push() 94 fresh = false; in pull()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
H A D | DecoderJNI.java | 33 private boolean fresh = true; field in DecoderJNI.Wrapper 56 fresh = false; in push() 95 fresh = false; in pull()
|
/third_party/node/deps/brotli/c/enc/ |
H A D | hash_composite_inc.h | 39 BROTLI_BOOL fresh; member 49 self->fresh = BROTLI_TRUE; in Initialize() 60 if (self->fresh) { in Prepare() 61 self->fresh = BROTLI_FALSE; in Prepare()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash_composite_inc.h | 39 BROTLI_BOOL fresh; member 49 self->fresh = BROTLI_TRUE; in Initialize() 60 if (self->fresh) { in Prepare() 61 self->fresh = BROTLI_FALSE; in Prepare()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | objectRest.js | 19 var { x, ...fresh } = { x: 1, y: 2 }; 20 ({ x, ...fresh } = { x: 1, y: 2 }); 77 var _j = { x: 1, y: 2 }, { x } = _j, fresh = __rest(_j, ["x"]);
78 (_b = { x: 1, y: 2 }, { x } = _b, fresh = __rest(_b, ["x"]));
|
/third_party/python/Lib/test/test_importlib/frozen/ |
H A D | test_loader.py | 23 def fresh(name, *, oldapi=False): function 60 with fresh(name): 139 with fresh(name, oldapi=True): 191 with fresh('__hello__', oldapi=True): 202 with fresh('__hello__', oldapi=True):
|
/third_party/python/Lib/test/ |
H A D | test_datetime.py | 11 pure_tests = import_fresh_module(TESTS, fresh=['datetime', '_strptime'], 13 fast_tests = import_fresh_module(TESTS, fresh=['datetime',
|
H A D | test_lib2to3.py | 6 load_tests = import_fresh_module('lib2to3.tests', fresh=['lib2to3']).load_tests
|
H A D | test_xml_etree_c.py | 10 fresh=['_elementtree']) variable 12 fresh=['_elementtree', 'xml.etree'], variable
|
H A D | test_stat.py | 11 c_stat = import_fresh_module('stat', fresh=['_stat'])
|
H A D | test_queue.py | 17 c_queue = import_helper.import_fresh_module('queue', fresh=['_queue'])
|
H A D | test_heapq.py | 13 c_heapq = import_helper.import_fresh_module('heapq', fresh=['_heapq'])
|
H A D | test_bisect.py | 8 c_bisect = import_helper.import_fresh_module('bisect', fresh=['_bisect'])
|
H A D | test_ordered_dict.py | 19 fresh=['_collections']) variable
|
H A D | test_operator.py | 12 fresh=['_operator']) variable
|
/third_party/skia/third_party/externals/freetype/src/raster/ |
H A D | ftraster.c | 487 Bool fresh; /* signals a fresh new profile which */ member 667 ras.fresh = TRUE; in New_Profile() 1047 if ( ras.fresh ) in Line_Up() 1050 ras.fresh = FALSE; in Line_Up() 1134 Bool result, fresh; in Line_Down() local 1137 fresh = ras.fresh; in Line_Down() 1141 if ( fresh && !ras.fresh ) in Line_Down() 1319 Bool result, fresh; Bezier_Down() local [all...] |
/third_party/mbedtls/scripts/ |
H A D | lcov.sh | 21 5. After rework, run "$0 -r", then re-test and run "$0" to get a fresh report. 24 -r Reset traces. Run this before re-testing to get fresh measurements.
|
/third_party/cups-filters/cupsfilters/ |
H A D | image-gif.c | 541 static short fresh = 0, /* 1 = empty buffers */ in gif_read_lzw() local 594 fresh = 1; in gif_read_lzw() 603 else if (fresh) in gif_read_lzw() 605 fresh = 0; in gif_read_lzw()
|
/third_party/libwebsockets/lib/abstract/ |
H A D | abstract.c | 174 goto fresh; in lws_abs_bind_and_create_instance() 192 fresh: in lws_abs_bind_and_create_instance()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | util.py | 50 fresh = ('importlib',) if '.' in module_name else () 52 source = import_helper.import_fresh_module(module_name, fresh=fresh,
|
/third_party/python/Lib/test/test_json/ |
H A D | __init__.py | 11 cjson = import_helper.import_fresh_module('json', fresh=['_json'])
|
/third_party/python/Modules/_decimal/tests/ |
H A D | bench.py | 12 C = import_fresh_module('decimal', fresh=['_decimal'])
|
H A D | formathelper.py | 37 C = import_fresh_module('decimal', fresh=['_decimal'])
|
/third_party/node/deps/v8/src/objects/ |
H A D | map.cc | 1202 Handle<Map> fresh = Map::CopyNormalized(isolate, fast_map, mode); in Normalize() local 1203 fresh->set_elements_kind(new_elements_kind); in Normalize() 1207 DCHECK_EQ(0, memcmp(reinterpret_cast<void*>(fresh->address()), in Normalize() 1218 DCHECK_EQ(fresh->bit_field3() & ~ignored_bit_field3_bits, in Normalize() 1221 DCHECK_EQ(0, memcmp(reinterpret_cast<void*>(fresh->address() + offset), in Normalize() 1230 DCHECK_EQ(fresh->raw_transitions(), in Normalize() 1233 DCHECK_EQ(0, memcmp(reinterpret_cast<void*>(fresh->address() + offset), in Normalize()
|