Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDValue.h54 enum ContextType // Type that describes Value::m_context enum
142 ContextType GetContextType() const { return m_context_type; } in GetContextType()
151 void SetContext(ContextType context_type, void *p) { in SetContext()
217 static const char *GetContextTypeAsCString(ContextType context_type);
232 ContextType m_context_type;
HDEmulateInstruction.h99 enum ContextType { enum
185 ContextType type;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
HDDiagnostics.h53 enum ContextType { enum
143 ContextType Type;
174 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
HDDiagnostics.cpp14 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type, in pushContextFrame()
76 static StringRef contextTypeToFormatString(Diagnostics::ContextType Type) { in contextTypeToFormatString()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDDebugCrossImpSubsection.h37 using ContextType = void;
HDDebugChecksumsSubsection.h41 using ContextType = void;
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDTypeFormat.cpp47 const Value::ContextType context_type = value.GetContextType(); in FormatObject()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaCXXScopeSpec.cpp102 QualType ContextType in computeDeclContext() local
110 if (Context.hasSameType(Injected, ContextType)) in computeDeclContext()
118 = ClassTemplate->findPartialSpecialization(ContextType)) { in computeDeclContext()
HDSemaCodeComplete.cpp488 static QualType getPreferredTypeOfUnaryArg(Sema &S, QualType ContextType, in getPreferredTypeOfUnaryArg() argument
494 if (!ContextType.isNull() && ContextType->isPointerType()) in getPreferredTypeOfUnaryArg()
495 return ContextType->getPointeeType(); in getPreferredTypeOfUnaryArg()
498 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
500 return S.getASTContext().getPointerType(ContextType.getNonReferenceType()); in getPreferredTypeOfUnaryArg()
506 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg()
509 return ContextType; in getPreferredTypeOfUnaryArg()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDValue.cpp661 const char *Value::GetContextTypeAsCString(ContextType context_type) { in GetContextTypeAsCString()