Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp328 } else if (auto valueType = type.getOptionalElementType()) { in validateType() local
329 validateType(valueType, context); in validateType()
331 if (valueType.getPackOptionalCode().empty()) { in validateType()
332 PrintError(valueType.getLoc(), in validateType()
335 } else if (valueType.getUnpackOptionalCode().empty()) { in validateType()
336 PrintError(valueType.getLoc(), in validateType()
484 } else if (auto valueType = type.getOptionalElementType()) { in emitBasicReaderWriterMethodSuffix() local
490 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()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectSynthetic.cpp121 ValueObjectSynthetic::GetDynamicValue(lldb::DynamicValueType valueType) { in GetDynamicValue() argument
124 if (IsDynamic() && GetDynamicValueType() == valueType) in GetDynamicValue()
126 return m_parent->GetDynamicValue(valueType); in GetDynamicValue()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectSynthetic.h63 GetDynamicValue(lldb::DynamicValueType valueType) override;
H A DValueObjectConstResult.h102 GetDynamicValue(lldb::DynamicValueType valueType) override;
H A DValueObject.h604 virtual lldb::ValueObjectSP GetDynamicValue(lldb::DynamicValueType valueType);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp740 QualType valueType = cast<AtomicType>(Ty)->getValueType(); in ConvertType() local
741 ResultType = ConvertTypeForMem(valueType); in ConvertType()
744 uint64_t valueSize = Context.getTypeSize(valueType); in ConvertType()
H A DSwiftCallingConv.cpp99 auto valueType = atomicType->getValueType(); in addTypedData() local
101 auto valueSize = CGM.getContext().getTypeSizeInChars(valueType); in addTypedData()
H A DCGExprAgg.cpp903 QualType valueType = E->getType(); in VisitCastExpr() local
904 if (isToAtomic) std::swap(atomicType, valueType); in VisitCastExpr()
907 assert(CGF.getContext().hasSameUnqualifiedType(valueType, in VisitCastExpr()
962 return EmitFinalDestCopy(valueType, rvalue); in VisitCastExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td372 def : Property<"valueType", QualType> {
377 return ctx.getAtomicType(valueType);
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIRAttrs.td64 let valueType = NoneType;
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h550 ValueType VT = E->valueType(); in printLiteral()
H A DThreadSafetyTIL.h546 ValueType valueType() const { return ValType; } in valueType() function
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1373 QualType valueType = recurse(T->getValueType()); in VisitAtomicType() local
1374 if (valueType.isNull()) in VisitAtomicType()
1377 if (valueType.getAsOpaquePtr() == T->getValueType().getAsOpaquePtr()) in VisitAtomicType()
1380 return Ctx.getAtomicType(valueType); in VisitAtomicType()