Home
last modified time | relevance | path

Searched refs:HasType (Results 1 – 20 of 20) sorted by relevance

/external/llvm-project/lldb/source/Core/
DValueObjectDynamicValue.cpp46 if (m_dynamic_type_info.HasType()) in GetCompilerTypeImpl()
83 if (m_dynamic_type_info.HasType()) in GetDisplayTypeName()
93 if (success && m_dynamic_type_info.HasType()) { in CalculateNumChildren()
103 if (success && m_dynamic_type_info.HasType()) { in GetByteSize()
181 if (class_type_or_name.HasType()) { in UpdateValue()
/external/libcxx/test/libcxx/type_traits/
Dlazy_metafunctions.pass.cpp62 struct HasType : HasTypeImp<Type>::type {}; struct
67 static_assert(HasType<Result>::value, ""); in LazyEnableIfTest()
72 static_assert(!HasType<Result>::value, ""); in LazyEnableIfTest()
/external/openscreen/cast/receiver/
Dapplication_agent.cc32 bool HasType(const Json::Value& object, CastMessageType type) { in HasType() function
148 if (HasType(request, CastMessageType::kPing)) { in OnMessage()
154 } else if (HasType(request, CastMessageType::kGetAppAvailability)) { in OnMessage()
156 } else if (HasType(request, CastMessageType::kGetStatus)) { in OnMessage()
158 } else if (HasType(request, CastMessageType::kLaunch)) { in OnMessage()
160 } else if (HasType(request, CastMessageType::kStop)) { in OnMessage()
/external/openscreen/cast/standalone_sender/
Dlooping_file_cast_agent.cc47 bool HasType(const Json::Value& object, CastMessageType type) { in HasType() function
165 if (HasType(payload, CastMessageType::kReceiverStatus)) { in OnMessage()
167 } else if (HasType(payload, CastMessageType::kLaunchError)) { in OnMessage()
172 } else if (HasType(payload, CastMessageType::kInvalidRequest)) { in OnMessage()
/external/llvm-project/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
Dresult_of.pass.cpp39 struct HasType : std::false_type {}; struct
42 struct HasType<T, typename Voider<typename T::type>::type> : std::true_type {}; struct
79 static_assert((!HasType<std::invoke_result<Fn, Args...> >::value), ""); in call()
88 static_assert((!HasType<std::result_of<T> >::value), ""); in test_no_result()
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
Dresult_of.pass.cpp40 struct HasType : std::false_type {}; struct
43 struct HasType<T, typename Voider<typename T::type>::type> : std::true_type {}; struct
80 static_assert((!HasType<std::invoke_result<Fn, Args...> >::value), ""); in call()
89 static_assert((!HasType<std::result_of<T> >::value), ""); in test_no_result()
/external/llvm-project/llvm/tools/llvm-dwarfdump/
DStatistics.cpp221 bool HasType = false; in collectStatsForDie() local
257 HasType = true; in collectStatsForDie()
375 if (HasType) in collectStatsForDie()
383 if (HasType) in collectStatsForDie()
/external/llvm-project/libcxx/test/libcxx/type_traits/
Dlazy_metafunctions.pass.cpp62 struct HasType : HasTypeImp<Type>::type {}; struct
/external/llvm-project/llvm/unittests/FuzzMutate/
DOperationsTest.cpp75 MATCHER_P(HasType, T, "") { return arg->getType() == T; }
398 Each(AnyOf(HasType(Int32Ty), HasType(Int8PtrTy)))); in TEST()
/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp244 TEST(HasType, TakesQualTypeMatcherAndMatchesExpr) { in TEST() argument
256 TEST(HasType, TakesQualTypeMatcherAndMatchesValueDecl) { in TEST() argument
267 TEST(HasType, TakesDeclMatcherAndMatchesExpr) { in TEST() argument
276 TEST(HasType, TakesDeclMatcherAndMatchesValueDecl) { in TEST() argument
284 TEST(HasType, MatchesTypedefDecl) { in TEST() argument
294 TEST(HasType, MatchesTypedefNameDecl) { in TEST() argument
485 TEST(HasType, MatchesParameterVariableTypesStrictly) { in TEST() argument
DASTMatchersNarrowingTest.cpp599 TEST(HasType, MatchesAsString) { in TEST() argument
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFieldDescriptor.cs312 if (Proto.HasType) in CrossLink()
DDescriptor.cs1891 public bool HasType { property in Google.Protobuf.Reflection.FieldDescriptorProto
2097 if (HasType) hash ^= Type.GetHashCode(); in GetHashCode()
2133 if (HasType) { in WriteTo()
2174 if (HasType) { in CalculateSize()
2215 if (other.HasType) { in MergeFrom()
/external/tensorflow/tensorflow/core/framework/
Dattr_value_util_test.cc62 TEST(AttrValueUtil, HasType) { in TEST() argument
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp300 TEST(HasType, TakesQualTypeMatcherAndMatchesExpr) { in TEST() argument
312 TEST(HasType, TakesQualTypeMatcherAndMatchesValueDecl) { in TEST() argument
323 TEST(HasType, TakesDeclMatcherAndMatchesExpr) { in TEST() argument
332 TEST(HasType, TakesDeclMatcherAndMatchesValueDecl) { in TEST() argument
340 TEST(HasType, MatchesTypedefDecl) { in TEST() argument
350 TEST(HasType, MatchesTypedefNameDecl) { in TEST() argument
930 TEST(HasType, MatchesParameterVariableTypesStrictly) { in TEST() argument
/external/llvm-project/lldb/include/lldb/Symbol/
DType.h425 bool HasType() const { return HasCompilerType(); } in HasType() function
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
DItaniumABILanguageRuntime.cpp275 if (type_and_or_name.HasType()) { in FixUpDynamicType()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.cpp282 if (type_and_or_name.HasType()) { in FixUpDynamicType()
/external/llvm-project/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1653 bool HasType = Record[i] == 6; in parseAttributeGroupBlock() local
1658 B.addByValAttr(HasType ? getTypeByID(Record[++i]) : nullptr); in parseAttributeGroupBlock()
1660 B.addStructRetAttr(HasType ? getTypeByID(Record[++i]) : nullptr); in parseAttributeGroupBlock()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1655 bool HasType = Record[i] == 6; in parseAttributeGroupBlock() local
1660 B.addByValAttr(HasType ? getTypeByID(Record[++i]) : nullptr); in parseAttributeGroupBlock()