Home
last modified time | relevance | path

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

123456

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp25 switch (GetType()) { in GetUInt64Value()
61 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
67 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
97 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
103 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
109 if (GetType() == OptionValue::eTypeArray) in GetAsArray()
115 if (GetType() == OptionValue::eTypeArray) in GetAsArray()
121 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
127 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
145 if (GetType() == OptionValue::eTypeEnum) in GetAsEnumeration()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTypeFormat.cpp38 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in GetFormat()
44 if (IsValid() && m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum) in GetTypeName()
128 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) || in CopyOnWrite_Impl()
130 m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeEnum))) in CopyOnWrite_Impl()
134 if (m_opaque_sp->GetType() == TypeFormatImpl::Type::eTypeFormat) in CopyOnWrite_Impl()
H A DSBStructuredData.cpp53 if (!json_obj || json_obj->GetType() != eStructuredDataTypeDictionary) in SetFromJSON()
75 StructuredDataType SBStructuredData::GetType() const { in GetType() function in SBStructuredData
76 return (m_impl_up ? m_impl_up->GetType() : eStructuredDataTypeInvalid); in GetType()
87 if (GetType() != eStructuredDataTypeDictionary) in GetKeys()
H A DSBFunction.cpp107 Type *func_type = m_opaque_ptr->GetType(); in GetDescription()
191 SBType SBFunction::GetType() { in GetType() function in SBFunction
194 Type *function_type = m_opaque_ptr->GetType(); in GetType()
H A DSBError.cpp93 ErrorType SBError::GetType() const { in GetType() function in SBError
97 err_type = m_opaque_ap->GetType(); in GetType()
H A DSBEvent.cpp59 uint32_t SBEvent::GetType() const { in GetType() function in SBEvent
65 event_type = lldb_event->GetType(); in GetType()
H A DSBSymbol.cpp161 SymbolType SBSymbol::GetType() { in GetType() function in SBSymbol
163 return m_opaque_ptr->GetType(); in GetType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStructuredDataImpl.h87 lldb::StructuredDataType GetType() const { in GetType() function
88 return (m_data_sp ? m_data_sp->GetType() : in GetType()
96 if (m_data_sp->GetType() == lldb::eStructuredDataTypeDictionary) { in GetSize()
99 } else if (m_data_sp->GetType() == lldb::eStructuredDataTypeArray) { in GetSize()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmnLLDBUtilSBValue.cpp282 const lldb::BasicType eType = m_rValue.GetType().GetBasicType(); in IsCharType()
329 m_rValue.GetType().GetPointeeType().GetBasicType(); in IsPointeeCharType()
345 const lldb::BasicType eType = m_rValue.GetType().GetBasicType(); in IsIntegerType()
369 return m_rValue.GetType().IsPointerType(); in IsPointerType()
383 return m_rValue.GetType().IsArrayType(); in IsArrayType()
/freebsd-12.1/lib/libdevdctl/
H A Dexception.h130 Type GetType() const;
156 ParseException::GetType() const in GetType() function
H A Devent.h170 Type GetType() const;
292 Event::GetType() const in GetType() function
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValue.h76 virtual Type GetType() const = 0;
81 return GetType() == eTypeProperties; in ValueIsTransparent()
85 return GetBuiltinTypeAsCString(GetType()); in GetTypeAsCString()
129 uint32_t GetTypeAsMask() { return 1u << GetType(); } in GetTypeAsMask()
H A DOptionValueArgs.h27 Type GetType() const override { return eTypeArgs; } in GetType() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectVariable.cpp68 Type *var_type = m_variable_sp->GetType(); in GetCompilerTypeImpl()
75 Type *var_type = m_variable_sp->GetType(); in GetTypeName()
82 Type *var_type = m_variable_sp->GetType(); in GetDisplayTypeName()
89 Type *var_type = m_variable_sp->GetType(); in GetQualifiedTypeName()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h142 virtual Type GetType() { return Type::eTypeUnknown; } in GetType() function
173 TypeFormatImpl::Type GetType() override { in GetType() function
201 TypeFormatImpl::Type GetType() override { in GetType() function
H A DTypeValidator.h143 virtual Type GetType() { return Type::eTypeUnknown; } in GetType() function
184 TypeValidatorImpl::Type GetType() override { in GetType() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp321 const SymbolType type = symbol->GetType(); in InitNameIndexes()
487 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) in AppendSymbolIndexesWithType()
506 m_symbols[i].GetType() == symbol_type) && in AppendSymbolIndexesWithTypeAndFlagsValue()
528 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesWithType()
680 m_symbols[*pos].GetType() == symbol_type) in AppendSymbolIndexesWithNameAndType()
700 m_symbols[*pos].GetType() == symbol_type) in AppendSymbolIndexesWithNameAndType()
719 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesMatchingRegExAndType()
741 m_symbols[i].GetType() == symbol_type) { in AppendSymbolIndexesMatchingRegExAndType()
764 m_symbols[idx].GetType() == symbol_type) { in FindSymbolWithType()
1075 switch (sym_ctx.symbol->GetType()) { in FindFunctionSymbols()
H A DVariable.cpp97 Type *Variable::GetType() { in GetType() function in Variable
99 return m_symfile_type_sp->GetType(); in GetType()
112 Type *type = m_symfile_type_sp->GetType(); in Dump()
206 Type *type = GetType(); in GetDeclContext()
213 Type *type = GetType(); in GetDecl()
736 Type *variable_type = variable->GetType(); in PrivateAutoComplete()
H A DFunction.cpp210 GetType(); in GetStartLineSourceInfo()
450 Type *Function::GetType() { in GetType() function in Function
474 const Type *Function::GetType() const { return m_type; } in GetType() function in Function
477 Type *function_type = GetType(); in GetCompilerType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DFunction.h539 Type *GetType();
548 const Type *GetType() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp95 switch (exe_symbol->GetType()) { in GetFileRangeMap()
270 switch (m_obj_file->GetType()) { in InitOSO()
346 so_symbol->GetType() == eSymbolTypeSourceFile && in InitOSO()
347 oso_symbol->GetType() == eSymbolTypeObjectFile) { in InitOSO()
383 else if (so_symbol->GetType() != eSymbolTypeSourceFile) in InitOSO()
387 so_symbol->GetType(), oso_idx); in InitOSO()
388 else if (oso_symbol->GetType() != eSymbolTypeSourceFile) in InitOSO()
392 oso_symbol->GetType(), oso_idx); in InitOSO()
1142 source_file_symbol->GetType() == eSymbolTypeSourceFile) { in FindCompleteObjCDefinitionTypeForDIE()
/freebsd-12.1/contrib/bearssl/T0/
H A DTPointerBase.cs57 GetType().Name, vp.x); in ToString()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanTracer.cpp215 if (m_register_values[reg_num].GetType() == RegisterValue::eTypeInvalid || in Log()
217 if (reg_value.GetType() != RegisterValue::eTypeInvalid) { in Log()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBType.h33 lldb::SBType GetType();
76 lldb::SBType GetType();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonExceptionState.h36 PythonObject GetType() const;

123456