Home
last modified time | relevance | path

Searched refs:ContextType (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp185 case ContextType::Invalid: in ValueOf()
207 case ContextType::Invalid: in GetValueByteSize()
228 case ContextType::Invalid: in GetCompilerType()
234 case ContextType::LLDBType: { in GetCompilerType()
240 case ContextType::Variable: { in GetCompilerType()
265 case ContextType::Invalid: in GetValueDefaultFormat()
266 case ContextType::LLDBType: in GetValueDefaultFormat()
267 case ContextType::Variable: { in GetValueDefaultFormat()
637 case ContextType::Invalid: in GetContextTypeAsCString()
641 case ContextType::LLDBType: in GetContextTypeAsCString()
[all …]
H A DValueObjectVariable.cpp138 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
143 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue()
166 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
233 value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
246 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue()
351 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) in GetLocationAsCString()
364 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetValueFromCString()
393 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetData()
H A DValueObjectMemory.cpp60 m_value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in ValueObjectMemory()
211 value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in UpdateValue()
H A DValueObjectRegister.cpp252 m_value.SetContext(Value::ContextType::RegisterInfo, in UpdateValue()
H A DValueObject.cpp301 if (value.GetContextType() == Value::ContextType::RegisterInfo) { in GetLocationAsCStringImpl()
1058 if (m_value.GetContextType() == Value::ContextType::RegisterInfo) { in GetValueAsCString()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h56 enum class ContextType { enum
87 ContextType GetContextType() const { return m_context_type; } in GetContextType()
93 m_context_type = ContextType::Invalid; in ClearContext()
96 void SetContext(ContextType context_type, void *p) { in SetContext()
99 if (m_context_type == ContextType::RegisterInfo) { in SetContext()
139 static const char *GetContextTypeAsCString(ContextType context_type);
153 ContextType m_context_type = ContextType::Invalid;
H A DEmulateInstruction.h99 enum ContextType { enum
185 ContextType type = eContextInvalid;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h53 enum ContextType { enum
148 ContextType Type;
179 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp46 const Value::ContextType context_type = value.GetContextType(); in FormatObject()
50 if (context_type == Value::ContextType::RegisterInfo) { in FormatObject()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp14 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type, in pushContextFrame()
76 static StringRef contextTypeToFormatString(Diagnostics::ContextType Type) { in contextTypeToFormatString()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.h37 using ContextType = void;
H A DDebugChecksumsSubsection.h41 using ContextType = void;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionVariable.h51 Value::ContextType::RegisterInfo, const_cast<RegisterInfo *>(reg_info)); in SetRegisterInfo()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp102 QualType ContextType in computeDeclContext() local
110 if (Context.hasSameType(Injected, ContextType)) in computeDeclContext()
118 = ClassTemplate->findPartialSpecialization(ContextType)) { in computeDeclContext()
H A DSemaStmt.cpp685 int ContextType; in checkMustTailAttr() local
687 ContextType = 0; in checkMustTailAttr()
689 ContextType = 1; in checkMustTailAttr()
691 ContextType = 2; in checkMustTailAttr()
693 << &MTA << ContextType; in checkMustTailAttr()
H A DSemaCodeComplete.cpp521 static QualType getPreferredTypeOfUnaryArg(Sema &S, QualType ContextType, in getPreferredTypeOfUnaryArg() argument
527 if (!ContextType.isNull() && ContextType->isPointerType()) in getPreferredTypeOfUnaryArg()
528 return ContextType->getPointeeType(); in getPreferredTypeOfUnaryArg()
531 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
533 return S.getASTContext().getPointerType(ContextType.getNonReferenceType()); in getPreferredTypeOfUnaryArg()
539 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
542 return ContextType; in getPreferredTypeOfUnaryArg()
/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp197 arg_value->GetContextType() == Value::ContextType::Invalid && in WriteFunctionArguments()
H A DDWARFExpression.cpp176 value.SetContext(Value::ContextType::RegisterInfo, in ReadRegisterValueAsScalar()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1516 if (var_location.GetContextType() == Value::ContextType::Invalid) in GetVariableValue()