Searched defs:APValue (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h122 class APValue { class in namespace:clang
317 APValue() : Kind(None) {} function in class:clang::APValue
318 explicit APValue(APSInt I) : Kind(None) { function in class:clang::APValue
321 explicit APValue(APFloat F) : Kind(None) { function in class:clang::APValue
324 explicit APValue(APFixedPoint FX) : Kind(None) { function in class:clang::APValue
327 explicit APValue(const APValue *E, unsigned N) : Kind(None) { function in class:clang::APValue
330 APValue(APSInt R, APSInt I) : Kind(None) { function in class:clang::APValue
333 APValue(APFloat R, APFloat I) : Kind(None) { function in class:clang::APValue
338 APValue(LValueBase B, const CharUnits &O, NoLValuePath N, function in class:clang::APValue
343 APValue(LValueBase B, const CharUnits &O, ArrayRef<LValuePathEntry> Path, function in class:clang::APValue
348 APValue(UninitArray, unsigned InitElts, unsigned Size) : Kind(None) { function in class:clang::APValue
351 APValue(UninitStruct, unsigned B, unsigned M) : Kind(None) { function in class:clang::APValue
354 APValue(const FieldDecl *D, const APValue &V = APValue()) argument
358 APValue(const ValueDecl *Member, bool IsDerivedMember, function in class:clang::APValue
362 APValue(const AddrLabelExpr* LHSExpr, const AddrLabelExpr* RHSExpr) function in class:clang::APValue
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp311 APValue::APValue(const APValue &RHS) : Kind(None) { function in class:APValue
382 APValue::APValue(APValue &&RHS) : Kind(RHS.Kind), Data(RHS.Data) { function in class:APValue
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp221 llvm::APInt APValue = llvm::APInt(C.getTypeSize(Ty), Value); local

Completed in 69 milliseconds