Home
last modified time | relevance | path

Searched defs:ctors (Results 1 – 18 of 18) sorted by relevance

/external/pytorch/test/autograd/
Dtest_functional.py164 def test_vjp_err_check(self, ctors): argument
203 def test_vjp_err_check_strict(self, ctors): argument
246 def test_vjp_no_grad(self, ctors): argument
267 def test_vjp_output(self, ctors): argument
302 def test_vjp_scalar(self, ctors): argument
326 def test_vjp_create_graph(self, ctors): argument
394 def test_jvp_err_check(self, ctors): argument
433 def test_jvp_err_check_strict(self, ctors): argument
476 def test_jvp_no_grad(self, ctors): argument
497 def test_jvp_output(self, ctors): argument
[all …]
/external/trusty/lk/arch/x86/32/
Dkernel.ld48 KEEP(*(.ctors .init_array))
49 __ctor_end = .;
/external/trusty/lk/arch/x86/64/
Dkernel.ld63 KEEP(*(SORT_BY_INIT_PRIORITY(.ctors.*) SORT_BY_INIT_PRIORITY(.init_array.*)))
75 * .got and .dynamic need to follow .ctors and .dtors because the linker
/external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/
DClassDocImplTest.java486 var ctors = constructors.constructors(); in constructors() local
503 var ctors = constructors.constructors(true); in constructors_filter_true() local
518 var ctors = constructors.constructors(false); in constructors_filter_false() local
/external/trusty/lk/arch/arm64/
Dsystem-onesegment.ld125 KEEP(*(.ctors .init_array))
135 * .got and .dynamic need to follow .ctors and .dtors because the linker
/external/pigweed/pw_kernel/lib/unittest/
Dunittest_runner_cortex_m.rs41 let ctors = core::slice::from_raw_parts(start_ptr, num_ctors); in run_ctors() localVariable
/external/trusty/lk/arch/arm/
Dsystem-onesegment.ld62 KEEP(*(.ctors .init_array))
72 * .got and .dynamic need to follow .ctors and .dtors because the linker
Dsystem-twosegment.ld60 KEEP(*(.ctors .init_array))
61 __ctor_end = .;
/external/pytorch/c10/test/util/
DThreadLocal_test.cpp149 static std::atomic<int> ctors{0}; in TEST() local
184 static std::atomic<int> ctors(0); in TEST() local
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/reflect/
DConstructorUtils.java255 final Constructor<?>[] ctors = cls.getConstructors(); in getMatchingAccessibleConstructor() local
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedCreatorCollector.java102 List<ClassUtil.Ctor> ctors = null; in _findPotentialConstructors() local
DAnnotatedClass.java456 List<AnnotatedConstructor> ctors, in Creators()
/external/cronet/stable/third_party/llvm-libc/src/utils/gpu/loader/nvptx/
Dnvptx-loader.cpp61 std::vector<std::pair<const char *, uint16_t>> ctors; in get_ctor_dtor_array() local
/external/cronet/tot/third_party/llvm-libc/src/utils/gpu/loader/nvptx/
Dnvptx-loader.cpp61 std::vector<std::pair<const char *, uint16_t>> ctors; in get_ctor_dtor_array() local
/external/doclava/src/com/google/doclava/
DClassInfo.java1128 ArrayList<MethodInfo> ctors = constructors(); in makeKeywordEntries() local
1284 ArrayList<MethodInfo> ctors = constructors(); in makeHDF() local
DStubs.java997 ArrayList<MethodInfo> ctors = base.constructors(); in superCtorCall() local
/external/clang/test/CodeGenCXX/
Dconst-init-cxx11.cpp112 constexpr C ctors[3]; variable
/external/clang/include/clang/AST/
DDeclCXX.h779 ctor_range ctors() const { return ctor_range(ctor_begin(), ctor_end()); } in ctors() function