/external/pytorch/aten/src/ATen/core/ |
D | function.h | 39 struct TORCH_API Function { struct 42 Function& operator=(const Function&) = default; argument 44 Function& operator=(Function&&) noexcept = default; argument 50 virtual bool isGraphFunction() const { in isGraphFunction() argument 83 virtual Function& setSchema(c10::FunctionSchema schema) = 0; argument 112 virtual ~Function() = default; argument
|
/external/starlark-go/resolve/ |
D | binding.go | 63 type Function struct { struct 64 Pos syntax.Position // of DEF or LAMBDA 65 Name string // name of def, or "lambda" 66 Params []syntax.Expr // param = ident | ident=expr | * | *ident | **ident 67 Body []syntax.Stmt // contains synthetic 'return expr' for lambda 69 HasVarargs bool // whether params includes *args (convenience) 70 HasKwargs bool // whether params includes **kwargs (convenience) 71 NumKwonlyParams int // number of keyword-only optional parameters 72 Locals []*Binding // this function's local/cell variables, parameters first 73 FreeVars []*Binding // enclosing cells to capture in closure
|
/external/llvm/tools/llvm-cov/ |
D | CoverageFilters.cpp | 20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) { in matches() 44 bool CoverageFilters::matches(const coverage::FunctionRecord &Function) { in matches() 53 CoverageFiltersMatchAll::matches(const coverage::FunctionRecord &Function) { in matches()
|
/external/google-breakpad/src/processor/ |
D | basic_source_line_resolver_types.h | 58 BasicSourceLineResolver::Function : public SourceLineResolverBase::Function { struct 59 Function(const string& function_name, in Function() argument 80 typedef SourceLineResolverBase::Function Base; argument 83 int last_added_inline_nest_level;
|
D | source_line_resolver_base_types.h | 123 struct SourceLineResolverBase::Function { struct 124 Function() { } in Function() function 125 Function(const string& function_name, in Function() argument 133 string name; 134 MemAddr address; 135 MemAddr size; 138 int32_t parameter_size; 141 bool is_multiple;
|
D | fast_source_line_resolver_types.h | 76 struct FastSourceLineResolver::Function : struct 78 void CopyFrom(const Function* func_ptr) { in CopyFrom() argument 84 void CopyFrom(const char* raw) { in CopyFrom() 98 StaticContainedRangeMap<MemAddr, char> inlines; 99 StaticRangeMap<MemAddr, Line> lines;
|
/external/pigweed/pw_function/ |
D | function_test.cc | 68 TEST(Function, OperatorCall) { in TEST() argument 87 TEST(Function, ConstructInPlace_FreeFunction) { in TEST() argument 93 TEST(Function, ConstructInPlace_NonCapturingLambda) { in TEST() argument 99 TEST(Function, ConstructInPlace_CapturingLambda) { in TEST() argument 136 TEST(Function, ConstructInPlace_CallableObject) { in TEST() argument 162 TEST(Function, Null_OperatorBool) { in TEST() argument 179 TEST(Function, Null_OperatorEquals) { in TEST() argument 196 TEST(Function, Null_Set) { in TEST() argument 205 TEST(Function, Null_FunctionPointer) { in TEST() argument 214 TEST(Function, Move_Null) { in TEST() argument [all …]
|
/external/executorch/backends/apple/coreml/runtime/sdk/ |
D | program_path.h | 24 struct Function { struct 26 static const char* kTypeName; 28 static const char* kNameKeyName; 30 std::string name; 32 Function(std::string name) : name(std::move(name)) { } in Function() argument
|
/external/cronet/stable/third_party/llvm-libc/src/benchmarks/ |
D | LibcFunctionPrototypes.h | 13 MemcpyFunction Function; member 19 MemmoveFunction Function; member 25 MemsetFunction Function; member 31 BzeroFunction Function; member 37 MemcmpOrBcmpFunction Function; member
|
/external/cronet/tot/third_party/llvm-libc/src/benchmarks/ |
D | LibcFunctionPrototypes.h | 13 MemcpyFunction Function; member 19 MemmoveFunction Function; member 25 MemsetFunction Function; member 31 BzeroFunction Function; member 37 MemcmpOrBcmpFunction Function; member
|
/external/python/cpython3/Tools/clinic/libclinic/ |
D | clanguage.py | 75 signatures: Iterable[Module | Class | Function] 87 func: Function, 110 func: Function, 161 func: Function, 244 f: Function, 257 f: Function,
|
/external/google-breakpad/src/common/ |
D | module.h | 105 struct Function { struct 106 Function(StringView name_input, const Address& address_input) : in Function() function 111 static bool CompareByAddress(const Function* x, const Function* y) { in CompareByAddress() argument 116 StringView name; 119 const Address address; 120 vector<Range> ranges; 123 Address parameter_size; 127 vector<Line> lines; 130 vector<std::unique_ptr<Inline>> inlines; 133 bool is_multiple = false; [all …]
|
/external/mesa3d/src/nouveau/compiler/nak/ |
D | opt_jump_thread.rs | 92 fn rewrite_cfg(func: &mut Function) { in rewrite_cfg() 122 fn opt_fall_through(func: &mut Function) { in opt_fall_through() 138 impl Function { impl
|
/external/rust/android-crates-io/crates/criterion/src/ |
D | routine.rs | 206 pub struct Function<M: Measurement, F, T> struct 216 impl<M: Measurement, F, T> Function<M, F, T> argument 230 impl<M: Measurement, F, T> Routine<M, T> for Function<M, F, T> implementation
|
/external/rust/android-crates-io/crates/tokio/src/task/ |
D | builder.rs | 183 pub fn spawn_blocking<Function, Output>( in spawn_blocking() 185 function: Function, in spawn_blocking() 202 pub fn spawn_blocking_on<Function, Output>( in spawn_blocking_on() 204 function: Function, in spawn_blocking_on()
|
/external/bazelbuild-rules_rust/crate_universe/src/rendering/ |
D | template_engine.rs | 183 fn crate_build_file_fn_generator(template: String) -> impl tera::Function { in crate_build_file_fn_generator() 198 fn module_label_fn_generator(template: String) -> impl tera::Function { in module_label_fn_generator() 217 fn crate_label_fn_generator(template: String, repository_name: String) -> impl tera::Function { in crate_label_fn_generator() 239 fn crate_repository_fn_generator(template: String, repository_name: String) -> impl tera::Function { in crate_repository_fn_generator()
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/Register/Amd/ |
D | Fam17Msr.h | 31 UINT32 Function:12; member 44 UINT32 Function:12; member 52 UINT64 Function:12; member 57 UINT64 Function:12; member 62 UINT64 Function:12; member 69 UINT32 Function:12; member
|
/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/Register/Amd/ |
D | Fam17Msr.h | 31 UINT32 Function : 12; member 44 UINT32 Function : 12; member 52 UINT64 Function : 12; member 57 UINT64 Function : 12; member 62 UINT64 Function : 12; member 69 UINT32 Function : 12; member
|
/external/rust/android-crates-io/crates/bindgen/ir/ |
D | function.rs | 24 Function, enumerator 78 pub(crate) struct Function { struct 92 kind: FunctionKind, argument 98 impl Function { implementation 149 impl DotAttributes for Function { implementation 722 impl ClangSubItemParser for Function { implementation
|
/external/apache-commons-bcel/src/examples/Mini/ |
D | Function.java | 26 public class Function implements org.apache.bcel.Constants, EnvEntry { class 35 public Function(ASTIdent name, ASTIdent[] args) { in Function() method in Function 39 public Function(ASTIdent name, ASTIdent[] args, boolean reserved) { in Function() method in Function
|
/external/pytorch/test/mobile/nnc/ |
D | test_context.cpp | 58 TEST(Function, ExecuteSlowMul) { in TEST() argument 81 TEST(Function, Serialization) { in TEST() argument 120 TEST(Function, ValidInput) { in TEST() argument 134 TEST(Function, InvalidInput) { in TEST() argument
|
/external/llvm/lib/ProfileData/Coverage/ |
D | CoverageMapping.cpp | 216 FunctionRecord Function(OrigFuncName, Record.Filenames); in load() local 265 void insert(const FunctionRecord &Function, unsigned FileID) { in insert() 415 for (const auto &Function : getCoveredFunctions()) in getUniqueSourceFiles() local 425 const FunctionRecord &Function) { in gatherFileIDs() 434 static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) { in findMainViewFileID() 448 const FunctionRecord &Function) { in findMainViewFileID() 463 for (const auto &Function : Functions) { in getCoverageForFile() local 483 for (const auto &Function : Functions) { in getInstantiations() local 501 CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) { in getCoverageForFunction()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/ |
D | ScopedNoAliasAA.h | 24 class Function; variable 34 bool invalidate(Function &, const PreservedAnalyses &, in invalidate() argument
|
D | TypeBasedAliasAnalysis.h | 26 class Function; variable 36 bool invalidate(Function &, const PreservedAnalyses &, in invalidate() argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ScopedNoAliasAA.h | 25 class Function; variable 37 bool invalidate(Function &, const PreservedAnalyses &, in invalidate() argument
|