Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp141 if (m_context_type == ContextType::RegisterInfo) in GetRegisterInfo()
147 if (m_context_type == ContextType::LLDBType) in GetType()
199 case ContextType::Invalid: in ValueOf()
200 case ContextType::RegisterInfo: // RegisterInfo * in ValueOf()
201 case ContextType::LLDBType: // Type * in ValueOf()
204 case ContextType::Variable: // Variable * in ValueOf()
213 case ContextType::RegisterInfo: // RegisterInfo * in GetValueByteSize()
221 case ContextType::Invalid: in GetValueByteSize()
222 case ContextType::LLDBType: // Type * in GetValueByteSize()
223 case ContextType in GetValueByteSize()
[all...]
H A DValueObjectVariable.cpp143 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
147 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue()
173 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
240 value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
254 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue()
359 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) in GetLocationAsCString()
372 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetValueFromCString()
401 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetData()
H A DValueObjectMemory.cpp61 m_value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in ValueObjectMemory()
215 value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in UpdateValue()
H A DValueObjectRegister.cpp249 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/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);
155 ContextType m_context_type = ContextType::Invalid;
H A DEmulateInstruction.h100 enum ContextType { enum
186 ContextType type = eContextInvalid;
/freebsd/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/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp47 const Value::ContextType context_type = value.GetContextType(); in FormatObject()
51 if (context_type == Value::ContextType::RegisterInfo) { in FormatObject()
/freebsd/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/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.h38 using ContextType = void;
H A DDebugChecksumsSubsection.h43 using ContextType = void;
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionVariable.h52 Value::ContextType::RegisterInfo, const_cast<RegisterInfo *>(reg_info)); in SetRegisterInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp82 QualType ContextType = in computeDeclContext() local
105 PartialSpec = ClassTemplate->findPartialSpecialization(ContextType); in computeDeclContext()
127 if (Context.hasSameType(Injected, ContextType)) in computeDeclContext()
H A DSemaStmt.cpp726 int ContextType; in checkMustTailAttr() local
728 ContextType = 0; in checkMustTailAttr()
730 ContextType = 1; in checkMustTailAttr()
732 ContextType = 2; in checkMustTailAttr()
734 << &MTA << ContextType; in checkMustTailAttr()
H A DSemaCodeComplete.cpp550 static QualType getPreferredTypeOfUnaryArg(Sema &S, QualType ContextType, in getPreferredTypeOfUnaryArg() argument
556 if (!ContextType.isNull() && ContextType->isPointerType()) in getPreferredTypeOfUnaryArg()
557 return ContextType->getPointeeType(); in getPreferredTypeOfUnaryArg()
560 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
562 return S.getASTContext().getPointerType(ContextType.getNonReferenceType()); in getPreferredTypeOfUnaryArg()
568 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
571 return ContextType; in getPreferredTypeOfUnaryArg()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp185 Contexts.back().ContextType = Context::TemplateArgument; in parseAngle()
354 Contexts.back().ContextType = Context::VerilogInstancePortList; in parseParens()
387 Contexts.back().ContextType = Context::C11GenericSelection; in parseParens()
399 Contexts.back().ContextType = Context::ForEachMacro; in parseParens()
690 Contexts.back().ContextType == Context::TemplateArgument); in parseSquare()
1206 Contexts.back().ContextType = Context::StructArrayInitializer; in parseBrace()
1413 } else if (Contexts.back().ContextType == Context::C11GenericSelection) { in consumeToken()
1719 switch (Contexts.back().ContextType) { in consumeToken()
1740 if (Contexts.back().ContextType == Context::ForEachMacro) in consumeToken()
2034 if (ctx.ContextType == Context::StructArrayInitializer) in parseLine()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp211 arg_value->GetContextType() == Value::ContextType::Invalid && in WriteFunctionArguments()
H A DDWARFExpression.cpp116 value.SetContext(Value::ContextType::RegisterInfo, in ReadRegisterValueAsScalar()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1525 if (var_location.GetContextType() == Value::ContextType::Invalid) in GetVariableValue()
1625 if (var_location.GetContextType() == Value::ContextType::Invalid) in AddOneVariable()