Home
last modified time | relevance | path

Searched refs:Explicit (Results 1 – 25 of 180) sorted by relevance

12345678

/external/libcxx/test/support/
Darchetypes.hpp28 template <class Derived, bool Explicit = false>
57 template <bool Dummy = true, typename std::enable_if<Dummy && Explicit, bool>::type = true>
61 template <bool Dummy = true, typename std::enable_if<Dummy && !Explicit, bool>::type = true>
65 template <bool Dummy = true, typename std::enable_if<Dummy && Explicit, bool>::type = true>
69 template <bool Dummy = true, typename std::enable_if<Dummy && !Explicit, bool>::type = true>
73 template <bool Dummy = true, typename std::enable_if<Dummy && Explicit, bool>::type = true>
78 template <bool Dummy = true, typename std::enable_if<Dummy && !Explicit, bool>::type = true>
132 template <bool Explicit = false>
134 template <bool Dummy = true, typename std::enable_if<Dummy && Explicit, bool>::type = true>
136 template <bool Dummy = true, typename std::enable_if<Dummy && !Explicit, bool>::type = true>
[all …]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
DPR31384.pass.cpp23 struct Explicit { struct
24 Explicit() = default;
25 explicit Explicit(int) {} in Explicit() function
50 std::tuple<Explicit> foo = Derived<int>{42}; ((void)foo); in main()
52 std::tuple<Explicit> bar(Derived<int>{42}); ((void)bar); in main()
65 ExplicitDerived<int>, std::tuple<Explicit>>::value, ""); in main()
66 std::tuple<Explicit> bar(ExplicitDerived<int>{42}); ((void)bar); in main()
Dalloc_convert_copy.pass.cpp27 struct Explicit { struct
29 explicit Explicit(int x) : value(x) {} in Explicit() function
82 std::tuple<Explicit> t2{std::allocator_arg, std::allocator<void>{}, t1}; in main()
Dconvert_move.pass.cpp23 struct Explicit { struct
25 explicit Explicit(int x) : value(x) {} in Explicit() argument
96 std::tuple<Explicit> t2(std::move(t1)); in main()
Dalloc_convert_move.pass.cpp43 struct Explicit { struct
45 explicit Explicit(int x) : value(x) {} in Explicit() argument
96 std::tuple<Explicit> t2{std::allocator_arg, std::allocator<void>{}, std::move(t1)}; in main()
Dconvert_copy.pass.cpp25 struct Explicit { struct
27 explicit Explicit(int x) : value(x) {} in Explicit() function
132 std::tuple<Explicit> t2(t1); in main()
Dalloc_UTypes.pass.cpp76 struct Explicit { struct
78 explicit Explicit(int x) : value(x) {} in Explicit() function
84 std::tuple<Explicit> t{std::allocator_arg, std::allocator<void>{}, 42}; in main()
/external/clang/test/CXX/dcl.decl/dcl.init/
Dp14-0x.cpp7 struct Explicit { // expected-note 2 {{candidate}} expected-note {{here}} struct
8 explicit Explicit(int);
32 Explicit e1; // expected-note {{here}}
33 Explicit e2 = 42; // expected-error {{no viable conversion}}
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp323 bool Explicit = DumpType != DIDT_All && !IsDWO; in dump() local
324 bool ExplicitDWO = Explicit && IsDWO; in dump()
325 auto shouldDump = [&](bool Explicit, const char *Name, unsigned ID, in dump()
329 bool Should = (DumpType & Mask) && (Explicit || !Section.empty()); in dump()
336 if (shouldDump(Explicit, ".debug_abbrev", DIDT_ID_DebugAbbrev, in dump()
354 dumpDebugInfo(Explicit, ".debug_info", DObj->getInfoSection(), in dump()
372 if (Explicit || getNumTypeUnits()) in dump()
378 if (shouldDump(Explicit, ".debug_loc", DIDT_ID_DebugLoc, in dump()
387 if (shouldDump(Explicit, ".debug_frame", DIDT_ID_DebugFrame, in dump()
391 if (shouldDump(Explicit, ".eh_frame", DIDT_ID_DebugFrame, in dump()
[all …]
/external/tensorflow/tensorflow/core/lib/monitoring/
Dsampler_test.cc37 Buckets::Explicit({10.0, 20.0}));
64 Buckets::Explicit({1.5, 2.8}));
74 Buckets::Explicit({1.5, 2.8}));
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-10-11.data3 ? explicit key2 : , # Explicit empty
6 simple key2 : , # Explicit empty
Dspec-10-10.data3 ? explicit key2 : , # Explicit empty
6 simple key2 : , # Explicit empty
/external/llvm/test/YAMLParser/
Dspec-10-11.test5 ? explicit key2 : , # Explicit empty
8 simple key2 : , # Explicit empty
Dspec-10-10.test5 ? explicit key2 : , # Explicit empty
8 simple key2 : , # Explicit empty
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/
Dspec-10-11.test5 ? explicit key2 : , # Explicit empty
8 simple key2 : , # Explicit empty
Dspec-10-10.test5 ? explicit key2 : , # Explicit empty
8 simple key2 : , # Explicit empty
/external/libcxx/test/std/utilities/meta/meta.rel/
Dis_nothrow_invocable.pass.cpp31 struct Explicit { struct
32 explicit Explicit(int) noexcept {} in Explicit() argument
84 static_assert(!std::is_nothrow_invocable<Fn(), Explicit>(), ""); in main()
Dis_invocable.pass.cpp32 struct Explicit { struct
33 explicit Explicit(int) {} in Explicit() argument
152 static_assert(!std::is_invocable_r<Explicit, Fn>::value, ""); in main()
/external/dtc/tests/
Dreferences.dts6 /* Explicit phandles */
26 /* Explicit phandle with implicit value */
Dmultilabel.dts10 /* Explicit phandles */
31 /* Explicit phandle with implicit value */
Dmultilabel_merge.dts8 /* Explicit phandles */
29 /* Explicit phandle with implicit value */
/external/clang/test/Modules/Inputs/
Dredecl-merge-right.h45 @class Explicit;
82 @import redecl_merge_top.Explicit;
/external/clang/test/CXX/expr/expr.const/
Dp5-0x.cpp27 struct Explicit { struct
28 constexpr Explicit() {} in Explicit() argument
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/
Dinvalid.test40 MISMATCHED-EXPLICIT-GEP: Explicit gep type does not match pointee type of pointer operand
41 MISMATCHED-EXPLICIT-LOAD: Explicit load/store type does not match pointee type of pointer operand
42 MISMATCHED-EXPLICIT-GEP-OPERATOR: Explicit gep operator type does not match pointee type of pointer…
43 MISMATCHED-EXPLICIT-CALL: Explicit call type does not match pointee type of callee operand
44 NON-FUNCTION-EXPLICIT-CALL: Explicit call type is not a function type
45 MISMATCHED-EXPLICIT-INVOKE: Explicit invoke type does not match pointee type of callee operand
46 NON-FUNCTION-EXPLICIT-INVOKE: Explicit invoke type is not a function type
/external/llvm/test/Bitcode/
Dinvalid.test37 MISMATCHED-EXPLICIT-GEP: Explicit gep type does not match pointee type of pointer operand
38 MISMATCHED-EXPLICIT-LOAD: Explicit load/store type does not match pointee type of pointer operand
39 MISMATCHED-EXPLICIT-GEP-OPERATOR: Explicit gep operator type does not match pointee type of pointer…
40 MISMATCHED-EXPLICIT-CALL: Explicit call type does not match pointee type of callee operand
41 NON-FUNCTION-EXPLICIT-CALL: Explicit call type is not a function type
42 MISMATCHED-EXPLICIT-INVOKE: Explicit invoke type does not match pointee type of callee operand
43 NON-FUNCTION-EXPLICIT-INVOKE: Explicit invoke type is not a function type

12345678