/external/clang/include/clang/AST/ |
APValue.h | 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===// 10 // This file defines the APValue class. 35 /// APValue - This class implements a discriminated union of [uninitialized] 37 /// [Vector: N * APValue], [Array: N * APValue] 38 class APValue { 81 APValue *Elts; 87 APValue *Elts; 93 APValue *Elts; 101 APValue *Value [all...] |
Decl.h | 17 #include "clang/AST/APValue.h" 703 APValue Evaluated; [all...] |
Expr.h | 17 #include "clang/AST/APValue.h" 35 class APValue; 502 bool isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result = nullptr, 563 APValue Val; 631 bool EvaluateAsInitializer(APValue &Result, const ASTContext &Ctx, 639 bool EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx, [all...] |
ASTContext.h | 182 llvm::DenseMap<const MaterializeTemporaryExpr *, APValue *> [all...] |
/external/clang/lib/AST/ |
APValue.cpp | 1 //===--- APValue.cpp - Union class for APFloat/APSInt/Complex -------------===// 10 // This file implements the APValue class. 14 #include "clang/AST/APValue.h" 28 llvm::PointerIntPair<APValue::LValueBase, 1, bool> BaseAndIsOnePastTheEnd; 35 struct APValue::LV : LVBase { 76 struct APValue::MemberPointerData : MemberPointerBase { 108 APValue::Arr::Arr(unsigned NumElts, unsigned Size) : 109 Elts(new APValue[NumElts + (NumElts != Size ? 1 : 0)]), 111 APValue::Arr::~Arr() { delete [] Elts; } 113 APValue::StructData::StructData(unsigned NumBases, unsigned NumFields) [all...] |
ExprConstant.cpp | 36 #include "clang/AST/APValue.h" 55 static bool IsGlobalLValue(APValue::LValueBase B); 62 static QualType getType(APValue::LValueBase B) { 90 APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) { 91 APValue::BaseOrMemberType Value; 98 static const FieldDecl *getAsField(APValue::LValuePathEntry E) { 103 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) { 108 static bool isVirtualBaseClass(APValue::LValuePathEntry E) { 116 ArrayRef<APValue::LValuePathEntry> Path [all...] |
Android.mk | 26 APValue.cpp \
|
ASTDiagnostic.cpp | [all...] |
Decl.cpp | [all...] |
ASTContext.cpp | 790 for (std::pair<const MaterializeTemporaryExpr *, APValue *> &MTVPair : 792 MTVPair.second->~APValue(); [all...] |
/frameworks/compile/slang/ |
slang_rs_export_var.h | 58 inline const clang::APValue &getInit() const { return mInit.Val; } 62 inline const clang::APValue &getInitArray(unsigned int i) const {
|
slang_rs_reflection_cpp.h | 82 void genInitValue(const clang::APValue &Val, bool asBool = false); 119 const clang::APValue &Val); 122 const clang::APValue &Val); 124 const clang::APValue &Val);
|
slang_rs_reflection_cpp.cpp | 571 const clang::APValue &val = EV->getInit(); 606 const clang::APValue &val = EV->getInit(); 638 const clang::APValue &val = EV->getInit(); 918 const clang::APValue &Val) { 941 case clang::APValue::Int: 942 case clang::APValue::Float: { 949 case clang::APValue::Vector: { 953 const clang::APValue &ElementVal = Val.getVectorElt(i); 959 case clang::APValue::MemberPointer: 960 case clang::APValue::Uninitialized [all...] |
slang_rs_reflection.h | 181 const clang::APValue &Val); 183 const clang::APValue &Val); 185 const clang::APValue &Val); 186 void genInitValue(const clang::APValue &Val, bool asBool);
|
slang_rs_export_var.cpp | 51 mInit.Val = clang::APValue(llvm::APSInt(1));
|
slang_rs_reflection.cpp | 599 const clang::APValue &Val) { 601 slangAssert((Val.getKind() == clang::APValue::Int) && 602 "Bool type has wrong initial APValue"); 611 const clang::APValue &Val) { 621 const clang::APValue &Val) { 644 case clang::APValue::Int: 645 case clang::APValue::Float: { 652 case clang::APValue::Vector: { 662 const clang::APValue &ElementVal = Val.getVectorElt(i); 668 case clang::APValue::MemberPointer [all...] |
/external/clang/lib/CodeGen/ |
CGExprConstant.cpp | 19 #include "clang/AST/APValue.h" 53 const APValue &Value, QualType ValTy); 78 void Build(const APValue &Val, const RecordDecl *RD, bool IsPrimaryBase, 426 void ConstStructBuilder::Build(const APValue &Val, const RecordDecl *RD, 478 const APValue &FieldValue = 579 const APValue &Val, 596 /// 1) Literals (this is used by APValue emission to emit literals). [all...] |
CGCXXABI.cpp | 147 llvm::Constant *CGCXXABI::EmitMemberPointer(const APValue &MP, QualType MPT) { 283 CharUnits CGCXXABI::getMemberPointerPathAdjustment(const APValue &MP) { 284 // TODO: Store base specifiers in APValue member pointer paths so we can
|
CGCXXABI.h | 189 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT); 214 /// conversion along an inheritance path stored in an APValue. Unlike 217 CharUnits getMemberPointerPathAdjustment(const APValue &MP);
|
CodeGenModule.h | [all...] |
ItaniumCXXABI.cpp | 140 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override; [all...] |
/external/clang/include/clang/Sema/ |
Overload.h | 230 APValue &ConstantValue,
|
Initialization.h | [all...] |
/external/clang/lib/Sema/ |
SemaTemplate.cpp | [all...] |
SemaOverload.cpp | 287 APValue &ConstantValue, 332 ConstantValue = APValue(IntConstantValue); 420 ConstantValue = APValue(InitializerValue); [all...] |