/external/perfetto/src/trace_processor/importers/proto/ |
D | stack_profile_tracker.h | 33 using argument_type = std::pair<uint32_t, int64_t>; 36 result_type operator()(const argument_type& p) const { 43 using argument_type = 47 result_type operator()(const argument_type& p) const { 55 using argument_type = 59 result_type operator()(const argument_type& p) const { 67 using argument_type = std::pair<uint32_t, perfetto::trace_processor::FrameId>; 70 result_type operator()(const argument_type& p) const { 78 using argument_type = std::vector<uint64_t>; 81 result_type operator()(const argument_type& p) const {
|
/external/v8/src/torque/ |
D | type-inference.cc | 59 const Type* argument_type) { in Match() argument 72 if (maybe_inferred && *maybe_inferred != argument_type) { in Match() 75 inferred_[type_parameter_index] = {argument_type}; in Match() 82 MatchGeneric(basic, argument_type); in Match() 93 const Type* argument_type) { in MatchGeneric() argument 98 auto& specialized_from = argument_type->GetSpecializedFrom(); in MatchGeneric()
|
D | type-inference.h | 70 void Match(TypeExpression* parameter, const Type* argument_type); 71 void MatchGeneric(BasicTypeExpression* parameter, const Type* argument_type);
|
/external/libcxx/test/std/utilities/function.objects/negators/ |
D | not1.depr_in_cxx17.fail.cpp | 27 typedef int argument_type; typedef 28 bool operator()(argument_type) const { return true; } in operator ()()
|
D | unary_negate.depr_in_cxx17.fail.cpp | 27 typedef int argument_type; typedef 28 bool operator()(argument_type) const { return true; } in operator ()()
|
D | unary_negate.pass.cpp | 22 static_assert((std::is_same<F::argument_type, int>::value), "" ); in main()
|
/external/libcxx/test/std/utilities/function.objects/unord.hash/ |
D | pointer.pass.cpp | 33 static_assert((std::is_same<typename H::argument_type, T>::value), "" ); in test() 50 static_assert((std::is_same<typename H::argument_type, T>::value), "" ); in test_nullptr()
|
/external/libcxx/test/std/containers/sequences/vector.bool/ |
D | vector_bool.pass.cpp | 32 static_assert((std::is_same<H::argument_type, T>::value), "" ); in main() 45 static_assert((std::is_same<H::argument_type, T>::value), "" ); in main()
|
/external/perfetto/src/profiling/common/ |
D | callstack_trie.h | 175 using argument_type = ::perfetto::profiling::Mapping; 177 result_type operator()(const argument_type& mapping) { 193 using argument_type = ::perfetto::profiling::Frame; 195 result_type operator()(const argument_type& frame) {
|
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/ |
D | types.pass.cpp | 35 template <typename C> static yes check( typename C::argument_type * ); 79 static_assert((std::is_same<typename F::argument_type, arg_type>::value), "" ); in test_unary_function()
|
/external/angle/third_party/spirv-tools/src/source/val/ |
D | validate_function.cpp | 268 const auto argument_type = _.FindDef(argument->type_id()); in ValidateFunctionCall() local 269 if (!argument_type) { in ValidateFunctionCall() 278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
|
D | instruction.h | 143 typedef spvtools::val::Instruction argument_type; 145 result_type operator()(const argument_type& inst) const {
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_function.cpp | 268 const auto argument_type = _.FindDef(argument->type_id()); in ValidateFunctionCall() local 269 if (!argument_type) { in ValidateFunctionCall() 278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
|
D | instruction.h | 143 typedef spvtools::val::Instruction argument_type; 145 result_type operator()(const argument_type& inst) const {
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_function.cpp | 268 const auto argument_type = _.FindDef(argument->type_id()); in ValidateFunctionCall() local 269 if (!argument_type) { in ValidateFunctionCall() 278 if (!parameter_type || argument_type->id() != parameter_type->id()) { in ValidateFunctionCall() 280 !DoPointeesLogicallyMatch(argument_type, parameter_type, _)) { in ValidateFunctionCall()
|
D | instruction.h | 143 typedef spvtools::val::Instruction argument_type; 145 result_type operator()(const argument_type& inst) const {
|
/external/perfetto/src/trace_processor/storage/ |
D | trace_storage.h | 823 using argument_type = ::perfetto::trace_processor::BaseId; 826 result_type operator()(const argument_type& r) const { 846 using argument_type = 850 result_type operator()(const argument_type& r) const { 861 using argument_type = 865 result_type operator()(const argument_type& r) const { 876 using argument_type = 880 result_type operator()(const argument_type& r) const {
|
/external/libcxx/test/std/depr/depr.function.objects/depr.base/ |
D | unary_function.pass.cpp | 26 …static_assert((std::is_same<std::unary_function<unsigned, char>::argument_type, unsigned>::value),… in main()
|
/external/libcxx/test/std/utilities/function.objects/func.require/ |
D | unary_function.pass.cpp | 22 static_assert((std::is_same<uf::argument_type, int>::value), ""); in main()
|
/external/libchrome/base/files/ |
D | file_path.h | 472 typedef base::FilePath argument_type; 474 result_type operator()(argument_type const& f) const {
|
/external/libcxx/test/std/containers/ |
D | NotConstructible.h | 33 typedef NotConstructible argument_type;
|
D | test_hash.h | 25 operator()(typename std::add_lvalue_reference<const typename C::argument_type>::type x) const in operator()
|
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/ |
D | hash_type_index.pass.cpp | 30 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main()
|
/external/libcxx/test/std/utilities/type.index/type.index.hash/ |
D | hash.pass.cpp | 28 static_assert((std::is_same<typename H::argument_type, std::type_index>::value), "" ); in main()
|
/external/libcxx/test/std/containers/container.node/ |
D | node_handle.pass.cpp | 37 using argument_type = T; typedef 68 using argument_type = Static; typedef
|