Searched refs:GetType (Results 1 - 25 of 144) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp22 switch (GetType()) {
46 if (GetType() == OptionValue::eTypeBoolean)
52 if (GetType() == OptionValue::eTypeBoolean)
58 if (GetType() == OptionValue::eTypeChar)
64 if (GetType() == OptionValue::eTypeChar)
70 if (GetType() == OptionValue::eTypeFileSpec)
76 if (GetType() == OptionValue::eTypeFileSpec)
82 if (GetType() == OptionValue::eTypeFileSpecList)
88 if (GetType() == OptionValue::eTypeFileSpecList)
94 if (GetType()
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueArgs.h26 Type GetType() const override { return eTypeArgs; }
H A DOptionValuePathMappings.h26 OptionValue::Type GetType() const override { return eTypePathMap; }
H A DOptionValueUUID.h27 OptionValue::Type GetType() const override { return eTypeUUID; }
H A DOptionValueRegex.h26 OptionValue::Type GetType() const override { return eTypeRegex; }
/freebsd-11-stable/lib/libdevdctl/
H A Dexception.h130 Type GetType() const;
156 ParseException::GetType() const function in class:DevdCtl::ParseException
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBError.i82 GetType () const;
116 type = property(GetType, None, doc='''A read only property that returns the same result as GetType().''')
H A DSBSymbol.i58 GetType ();
84 type = property(GetType, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eSymbolType") that represents the type of this symbol.''')
H A DSBTypeEnumMember.i40 GetType ();
50 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this enum member.''')
H A DSBEvent.i132 GetType () const;
H A DSBTypeNameSpecifier.i41 GetType ();
H A DSBFunction.i87 GetType ();
128 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
H A DSBStructuredData.i36 lldb::StructuredDataType GetType() const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h87 lldb::StructuredDataType GetType() const { function in class:lldb_private::StructuredDataImpl
88 return (m_data_sp ? m_data_sp->GetType() :
96 if (m_data_sp->GetType() == lldb::eStructuredDataTypeDictionary) {
99 } else if (m_data_sp->GetType() == lldb::eStructuredDataTypeArray) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTypeNameSpecifier.h35 SBType GetType();
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBError.cpp87 ErrorType SBError::GetType() const { function in class:SBError
88 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::ErrorType, SBError, GetType);
92 err_type = m_opaque_up->GetType();
201 LLDB_REGISTER_METHOD_CONST(lldb::ErrorType, SBError, GetType, ());
H A DSBStructuredData.cpp70 if (!json_obj || json_obj->GetType() != eStructuredDataTypeDictionary)
110 StructuredDataType SBStructuredData::GetType() const { function in class:SBStructuredData
112 GetType);
114 return (m_impl_up ? m_impl_up->GetType() : eStructuredDataTypeInvalid);
130 if (GetType() != eStructuredDataTypeDictionary)
229 GetType, ());
H A DSBFunction.cpp108 Type *func_type = m_opaque_ptr->GetType();
207 SBType SBFunction::GetType() { function in class:SBFunction
208 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBFunction, GetType);
212 Type *function_type = m_opaque_ptr->GetType();
275 LLDB_REGISTER_METHOD(lldb::SBType, SBFunction, GetType, ());
H A DSBTypeFormat.cpp58 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat)
66 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum)
174 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) ||
176 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum)))
180 if (m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat)
H A DSBTypeNameSpecifier.cpp69 SBType SBTypeNameSpecifier::GetType() { function in class:SBTypeNameSpecifier
70 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBTypeNameSpecifier, GetType);
173 LLDB_REGISTER_METHOD(lldb::SBType, SBTypeNameSpecifier, GetType, ());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DASanRuntime.h38 virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); } function in class:lldb_private::AddressSanitizerRuntime
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.h38 virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); } function in class:lldb_private::MainThreadCheckerRuntime
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DUBSanRuntime.h39 virtual lldb::InstrumentationRuntimeType GetType() { return GetTypeStatic(); } function in class:lldb_private::UndefinedBehaviorSanitizerRuntime
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h141 virtual Type GetType() { return Type::eTypeUnknown; } function in class:lldb_private::TypeFormatImpl
172 TypeFormatImpl::Type GetType() override {
200 TypeFormatImpl::Type GetType() override {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp758 return GetType(ast.VoidPtrTy);
763 return GetType(ast.UnsignedCharTy);
765 return GetType(ast.UnsignedShortTy);
767 return GetType(ast.UnsignedIntTy);
769 return GetType(ast.UnsignedLongTy);
771 return GetType(ast.UnsignedLongLongTy);
773 return GetType(ast.UnsignedInt128Ty);
778 return GetType(ast.SignedCharTy);
780 return GetType(ast.ShortTy);
782 return GetType(as
[all...]

Completed in 102 milliseconds

123456