Home
last modified time | relevance | path

Searched refs:GetType (Results 1 – 25 of 168) sorted by relevance

1234567

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp46 if (GetType() == OptionValue::eTypeBoolean) in GetAsBoolean()
58 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
64 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
94 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
100 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
106 if (GetType() == OptionValue::eTypeArray) in GetAsArray()
112 if (GetType() == OptionValue::eTypeArray) in GetAsArray()
118 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
124 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
142 if (GetType() == OptionValue::eTypeEnum) in GetAsEnumeration()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTypeFormat.cpp53 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in GetFormat()
61 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum) in GetTypeName()
163 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) || in CopyOnWrite_Impl()
165 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum))) in CopyOnWrite_Impl()
169 if (m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in CopyOnWrite_Impl()
H A DSBStructuredData.cpp89 if (!json_obj || json_obj->GetType() != eStructuredDataTypeDictionary) in SetFromJSON()
135 StructuredDataType SBStructuredData::GetType() const { in GetType() function in SBStructuredData
138 return m_impl_up->GetType(); in GetType()
150 if (GetType() != eStructuredDataTypeDictionary) in GetKeys()
H A DSBFunction.cpp98 Type *func_type = m_opaque_ptr->GetType(); in GetDescription()
192 SBType SBFunction::GetType() { in GetType() function in SBFunction
197 Type *function_type = m_opaque_ptr->GetType(); in GetType()
H A DSBError.cpp96 ErrorType SBError::GetType() const { in GetType() function in SBError
101 err_type = m_opaque_up->GetType(); in GetType()
H A DSBEvent.cpp70 uint32_t SBEvent::GetType() const { in GetType() function in SBEvent
76 event_type = lldb_event->GetType(); in GetType()
H A DSBSymbol.cpp187 SymbolType SBSymbol::GetType() { in GetType() function in SBSymbol
191 return m_opaque_ptr->GetType(); in GetType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp836 return GetType(ast.IntTy); in GetBuiltinTypeForEncodingAndBitSize()
974 return GetType( in GetBuiltinTypeForDWARFEncodingAndBitSize()
995 return GetType( in GetBuiltinTypeForDWARFEncodingAndBitSize()
1058 return GetType(ast.IntTy); in GetBuiltinTypeForDWARFEncodingAndBitSize()
2279 return GetType(block_type); in CreateBlockPointerType()
2297 return GetType( in CreateArrayType()
4268 return GetType( in GetFullyUnqualifiedType()
4554 return GetType(result); in AddConstModifier()
4564 return GetType(result); in AddVolatileModifier()
4574 return GetType(result); in AddRestrictModifier()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStructuredDataImpl.h94 lldb::StructuredDataType GetType() const { in GetType() function
95 return (m_data_sp ? m_data_sp->GetType() : in GetType()
103 if (m_data_sp->GetType() == lldb::eStructuredDataTypeDictionary) { in GetSize()
106 } else if (m_data_sp->GetType() == lldb::eStructuredDataTypeArray) { in GetSize()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h192 lldbassert(BreakpointSite::Type::eHardware == GetType() || in IsHardware()
194 return BreakpointSite::Type::eHardware == GetType(); in IsHardware()
197 BreakpointSite::Type GetType() const { return m_type; } in GetType() function
/freebsd/lib/libdevdctl/
H A Dexception.h128 Type GetType() const;
154 ParseException::GetType() const in GetType() function
H A Devent.h168 Type GetType() const;
290 Event::GetType() const in GetType() function
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h140 virtual Type GetType() { return Type::eTypeUnknown; } in GetType() function
172 TypeFormatImpl::Type GetType() override { in GetType() function
202 TypeFormatImpl::Type GetType() override { in GetType() function
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp329 const SymbolType type = symbol->GetType(); in InitNameIndexes()
355 if (variant.GetType() & lldb::eFunctionNameTypeSelector) in InitNameIndexes()
357 else if (variant.GetType() & lldb::eFunctionNameTypeFull) in InitNameIndexes()
517 m_symbols[i].GetType() == symbol_type) && in AppendSymbolIndexesWithTypeAndFlagsValue()
539 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesWithType()
716 m_symbols[*pos].GetType() == symbol_type) in AppendSymbolIndexesWithNameAndType()
736 m_symbols[*pos].GetType() == symbol_type) in AppendSymbolIndexesWithNameAndType()
755 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesMatchingRegExAndType()
778 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesMatchingRegExAndType()
802 m_symbols[idx].GetType() == symbol_type) { in FindSymbolWithType()
[all …]
H A DVariable.cpp96 Type *Variable::GetType() { in GetType() function in Variable
98 return m_symfile_type_sp->GetType(); in GetType()
111 Type *type = m_symfile_type_sp->GetType(); in Dump()
195 Type *type = GetType(); in GetDeclContext()
202 Type *type = GetType(); in GetDecl()
690 Type *variable_type = var_sp->GetType(); in PrivateAutoComplete()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVariable.cpp70 Type *var_type = m_variable_sp->GetType(); in GetCompilerTypeImpl()
77 Type *var_type = m_variable_sp->GetType(); in GetTypeName()
84 Type *var_type = m_variable_sp->GetType(); in GetDisplayTypeName()
91 Type *var_type = m_variable_sp->GetType(); in GetQualifiedTypeName()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp54 return object_sp->GetType() == lldb::eStructuredDataTypeArray || in IsRecordType()
55 object_sp->GetType() == lldb::eStructuredDataTypeDictionary; in IsRecordType()
108 if (GetType() == lldb::eStructuredDataTypeDictionary) { in GetObjectForDotSeparatedPath()
123 if (GetType() == lldb::eStructuredDataTypeArray) { in GetObjectForDotSeparatedPath()
H A DXcodeSDK.cpp138 XcodeSDK::Type XcodeSDK::GetType() const { in GetType() function in XcodeSDK
270 if (sdk.GetType() != desired_type) in SDKSupportsModules()
272 return SDKSupportsModules(sdk.GetType(), sdk.GetVersion()); in SDKSupportsModules()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValue.h79 virtual Type GetType() const = 0;
84 return GetType() == eTypeProperties; in ValueIsTransparent()
88 return GetBuiltinTypeAsCString(GetType()); in GetTypeAsCString()
138 uint32_t GetTypeAsMask() { return 1u << GetType(); } in GetTypeAsMask()
H A DOptionValueArgs.h25 Type GetType() const override { return eTypeArgs; } in GetType() function
H A DOptionValuePathMappings.h27 OptionValue::Type GetType() const override { return eTypePathMap; } in GetType() function
/freebsd/contrib/ncurses/ncurses/tinfo/
H A Dmake_hash.c217 #define GetType(n) \ macro
380 printf("\t%s %15d,\t%10s,", L_BRACE, len, GetType(n)); in main()
405 printf("\t%s %15s,\t%10s,", L_BRACE, buffer, GetType(n)); in main()
/freebsd/contrib/bearssl/T0/
H A DTPointerBase.cs57 GetType().Name, vp.x); in ToString()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBWatchpointDocstrings.i28 ) lldb::SBWatchpoint::GetType;
H A DSBErrorExtensions.i13 …type = property(GetType, None, doc='''A read only property that returns the same result as GetType…

1234567