/external/libcxx/test/support/ |
D | archetypes.hpp | 28 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/ |
D | PR31384.pass.cpp | 23 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()
|
D | alloc_convert_copy.pass.cpp | 27 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()
|
D | convert_move.pass.cpp | 23 struct Explicit { struct 25 explicit Explicit(int x) : value(x) {} in Explicit() argument 96 std::tuple<Explicit> t2(std::move(t1)); in main()
|
D | alloc_convert_move.pass.cpp | 43 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()
|
D | convert_copy.pass.cpp | 25 struct Explicit { struct 27 explicit Explicit(int x) : value(x) {} in Explicit() function 132 std::tuple<Explicit> t2(t1); in main()
|
D | alloc_UTypes.pass.cpp | 76 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/ |
D | p14-0x.cpp | 7 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/ |
D | DWARFContext.cpp | 323 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/ |
D | sampler_test.cc | 37 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/ |
D | spec-10-11.data | 3 ? explicit key2 : , # Explicit empty 6 simple key2 : , # Explicit empty
|
D | spec-10-10.data | 3 ? explicit key2 : , # Explicit empty 6 simple key2 : , # Explicit empty
|
/external/llvm/test/YAMLParser/ |
D | spec-10-11.test | 5 ? explicit key2 : , # Explicit empty 8 simple key2 : , # Explicit empty
|
D | spec-10-10.test | 5 ? explicit key2 : , # Explicit empty 8 simple key2 : , # Explicit empty
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/YAMLParser/ |
D | spec-10-11.test | 5 ? explicit key2 : , # Explicit empty 8 simple key2 : , # Explicit empty
|
D | spec-10-10.test | 5 ? explicit key2 : , # Explicit empty 8 simple key2 : , # Explicit empty
|
/external/libcxx/test/std/utilities/meta/meta.rel/ |
D | is_nothrow_invocable.pass.cpp | 31 struct Explicit { struct 32 explicit Explicit(int) noexcept {} in Explicit() argument 84 static_assert(!std::is_nothrow_invocable<Fn(), Explicit>(), ""); in main()
|
D | is_invocable.pass.cpp | 32 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/ |
D | references.dts | 6 /* Explicit phandles */ 26 /* Explicit phandle with implicit value */
|
D | multilabel.dts | 10 /* Explicit phandles */ 31 /* Explicit phandle with implicit value */
|
D | multilabel_merge.dts | 8 /* Explicit phandles */ 29 /* Explicit phandle with implicit value */
|
/external/clang/test/Modules/Inputs/ |
D | redecl-merge-right.h | 45 @class Explicit; 82 @import redecl_merge_top.Explicit;
|
/external/clang/test/CXX/expr/expr.const/ |
D | p5-0x.cpp | 27 struct Explicit { struct 28 constexpr Explicit() {} in Explicit() argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/ |
D | invalid.test | 40 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/ |
D | invalid.test | 37 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
|