Home
last modified time | relevance | path

Searched refs:variations (Results 1 - 21 of 21) sorted by relevance

/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dtest_reflow.py24 def makeTestId(variations):
28 if not variations.reflow:
32 if not variations.addVUID:
42 def __init__(self, variations):
45 self.outDir = os.path.join(resultsDir, makeTestId(variations))
48 self.noflow = not variations.reflow
51 self.nextvu = 10000 if variations.addVUID else None
56 self.variations = variations
58 variations variable
[all...]
/third_party/skia/third_party/externals/harfbuzz/util/
H A Dfont-options.hh47 free (variations); in ~font_options_t()
56 hb_variation_t *variations = nullptr; member
101 hb_font_set_variations (font, variations, num_variations); in post_parse()
154 g_free (font_opts->variations); in parse_variations()
155 font_opts->variations = nullptr; in parse_variations()
160 /* count the variations first, so we can allocate memory */ in parse_variations()
169 font_opts->variations = (hb_variation_t *) calloc (font_opts->num_variations, sizeof (*font_opts->variations)); in parse_variations()
170 if (!font_opts->variations) in parse_variations()
178 if (hb_variation_from_string (p, end ? end - p : -1, &font_opts->variations[font_opt in parse_variations()
[all...]
/third_party/node/test/pummel/
H A Dtest-webcrypto-derivebits-pbkdf2.js645 const variations = [];
653 variations.push(testDeriveBits(...args));
654 variations.push(testDeriveBitsBadLengths(...args));
655 variations.push(testDeriveBitsBadHash(...args));
656 variations.push(
666 variations.push(testDeriveKey(...args, ...keyArgs));
667 variations.push(testDeriveKeyBadHash(...args, ...keyArgs));
668 variations.push(
676 variations.push(
689 await Promise.all(variations);
[all...]
/third_party/node/test/parallel/
H A Dtest-webcrypto-derivebits-hkdf.js511 const variations = [];
519 variations.push(testDeriveBits(...args));
520 variations.push(testDeriveBitsBadLengths(...args));
521 variations.push(testDeriveBitsMissingSalt(...args));
522 variations.push(testDeriveBitsMissingInfo(...args));
523 variations.push(testDeriveBitsBadHash(...args));
524 variations.push(
531 variations.push(
540 variations.push(testDeriveKey(...args, ...keyArgs));
541 variations
[all...]
H A Dtest-webcrypto-digest.js154 const variations = [];
161 variations.push(testDigest(size, upCase));
162 variations.push(testDigest(size, downCase));
163 variations.push(testDigest(size, mixedCase));
167 await Promise.all(variations);
H A Dtest-webcrypto-wrap-unwrap.js279 const variations = [];
289 variations.push(testWrap(wrappingKey, unwrappingKey, key, wrap, format));
293 return variations;
299 const variations = [];
301 variations.push(...testWrapping(name, keys));
303 await Promise.all(variations);
H A Dtest-https-agent-additional-options.js47 function variations(iter, port, cb) { function
71 variations(iter, port, cb));
80 https.get(getBaseOptions(port), variations(updatedValues.entries(), port));
H A Dtest-webcrypto-export-import-rsa.js538 const variations = [];
543 variations.push(testImportSpki(vector, size, hash, extractable));
544 variations.push(testImportPkcs8(vector, size, hash, extractable));
545 variations.push(testImportJwk(vector, size, hash, extractable));
550 await Promise.all(variations);
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/
H A Dupdate.py38 variations = elt.get (ns ('ft:var'), '').replace (':', '=').replace (';', ',')
48 if variations:
49 opts = opts + ' --variations=%s' % variations
57 variations = elt.get (ns ('ft:var'), '').replace (':', '=').replace (';', ',')
59 if variations:
60 opts = '--variations=%s' % variations
/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp268 FT_MM_Var* variations = nullptr; in setupAxes()
269 if (FT_Get_MM_Var(fFace.get(), &variations)) { in setupAxes()
270 LOG_INFO("INFO: font %s claims variations, but none found.\n", in setupAxes()
274 SkAutoFree autoFreeVariations(variations); in setupAxes()
276 if (static_cast<FT_UInt>(data.getAxisCount()) != variations->num_axis) { in setupAxes()
277 LOG_INFO("INFO: font %s has %d variations, but %d were specified.\n", in setupAxes()
278 rec->fFace->family_name, variations->num_axis, data.getAxisCount()); in setupAxes()
288 LOG_INFO("INFO: font %s has variations, but specified variations could not be set.\n", in setupAxes()
611 FT_MM_Var* variations
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-var.cc264 * @variations: The array of variations to normalize
265 * @variations_length: The number of variations to normalize
275 const hb_variation_t *variations, /* IN */ in hb_ot_var_normalize_variations()
287 if (hb_ot_var_find_axis_info (face, variations[i].tag, &info) && in hb_ot_var_normalize_variations()
289 coords[info.axis_index] = fvar.normalize_axis_value (info.axis_index, variations[i].value); in hb_ot_var_normalize_variations()
274 hb_ot_var_normalize_variations(hb_face_t *face, const hb_variation_t *variations, unsigned int variations_length, int *coords, unsigned int coords_length) hb_ot_var_normalize_variations() argument
H A Dhb-ot-var.h177 const hb_variation_t *variations, /* IN */
H A Dhb-coretext.cc337 CFMutableDictionaryRef variations = in _hb_coretext_shaper_font_data_create() local
350 CFDictionarySetValue (variations, in _hb_coretext_shaper_font_data_create()
359 (const void **) &variations, in _hb_coretext_shaper_font_data_create()
369 CFRelease (variations); in _hb_coretext_shaper_font_data_create()
H A Dhb-font.cc2034 * @variations: (array length=variations_length): Array of variation settings to apply
2035 * @variations_length: Number of variations to apply
2043 const hb_variation_t *variations, in hb_font_set_variations()
2071 const auto tag = variations[i].tag; in hb_font_set_variations()
2072 const auto v = variations[i].value; in hb_font_set_variations()
2042 hb_font_set_variations(hb_font_t *font, const hb_variation_t *variations, unsigned int variations_length) hb_font_set_variations() argument
H A Dhb-font.h1028 const hb_variation_t *variations,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dgen_vk_internal_shaders.py265 variations = json.loads(fin.read())
269 for key, value in variations.items():
434 # because the same compile error is likely present in other variations of the same shader and
488 # The variations are given a bit pattern to be able to OR different flags into a variation. The
709 variations for variations in input_shaders_variations if variations is not None
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js[all...]
H A Dtypescript.js[all...]
H A DtypescriptServices.js[all...]
H A Dtsserver.js[all...]

Completed in 137 milliseconds