Home
last modified time | relevance | path

Searched refs:FunctionDecl (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/parser/
Dparser_test.go94 Functions: []ast.FunctionDecl{{
99 Functions: []ast.FunctionDecl{{
107 Functions: []ast.FunctionDecl{{
115 Functions: []ast.FunctionDecl{{
123 Functions: []ast.FunctionDecl{{
132 Functions: []ast.FunctionDecl{{
147 Functions: []ast.FunctionDecl{{
162 Functions: []ast.FunctionDecl{{
168 Functions: []ast.FunctionDecl{{
Dparser.go156 func (p *parser) functionDecl(decos ast.Decorations) ast.FunctionDecl {
159 f := ast.FunctionDecl{
/third_party/rust/crates/bindgen/bindgen-tests/tests/quickchecking/src/
Dfuzzers.rs135 FunctionDecl(FunctionPrototypeC), enumerator
173 DeclarationC::FunctionDecl(ref mut d) => d.make_unique(stamp), in make_unique()
187 0 => DeclarationC::FunctionDecl(FunctionPrototypeC::arbitrary(g)), in arbitrary()
209 DeclarationC::FunctionDecl(ref d) => write!(f, "{}", d), in fmt()
405 DeclarationC::FunctionDecl(_) => {} in arbitrary()
453 DeclarationC::FunctionDecl(_) => {} in arbitrary()
/third_party/node/deps/v8/tools/gcmole/
Dgcmole.cc222 const clang::FunctionDecl* callee = expr->getDirectCallee(); in VisitCallExpr()
236 void AnalyzeFunction(const clang::FunctionDecl* f) { in AnalyzeFunction()
243 const clang::FunctionDecl* body = NULL; in AnalyzeFunction()
319 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) { in VisitFunctionDecl()
399 const clang::FunctionDecl* decl) { in IsKnownToCauseGC()
415 const clang::FunctionDecl* decl) { in IsSuspectedToCauseGC()
1074 clang::FunctionDecl* callee = call->getDirectCallee(); in VisitCallExpr()
1430 void DefineParameters(const clang::FunctionDecl* f, in DefineParameters()
1433 clang::FunctionDecl::param_const_iterator end = f->param_end(); in DefineParameters()
1434 for (clang::FunctionDecl::param_const_iterator p = f->param_begin(); in DefineParameters()
[all …]
/third_party/spirv-tools/source/val/
Dfunction.h46 enum class FunctionDecl { enum
66 spv_result_t RegisterSetFunctionDeclType(FunctionDecl type);
292 FunctionDecl declaration_type_;
Dfunction.cpp42 declaration_type_(FunctionDecl::kFunctionDeclUnknown), in Function()
113 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) { in RegisterSetFunctionDeclType()
114 assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown); in RegisterSetFunctionDeclType()
121 declaration_type_ == FunctionDecl::kFunctionDeclDefinition && in RegisterBlock()
Dvalidate_layout.cpp166 FunctionDecl::kFunctionDeclDefinition)) { in FunctionScopedInstructions()
186 FunctionDecl::kFunctionDeclDefinition)) in FunctionScopedInstructions()
224 FunctionDecl::kFunctionDeclDeclaration)) in FunctionScopedInstructions()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
Dfunction.h46 enum class FunctionDecl { enum
66 spv_result_t RegisterSetFunctionDeclType(FunctionDecl type);
292 FunctionDecl declaration_type_;
Dvalidate_layout.cpp166 FunctionDecl::kFunctionDeclDefinition)) { in FunctionScopedInstructions()
186 FunctionDecl::kFunctionDeclDefinition)) in FunctionScopedInstructions()
224 FunctionDecl::kFunctionDeclDeclaration)) in FunctionScopedInstructions()
Dfunction.cpp42 declaration_type_(FunctionDecl::kFunctionDeclUnknown), in Function()
110 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) { in RegisterSetFunctionDeclType()
111 assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown); in RegisterSetFunctionDeclType()
118 declaration_type_ == FunctionDecl::kFunctionDeclDefinition && in RegisterBlock()
/third_party/skia/third_party/externals/spirv-tools/source/val/
Dfunction.h46 enum class FunctionDecl { enum
66 spv_result_t RegisterSetFunctionDeclType(FunctionDecl type);
292 FunctionDecl declaration_type_;
Dvalidate_layout.cpp166 FunctionDecl::kFunctionDeclDefinition)) { in FunctionScopedInstructions()
186 FunctionDecl::kFunctionDeclDefinition)) in FunctionScopedInstructions()
224 FunctionDecl::kFunctionDeclDeclaration)) in FunctionScopedInstructions()
Dfunction.cpp42 declaration_type_(FunctionDecl::kFunctionDeclUnknown), in Function()
110 spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) { in RegisterSetFunctionDeclType()
111 assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown); in RegisterSetFunctionDeclType()
118 declaration_type_ == FunctionDecl::kFunctionDeclDefinition && in RegisterBlock()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/ast/
Dast.go31 Functions []FunctionDecl
102 type FunctionDecl struct { struct
112 func (f FunctionDecl) Format(w fmt.State, verb rune) { argument
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/sem/
Dsem.go132 Decl ast.FunctionDecl
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dparser_impl_function_decl_test.cc23 TEST_F(ParserImplTest, FunctionDecl) { in TEST_F() argument
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/resolver/
Dresolve.go227 func (r *resolver) function(a ast.FunctionDecl) error {