/third_party/mbedtls/tests/scripts/ |
H A D | test_psa_constant_names.py | 52 expressions: Iterable[str], 55 """Generate and run a program to print out numerical values of C expressions.""" 64 expressions, 88 Simplifiable expressions can't be output in their input form, since 100 """Generate expressions using known macro names and calculate their values. 106 expressions = sorted(expr 109 values = run_c(type_word, expressions, 111 return expressions, values 131 expressions, values = collect_values(inputs, type_word, 138 self.count += len(expressions) [all...] |
H A D | generate_psa_tests.py | 542 expressions = self.constructors.generate_expressions(lifetimes) 543 for lifetime in expressions:
|
/third_party/mesa3d/src/compiler/isaspec/ |
H A D | encode.py | 70 self.expr = isa.expressions[case.expr] 82 self.expr = isa.expressions[case.expr] 102 expr = bitset.isa.expressions[case.expr] 116 expr = bitset.isa.expressions[field.expr] 135 self.expr = isa.expressions[case.expr] 234 # expressions used in a bitset (case or field or recursively parent bitsets) 238 yield self.isa.expressions[case.expr] 241 yield self.isa.expressions[field.expr] 277 expr = self.isa.expressions[field.expr] 471 ## note, we can't just iterate all the expressions, bu [all...] |
H A D | isa.py | 410 # Counter used to name inline (anonymous) expressions: 413 # Table of (globally defined) expressions: 414 self.expressions = {} 441 self.expressions[e.name] = e 454 # Extract expressions:
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_build_helper.py | 52 def generate_c_printf_expressions(c_file, cast_to, printf_format, expressions): 53 """Generate C instructions to print the value of ``expressions``. 60 for expr in expressions: 125 expressions, 130 """Generate and run a program to print out numerical values for expressions. 136 * ``expressions``: a list of C language expressions that have the type 146 Return the list of values of the ``expressions``. 159 expressions)
|
H A D | psa_storage.py | 36 """Cache of known values of expressions.""" 42 """Update `value_cache` for expressions registered in `unknown_values`.""" 43 expressions = sorted(self.unknown_values) 49 expressions, 54 for e, v in zip(expressions, values):
|
H A D | psa_information.py | 76 def automatic_dependencies(*expressions: str) -> List[str]: 79 The arguments are strings which should be C expressions. Do not use 84 for expr in expressions: 89 # Define set of regular expressions and dependencies to optionally append
|
H A D | crypto_data_tests.py | 18 def psa_low_level_dependencies(*expressions: str) -> List[str]: 23 high_level = psa_information.automatic_dependencies(*expressions)
|
/third_party/libunwind/libunwind/tests/ |
H A D | x64-test-dwarf-expressions.S | 7 # CFI expressions were added in DWARF v3 to allow compilers to specify memory 10 # and other complex logic. CFI expressions are therefore more powerful than the 16 # DW_CFA_expression logic, which uses DWARF expressions to compute the address
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CodeMangler.java | 484 String[] expressions = new String[count]; in processFile() 486 expressions[0] = val; in processFile() 494 expressions[count++] = val.substring(start, index); in processFile() 497 expressions[count++] = val.substring(start); in processFile() 503 for (count = 0; count < expressions.length && !eval; count++) { in processFile() 504 if (pat2Match(expressions[count], res)) { in processFile()
|
/third_party/mesa3d/src/compiler/glsl/ |
H A D | ast_function.cpp | 591 * paramaters), or expressions of these. in generate_call() 593 * Constructors may be used in such expressions, but function calls may in generate_call() 603 * expressions, with the exception of the texture lookup in generate_call() 616 * expressions, with the exception of the texture lookup in generate_call() 626 * expressions, with the exception of the texture lookup in generate_call() 1225 * expressions. in process_vec_mat_constructor() 1341 * expressions. in foreach_in_list_safe() 1989 * expressions. in process_record_constructor() 2038 if (!this->expressions.is_empty()) { in handle_method() 2168 & loc, &this->expressions, stat in hir() [all...] |
H A D | glsl_parser_extras.cpp | 981 for (exec_node *expr_node = ai->expressions.get_head_raw(); 993 exec_node *expr_node = ai->expressions.get_head_raw(); 1007 for (exec_node *expr_node = ai->expressions.get_head_raw(); 1315 foreach_list_typed (ast_node, ast, link, &this->expressions) { 1316 if (&ast->link != this->expressions.get_head()) 1362 foreach_list_typed (ast_node, ast, link, & this->expressions) { 1363 if (&ast->link != this->expressions.get_head()) 1374 foreach_list_typed (ast_node, ast, link, & this->expressions) { 1375 if (&ast->link != this->expressions.get_head())
|
H A D | ast.h | 271 * List of expressions for an \c ast_sequence or parameters for an 274 exec_list expressions; member in ast_expression 281 * can't be l-values. For example, pre- or post-incerement expressions. 302 * Subclass of expressions for function calls
|
/third_party/gn/src/gn/ |
H A D | command_check.cc | 68 one (although not general regular expressions). If specified, only those
|
/third_party/glslang/glslang/HLSL/ |
H A D | hlslGrammar.cpp | 3873 TIntermAggregate* expressions = nullptr; in acceptAttributes() local 3877 expressions = new TIntermAggregate; in acceptAttributes() 3884 expressions->getSequence().push_back(node); in acceptAttributes() 3889 // 'expressions' is an aggregate with the expressions in it in acceptAttributes() 3894 if (expectingExpression || expressions->getSequence().empty()) in acceptAttributes() 3915 TAttributeArgs attributeArgs = { attributeType, expressions }; in acceptAttributes()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 269 // Compute some expressions involving only number literals. in BuildUnaryExpression() 1168 // declaration. Same for import.meta expressions. in ParseModuleItem() 2445 // Create chain of expressions "flag = 0, temp_x = x, ..." in DesugarLexicalBindingsInForStatement() 2553 // expressions. in AddArrowFunctionFormalParameters() 2609 // expressions. in PrepareGeneratorVariables() 3495 const ZonePtrList<Expression>* expressions = lit->expressions(); in CloseTemplateLiteral() local 3497 DCHECK_EQ(cooked_strings->length(), expressions->length() + 1); in CloseTemplateLiteral() 3503 return factory()->NewTemplateLiteral(cooked_strings, expressions, pos); in CloseTemplateLiteral() 3512 call_args.AddAll(expressions in CloseTemplateLiteral() [all...] |
H A D | parser.h | 474 const ZonePtrList<Expression>* expressions() const { return &expressions_; } in expressions() function in v8::internal::Parser::TemplateLiteral 1015 // Used to record source ranges of expressions associated with optional chain:
|
/third_party/python/Parser/ |
H A D | string_parser.c | 549 doesn't need to error on all invalid expressions, just correctly 580 expressions. */ in fstring_find_expr() 588 RAISE_SYNTAX_ERROR("f-string: expressions nested too deeply"); in fstring_find_expr() 751 RAISE_SYNTAX_ERROR("f-string: self documenting expressions are " in fstring_find_expr() 1013 /* Allocate the asdl_seq and copy the expressions in to it. */ in ExprList_Finish() 1206 /* If we're just a constant string with no expressions, return in _PyPegen_FstringParser_Finish()
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
H A D | es31cArrayOfArraysTests.cpp | 3405 std::string expressions[] = { "a", "b", "c", "0 + 1" }; in test_shader_compilation() local 3408 for (size_t write_index = 0; write_index < sizeof(expressions) / sizeof(expressions[0]); write_index++) in test_shader_compilation() 3410 for (size_t read_index = 0; read_index < sizeof(expressions) / sizeof(expressions[0]); read_index++) in test_shader_compilation() 3415 shader_source += expressions[write_index]; in test_shader_compilation() 3417 shader_source += expressions[read_index]; in test_shader_compilation()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 1354 // Mark all computed expressions that are bound to a key that 1356 // marked expressions, no store code is emitted. 1906 // child expressions (rhs of each op) are stored out-of-line, along with 2731 void VisitExpressions(const ZonePtrList<Expression>* expressions) { in VisitExpressions() argument 2732 for (int i = 0; i < expressions->length(); i++) { in VisitExpressions() 2733 // The variable statement visiting code may pass null expressions in VisitExpressions() 2737 Expression* expression = expressions->at(i); in VisitExpressions()
|
/third_party/python/Lib/test/ |
H A D | test_ast.py | 191 # It should test all expressions 229 # Yield - yield expressions can't work outside a function 755 expressions = [f" | {node.__doc__}" for node in ast.expr.__subclasses__()] 756 expressions[0] = f"expr = {ast.expr.__subclasses__()[0].__doc__}" 757 self.assertCountEqual(ast.expr.__doc__.split("\n"), expressions)
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 95 watchers Print all watched expressions and their current values
|
/third_party/node/deps/v8/src/torque/ |
H A D | implementation-visitor.h | 34 // - field or element access expressions that generate operator calls. 487 const std::vector<NameAndExpression>& expressions);
|
/third_party/typescript/lib/ |
H A D | typingsInstaller.js | 8496 await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules: diag(1308, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308", "'await' expressions are only allowed within async functions and at the top levels of modules."), 8543 Tagged_template_expressions_are_not_permitted_in_an_optional_chain: diag(1358, ts.DiagnosticCategory.Error, "Tagged_template_expressions_are_not_permitted_in_an_optional_chain_1358", "Tagged template expressions are not permitted in an optional chain."), 8558 await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1375, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375", "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."), 8561 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."), 8828 Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher: diag(2472, ts.DiagnosticCategory.Error, "Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher_2472", "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher."), 8831 const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query: diag(2475, ts.DiagnosticCategory.Error, "const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475", "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query."), 8874 yield_expressions_cannot_be_used_in_a_parameter_initializer: diag(2523, ts.DiagnosticCategory.Error, "yield_expressions_cannot_be_used_in_a_parameter_initializer_2523", "'yield' expressions cannot be used in a parameter initializer."), 8875 await_expressions_cannot_be_used_in_a_parameter_initializer: diag(2524, ts.DiagnosticCategory.Error, "await_expressions_cannot_be_used_in_a_parameter_initializer_2524", "'await' expressions cannot be used in a parameter initializer."), 8910 Base_class_expressions_cannot_reference_class_type_parameters: diag(2562, ts.DiagnosticCategory.Error, "Base_class_expressions_cannot_reference_class_type_parameters_2562", "Base class expressions cannot reference class type parameters."), 8970 JSX_property_access_expressions_cannot_include_JSX_namespace_names: diag(2633, ts.DiagnosticCategory.Error, "JSX_property_access_expressions_cannot_include_JSX_namespace_names_2633", "JSX property access expressions canno [all...] |
H A D | tsc.js | 5633 await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules: diag(1308, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_within_async_functions_and_at_the_top_levels_of_modules_1308", "'await' expressions are only allowed within async functions and at the top levels of modules."), 5680 Tagged_template_expressions_are_not_permitted_in_an_optional_chain: diag(1358, ts.DiagnosticCategory.Error, "Tagged_template_expressions_are_not_permitted_in_an_optional_chain_1358", "Tagged template expressions are not permitted in an optional chain."), 5695 await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_file_has_no_imports_or_exports_Consider_adding_an_empty_export_to_make_this_file_a_module: diag(1375, ts.DiagnosticCategory.Error, "await_expressions_are_only_allowed_at_the_top_level_of_a_file_when_that_file_is_a_module_but_this_fi_1375", "'await' expressions are only allowed at the top level of a file when that file is a module, but this file has no imports or exports. Consider adding an empty 'export {}' to make this file a module."), 5698 Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_node16_or_nodenext_and_the_target_option_is_set_to_es2017_or_higher: diag(1378, ts.DiagnosticCategory.Error, "Top_level_await_expressions_are_only_allowed_when_the_module_option_is_set_to_es2022_esnext_system_n_1378", "Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', 'node16', or 'nodenext', and the 'target' option is set to 'es2017' or higher."), 5965 Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher: diag(2472, ts.DiagnosticCategory.Error, "Spread_operator_in_new_expressions_is_only_available_when_targeting_ECMAScript_5_and_higher_2472", "Spread operator in 'new' expressions is only available when targeting ECMAScript 5 and higher."), 5968 const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_import_declaration_or_export_assignment_or_type_query: diag(2475, ts.DiagnosticCategory.Error, "const_enums_can_only_be_used_in_property_or_index_access_expressions_or_the_right_hand_side_of_an_im_2475", "'const' enums can only be used in property or index access expressions or the right hand side of an import declaration or export assignment or type query."), 6011 yield_expressions_cannot_be_used_in_a_parameter_initializer: diag(2523, ts.DiagnosticCategory.Error, "yield_expressions_cannot_be_used_in_a_parameter_initializer_2523", "'yield' expressions cannot be used in a parameter initializer."), 6012 await_expressions_cannot_be_used_in_a_parameter_initializer: diag(2524, ts.DiagnosticCategory.Error, "await_expressions_cannot_be_used_in_a_parameter_initializer_2524", "'await' expressions cannot be used in a parameter initializer."), 6047 Base_class_expressions_cannot_reference_class_type_parameters: diag(2562, ts.DiagnosticCategory.Error, "Base_class_expressions_cannot_reference_class_type_parameters_2562", "Base class expressions cannot reference class type parameters."), 6107 JSX_property_access_expressions_cannot_include_JSX_namespace_names: diag(2633, ts.DiagnosticCategory.Error, "JSX_property_access_expressions_cannot_include_JSX_namespace_names_2633", "JSX property access expressions canno 81972 var expressions; global() variable [all...] |