Home
last modified time | relevance | path

Searched refs:valueType (Results 1 – 13 of 13) sorted by relevance

/src/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp335 } else if (auto valueType = type.getOptionalElementType()) { in validateType() local
336 validateType(valueType, context); in validateType()
338 if (valueType.getPackOptionalCode().empty()) { in validateType()
339 PrintError(valueType.getLoc(), in validateType()
342 } else if (valueType.getUnpackOptionalCode().empty()) { in validateType()
343 PrintError(valueType.getLoc(), in validateType()
491 } else if (auto valueType = type.getOptionalElementType()) { in emitBasicReaderWriterMethodSuffix() local
497 valueType.emitCXXValueTypeName(isForRead, out); in emitBasicReaderWriterMethodSuffix()
H A DASTTableGen.cpp84 } else if (auto valueType = getOptionalElementType()) { in emitCXXValueTypeName() local
86 valueType.emitCXXValueTypeName(forRead, out); in emitCXXValueTypeName()
/src/contrib/llvm-project/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp121 ValueObjectSynthetic::GetDynamicValue(lldb::DynamicValueType valueType) { in GetDynamicValue() argument
124 if (IsDynamic() && GetDynamicValueType() == valueType) in GetDynamicValue()
126 return m_parent->GetDynamicValue(valueType); in GetDynamicValue()
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectSyntheticFilter.h63 GetDynamicValue(lldb::DynamicValueType valueType) override;
H A DValueObjectConstResult.h102 GetDynamicValue(lldb::DynamicValueType valueType) override;
H A DValueObject.h600 virtual lldb::ValueObjectSP GetDynamicValue(lldb::DynamicValueType valueType);
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp747 QualType valueType = cast<AtomicType>(Ty)->getValueType(); in ConvertType() local
748 ResultType = ConvertTypeForMem(valueType); in ConvertType()
751 uint64_t valueSize = Context.getTypeSize(valueType); in ConvertType()
H A DSwiftCallingConv.cpp100 auto valueType = atomicType->getValueType(); in addTypedData() local
102 auto valueSize = CGM.getContext().getTypeSizeInChars(valueType); in addTypedData()
H A DCGExprAgg.cpp801 QualType valueType = E->getType(); in VisitCastExpr() local
802 if (isToAtomic) std::swap(atomicType, valueType); in VisitCastExpr()
805 assert(CGF.getContext().hasSameUnqualifiedType(valueType, in VisitCastExpr()
860 return EmitFinalDestCopy(valueType, rvalue); in VisitCastExpr()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td383 def : Property<"valueType", QualType> {
388 return ctx.getAtomicType(valueType);
/src/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h556 ValueType VT = E->valueType(); in printLiteral()
H A DThreadSafetyTIL.h545 ValueType valueType() const { return ValType; } in valueType() function
/src/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1327 QualType valueType = recurse(T->getValueType()); in VisitAtomicType() local
1328 if (valueType.isNull()) in VisitAtomicType()
1331 if (valueType.getAsOpaquePtr() in VisitAtomicType()
1335 return Ctx.getAtomicType(valueType); in VisitAtomicType()