Home
last modified time | relevance | path

Searched refs:function_decl (Results 1 – 25 of 930) sorted by relevance

12345678910>>...38

/dports/lang/ocaml/ocaml-4.05.0/middle_end/
H A Dremove_free_vars_equal_to_args.ml41 Variable.Map.empty function_decl.params
44 function_decl
49 function_decl.body
52 ~params:function_decl.params
54 ~stub:function_decl.stub
55 ~dbg:function_decl.dbg
56 ~inline:function_decl.inline
57 ~specialise:function_decl.specialise
58 ~is_a_functor:function_decl.is_a_functor
73 Variable.Map.map (fun function_decl ->
[all …]
H A Dflambda_iterators.ml208 f function_decl.body)
216 f function_decl.body)
593 function_decl
597 ~params:function_decl.params
598 ~stub:function_decl.stub
599 ~dbg:function_decl.dbg
600 ~inline:function_decl.inline
629 function_decl
730 function_decl
736 ~dbg:function_decl.dbg
[all …]
H A Daugment_specialised_args.ml259 function_decl;
291 if function_decl.stub then
416 function_decl.params)
420 function_decl.params
426 let function_decl = for_one_function.function_decl in
549 let function_decl = for_one_function.function_decl in
554 if function_decl.stub
616 ~body:function_decl.body
617 ~stub:function_decl.stub
618 ~dbg:function_decl.dbg
[all …]
/dports/lang/ocaml-nox11/ocaml-4.05.0/middle_end/
H A Dremove_free_vars_equal_to_args.ml41 Variable.Map.empty function_decl.params
44 function_decl
49 function_decl.body
52 ~params:function_decl.params
54 ~stub:function_decl.stub
55 ~dbg:function_decl.dbg
56 ~inline:function_decl.inline
57 ~specialise:function_decl.specialise
58 ~is_a_functor:function_decl.is_a_functor
73 Variable.Map.map (fun function_decl ->
[all …]
H A Dflambda_iterators.ml208 f function_decl.body)
216 f function_decl.body)
593 function_decl
597 ~params:function_decl.params
598 ~stub:function_decl.stub
599 ~dbg:function_decl.dbg
600 ~inline:function_decl.inline
629 function_decl
730 function_decl
736 ~dbg:function_decl.dbg
[all …]
H A Daugment_specialised_args.ml259 function_decl;
291 if function_decl.stub then
416 function_decl.params)
420 function_decl.params
426 let function_decl = for_one_function.function_decl in
549 let function_decl = for_one_function.function_decl in
554 if function_decl.stub
616 ~body:function_decl.body
617 ~stub:function_decl.stub
618 ~dbg:function_decl.dbg
[all …]
/dports/emulators/yuzu/yuzu-0b47f7a46/externals/mbedtls/tests/scripts/
H A Dgenerate_code.pl218 my $function_decl = $2;
221 if ($function_decl !~ /^#line\s*.*\nvoid /)
225 $function_decl;
227 if ($function_decl !~ /^(#line\s*.*)\nvoid (\w+)\(\s*(.*?)\s*\)\s*{(.*)}/ms)
244 $function_decl =~ s/(^#line\s*.*)\nvoid /$1\nvoid test_suite_/;
247 if ($function_decl !~ /^exit:$/m)
249 $function_decl =~ s/}\s*$/\nexit:\n return;\n}/;
327 my $function_code = $function_pre_code . $function_decl . "\n" .
/dports/lang/parrot/parrot-8.1.0/t/codingstd/
H A Dpmc_docs.t65 for my $function_decl (@function_decls) {
67 = $headerizer->generate_documentation_signature($function_decl);
68 $this_file{$function_decl}{esc} = $escaped_decl;
74 $this_file{$function_decl}{status} = 0;
78 $this_file{$function_decl}{status} = 1;
82 $this_file{$function_decl}{status} = undef;
H A Dc_function_docs.t57 for my $function_decl (@function_decls) {
59 if ($function_decl =~ m/^(\S+)\s+PARROT_EXPORT/s and
61 push @bad_order, $function_decl;
63 my $escaped_decl = $headerizer->generate_documentation_signature($function_decl);
82 push @missing_docs, "$path ($missing)\n$function_decl\nWant:\n$escaped_decl\n";
/dports/lang/parrot/parrot-8.1.0/lib/Parrot/
H A DHeaderizer.pm566 my $function_decl = shift;
570 $function_decl =~ s/^$key$//m;
573 $function_decl =~ s/^\s+//g;
574 $function_decl =~ s/\s+/ /g;
580 $function_decl =~ s/SHIM\((.*?)\)/$1/g;
583 $function_decl =~ s/(?:NULLOK|NOTNULL)\((.*?)\)/$1/g;
586 $function_decl =~ s/SHIM_INTERP/PARROT_INTERP/g;
589 $function_decl = "=item C<$function_decl>";
593 if (length($function_decl)<= $line_len) {
594 return $function_decl;
[all …]
/dports/games/0ad/0ad-0.0.23b-alpha/build/premake/premake5/contrib/mbedtls/tests/scripts/
H A Dgenerate_code.pl83 my $function_decl = $2;
86 if ($function_decl !~ /^void /)
90 if ($function_decl !~ /^void (\w+)\(\s*(.*?)\s*\)\s*{(.*)}/ms)
106 $function_decl =~ s/^void /void test_suite_/;
109 if ($function_decl !~ /^exit:$/m)
111 $function_decl =~ s/}\s*$/\nexit:\n return;\n}/;
189 my $function_code = $function_pre_code . $function_decl . "\n" . $function_post_code;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/source/Plugins/ExpressionParser/Clang/
H A DASTResultSynthesizer.cpp89 } else if (FunctionDecl *function_decl = dyn_cast<FunctionDecl>(D)) { in TransformTopLevelDecl() local
91 if (m_ast_context && function_decl->hasBody() && in TransformTopLevelDecl()
92 !function_decl->getNameInfo().getAsString().compare("$__lldb_expr")) { in TransformTopLevelDecl()
93 RecordPersistentTypes(function_decl); in TransformTopLevelDecl()
94 SynthesizeFunctionResult(function_decl); in TransformTopLevelDecl()
120 FunctionDecl *function_decl = FunDecl; in SynthesizeFunctionResult() local
122 if (!function_decl) in SynthesizeFunctionResult()
129 function_decl->print(os); in SynthesizeFunctionResult()
136 Stmt *function_body = function_decl->getBody(); in SynthesizeFunctionResult()
139 bool ret = SynthesizeBodyResult(compound_stmt, function_decl); in SynthesizeFunctionResult()
[all …]
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/codegen/
H A DCodeGeneration.py324 function_decl = getGeneratorObjectDeclCode(
340 function_decl = getCoroutineObjectDeclCode(
357 function_decl = getAsyncgenObjectDeclCode(
376 function_decl = getFunctionDirectDecl(
400 function_decl = getFunctionDirectDecl(
409 function_decl = None
411 return function_code, function_decl
445 if function_decl is not None:
446 function_decl_codes.append(function_decl)
453 function_decl = getFunctionDirectDecl(
[all …]
/dports/lang/ocaml/ocaml-4.05.0/asmcomp/
H A Dexport_info_for_pack.ml137 Variable.Map.map (fun (function_decl : Flambda.function_declaration) ->
138 Flambda.create_function_declaration ~params:function_decl.params
139 ~body:(import_code_for_pack units pack function_decl.body)
140 ~stub:function_decl.stub ~dbg:function_decl.dbg
141 ~inline:function_decl.inline
142 ~specialise:function_decl.specialise
143 ~is_a_functor:function_decl.is_a_functor)
H A Dimport_approx.ml43 Variable.Map.map (fun (function_decl : Flambda.function_declaration) ->
45 Flambda_iterators.map_toplevel_named f_named function_decl.body
47 Flambda.create_function_declaration ~params:function_decl.params
48 ~body ~stub:function_decl.stub ~dbg:function_decl.dbg
49 ~inline:function_decl.inline
50 ~specialise:function_decl.specialise
51 ~is_a_functor:function_decl.is_a_functor)
/dports/lang/ocaml-nox11/ocaml-4.05.0/asmcomp/
H A Dexport_info_for_pack.ml137 Variable.Map.map (fun (function_decl : Flambda.function_declaration) ->
138 Flambda.create_function_declaration ~params:function_decl.params
139 ~body:(import_code_for_pack units pack function_decl.body)
140 ~stub:function_decl.stub ~dbg:function_decl.dbg
141 ~inline:function_decl.inline
142 ~specialise:function_decl.specialise
143 ~is_a_functor:function_decl.is_a_functor)

12345678910>>...38