/third_party/python/Tools/scripts/ |
H A D | generate_global_objects.py | 188 def generate_global_strings(identifiers, strings): 210 with printer.block('struct', ' identifiers;'): 211 for name in sorted(identifiers): 224 def generate_runtime_init(identifiers, strings): 274 with printer.block('.identifiers =', ','): 275 for name in sorted(identifiers): 292 identifiers = set(IDENTIFIERS) 297 identifiers.add(name) 303 return identifiers, strings 310 identifiers, string [all...] |
H A D | deepfreeze.py | 23 identifiers, strings = get_identifiers_and_strings() 178 if s in identifiers:
|
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/ |
H A D | wgsl_mutator.cc | 50 // https://www.w3.org/TR/WGSL/#identifiers. in GetIdentifiers() 156 // Get all identifiers and integer literals to use as potential return values. in InsertReturnStatement() 157 std::vector<std::pair<size_t, size_t>> identifiers = in InsertReturnStatement() local 159 auto return_values = identifiers; in InsertReturnStatement() 306 std::vector<std::pair<size_t, size_t>> identifiers = in ReplaceRandomIdentifier() local 309 // Need at least 2 identifiers in ReplaceRandomIdentifier() 310 if (identifiers.size() < 2) { in ReplaceRandomIdentifier() 315 generator.GetUInt32(static_cast<uint32_t>(identifiers.size())); in ReplaceRandomIdentifier() 317 generator.GetUInt32(static_cast<uint32_t>(identifiers.size())); in ReplaceRandomIdentifier() 319 // The two identifiers mus in ReplaceRandomIdentifier() [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | list_internal_identifiers.py | 19 This script generates a file called identifiers that contains all Mbed TLS 20 identifiers found on internal headers. This is the equivalent of what was 21 previously `list-identifiers.sh --internal`, and is useful for generating an 39 "This script writes a list of parsed identifiers in internal " 40 "headers to \"identifiers\". This is useful for generating a list " 52 identifiers = ["{}\n".format(match.name) for match in result] 53 with open("identifiers", "w", encoding="utf-8") as f: 54 f.writelines(identifiers)
|
H A D | check_names.py | 7 This script confirms that the naming of all symbols and identifiers in Mbed TLS 25 - All macros, constants, and identifiers (function names, struct names, etc) 259 identifiers, excluded_identifiers = self.parse_identifiers([ 279 identifiers_justname = [x.name for x in identifiers] 294 self.log.debug(" {:4} Identifiers".format(len(identifiers))) 301 "identifiers": identifiers, 568 def parse_identifiers_in_file(self, header_file, identifiers): 574 Append found matches to the list ``identifiers``. 580 # when identifiers ar [all...] |
/third_party/node/lib/internal/repl/ |
H A D | await.js | 124 ({ 0: kind, 1: identifiers }) => { 125 if (identifiers.length > 0) { 128 `${kind} ${ArrayPrototypeJoin(identifiers, ', ')}; `,
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/ |
H A D | differential_fuzz_mutator.js | 215 const identifiers = path.node.declarations.map(decl => decl.id); 216 thisMutator.printVariables(path, identifiers);
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_pipeline_rt.c | 129 pipeline->identifiers = malloc(sizeof(*pipeline->identifiers) * local_create_info.stageCount); in radv_rt_pipeline_library_create() 130 if (!pipeline->identifiers) in radv_rt_pipeline_library_create() 146 pipeline->identifiers[i].identifierSize = in radv_rt_pipeline_library_create() 149 pipeline->identifiers[i].identifierSize); in radv_rt_pipeline_library_create() 151 pipeline->stages[i].pNext = &pipeline->identifiers[i]; in radv_rt_pipeline_library_create() 152 pipeline->identifiers[i].sType = in radv_rt_pipeline_library_create() 154 pipeline->identifiers[i].pNext = NULL; in radv_rt_pipeline_library_create() 155 pipeline->identifiers[i].pIdentifier = pipeline->hashes[i].sha1; in radv_rt_pipeline_library_create() 178 free(pipeline->identifiers); in radv_rt_pipeline_library_create() [all...] |
H A D | radv_private.h | 2218 VkPipelineShaderStageModuleIdentifierCreateInfoEXT *identifiers;
|
H A D | radv_pipeline.c | 211 free(library_pipeline->identifiers); in radv_pipeline_destroy()
|
/third_party/python/Include/internal/ |
H A D | pycore_global_strings.h | 359 } identifiers; member 376 (_Py_SINGLETON(strings.identifiers._ ## NAME._ascii.ob_base))
|
H A D | pycore_runtime_init.h | 677 .identifiers = { \
|
/third_party/rust/crates/rust-cexpr/src/ |
H A D | expr.rs | 20 //! Use the `IdentifierParser` to substitute identifiers found in expressions. 38 /// Expression parser/evaluator that supports identifiers. 41 identifiers: &'ident HashMap<Vec<u8>, EvalResult>, 403 // ============= Literals and identifiers ================ 417 if let Some(r) = self.identifiers.get(&raw[..]) { in identifier() 502 /// Create a new `IdentifierParser` with a set of known identifiers. When in as_ref() 505 pub fn new(identifiers: &HashMap<Vec<u8>, EvalResult>) -> IdentifierParser<'_> { in as_ref() 506 IdentifierParser { identifiers } in as_ref() 512 /// stream contains comments, keywords or unknown identifiers. 524 /// keywords or unknown identifiers in expr() [all...] |
/third_party/mbedtls/scripts/ |
H A D | abi_check.py | 598 "(typically \"-s identifiers\" after running " 599 "\"tests/scripts/list-identifiers.sh --internal\")")
|
/third_party/gn/src/gn/ |
H A D | input_conversion.cc | 332 Nota that the input dictionary keys have to be valid GN identifiers
|
/third_party/python/Parser/ |
H A D | asdl_c.py | 148 # - identifiers: All identifiers used in the AST declarations 155 identifiers=set(), 194 self.metadata.identifiers.add(field.name) 1511 *metadata.identifiers
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 9119 void HlslParseContext::addQualifierToExisting(const TSourceLoc& loc, TQualifier qualifier, TIdentifierList& identifiers) in addQualifierToExisting() argument 9121 for (unsigned int i = 0; i < identifiers.size(); ++i) in addQualifierToExisting() 9122 addQualifierToExisting(loc, qualifier, *identifiers[i]); in addQualifierToExisting()
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | ParseHelper.cpp | 3256 // The extension GL_EXT_spirv_intrinsics allows us to declare identifiers starting with "gl_". in reservedErrorCheck() 3257 error(loc, "identifiers starting with \"gl_\" are reserved", identifier.c_str(), ""); in reservedErrorCheck() 3260 // "In addition, all identifiers containing two consecutive underscores (__) are in reservedErrorCheck() 3265 // The extension GL_EXT_spirv_intrinsics allows us to declare identifiers starting with "__". in reservedErrorCheck() 3267 error(loc, "identifiers containing consecutive underscores (\"__\") are reserved, and an error if version < 300", identifier.c_str(), ""); in reservedErrorCheck() 3269 warn(loc, "identifiers containing consecutive underscores (\"__\") are reserved", identifier.c_str(), ""); in reservedErrorCheck() 9525 void TParseContext::addQualifierToExisting(const TSourceLoc& loc, TQualifier qualifier, TIdentifierList& identifiers) in addQualifierToExisting() argument 9527 for (unsigned int i = 0; i < identifiers.size(); ++i) in addQualifierToExisting() 9528 addQualifierToExisting(loc, qualifier, *identifiers[i]); in addQualifierToExisting()
|
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 3269 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3270 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3275 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3279 // > Numeric identifiers MUST NOT include leading zeroes. 3315 // > identifiers from left to right as follows: Major, minor, and patch versions are 3395 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3399 // > identifiers consisting of only digits are compared numerically 3406 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3414 // > of the preceding identifiers ar [all...] |
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | 3213 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3214 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3220 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3225 // > Numeric identifiers MUST NOT include leading zeroes. 3263 // > identifiers from left to right as follows: Major, minor, and patch versions are 3347 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3351 // > identifiers consisting of only digits are compared numerically 3358 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3366 // > of the preceding identifiers ar [all...] |
H A D | typescript.js | 3204 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3205 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3211 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3216 // > Numeric identifiers MUST NOT include leading zeroes. 3254 // > identifiers from left to right as follows: Major, minor, and patch versions are 3338 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3342 // > identifiers consisting of only digits are compared numerically 3349 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3357 // > of the preceding identifiers ar [all...] |
H A D | typescriptServices.js | 3204 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3205 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3211 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3216 // > Numeric identifiers MUST NOT include leading zeroes. 3254 // > identifiers from left to right as follows: Major, minor, and patch versions are 3338 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3342 // > identifiers consisting of only digits are compared numerically 3349 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3357 // > of the preceding identifiers ar [all...] |
H A D | tsserver.js | 3214 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3215 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3221 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3226 // > Numeric identifiers MUST NOT include leading zeroes. 3264 // > identifiers from left to right as follows: Major, minor, and patch versions are 3348 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3352 // > identifiers consisting of only digits are compared numerically 3359 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3367 // > of the preceding identifiers ar [all...] |
H A D | typingsInstaller.js | 3194 // > identifiers immediately following the patch version. Identifiers MUST comprise only ASCII 3195 // > alphanumerics and hyphen [0-9A-Za-z-]. Identifiers MUST NOT be empty. Numeric identifiers 3201 // > identifiers immediately following the patch or pre-release version. Identifiers MUST 3206 // > Numeric identifiers MUST NOT include leading zeroes. 3244 // > identifiers from left to right as follows: Major, minor, and patch versions are 3328 // > Numeric identifiers always have lower precedence than non-numeric identifiers. 3332 // > identifiers consisting of only digits are compared numerically 3339 // > identifiers with letters or hyphens are compared lexically in ASCII sort order. 3347 // > of the preceding identifiers ar [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 7058 % . we're printing identifiers, they should be in tt in principle. 7060 % common to leave accents off identifiers. The result looks ok in 7064 % one has made identifiers using them :).
|