Home
last modified time | relevance | path

Searched refs:fresh (Results 1 - 25 of 40) sorted by relevance

12

/third_party/python/Lib/test/support/
H A Dimport_helper.py108 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 DEncoderJNI.java30 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 DDecoderJNI.java33 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 Dhash_composite_inc.h39 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 Dhash_composite_inc.h39 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 DobjectRest.js19 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 Dtest_loader.py23 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 Dtest_datetime.py11 pure_tests = import_fresh_module(TESTS, fresh=['datetime', '_strptime'],
13 fast_tests = import_fresh_module(TESTS, fresh=['datetime',
H A Dtest_lib2to3.py6 load_tests = import_fresh_module('lib2to3.tests', fresh=['lib2to3']).load_tests
H A Dtest_xml_etree_c.py10 fresh=['_elementtree']) variable
12 fresh=['_elementtree', 'xml.etree'], variable
H A Dtest_stat.py11 c_stat = import_fresh_module('stat', fresh=['_stat'])
H A Dtest_queue.py17 c_queue = import_helper.import_fresh_module('queue', fresh=['_queue'])
H A Dtest_heapq.py13 c_heapq = import_helper.import_fresh_module('heapq', fresh=['_heapq'])
H A Dtest_bisect.py8 c_bisect = import_helper.import_fresh_module('bisect', fresh=['_bisect'])
H A Dtest_ordered_dict.py19 fresh=['_collections']) variable
H A Dtest_operator.py12 fresh=['_operator']) variable
/third_party/skia/third_party/externals/freetype/src/raster/
H A Dftraster.c487 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 Dlcov.sh21 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 Dimage-gif.c541 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 Dabstract.c174 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 Dutil.py50 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__.py11 cjson = import_helper.import_fresh_module('json', fresh=['_json'])
/third_party/python/Modules/_decimal/tests/
H A Dbench.py12 C = import_fresh_module('decimal', fresh=['_decimal'])
H A Dformathelper.py37 C = import_fresh_module('decimal', fresh=['_decimal'])
/third_party/node/deps/v8/src/objects/
H A Dmap.cc1202 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()

Completed in 19 milliseconds

12