HomeSort by relevance Sort by last modified time
    Searched refs:APValue (Results 1 - 25 of 29) sorted by null

1 2

  /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"
644 APValue Evaluated;
    [all...]
Expr.h 17 #include "clang/AST/APValue.h"
34 class APValue;
500 bool isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result = nullptr,
555 APValue Val;
612 bool EvaluateAsInitializer(APValue &Result, const ASTContext &Ctx,
620 bool EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx,
    [all...]
ASTContext.h 171 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 28 APValue.cpp \
ASTDiagnostic.cpp     [all...]
Decl.cpp     [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 76 void genInitValue(const clang::APValue &Val, bool asBool = false);
102 const clang::APValue &Val);
105 const clang::APValue &Val);
107 const clang::APValue &Val);
slang_rs_reflection_cpp.cpp 560 const clang::APValue &val = EV->getInit();
595 const clang::APValue &val = EV->getInit();
627 const clang::APValue &val = EV->getInit();
867 const clang::APValue &Val) {
890 case clang::APValue::Int:
891 case clang::APValue::Float: {
898 case clang::APValue::Vector: {
902 const clang::APValue &ElementVal = Val.getVectorElt(i);
908 case clang::APValue::MemberPointer:
909 case clang::APValue::Uninitialized
    [all...]
slang_rs_reflection.h 176 const clang::APValue &Val);
178 const clang::APValue &Val);
180 const clang::APValue &Val);
181 void genInitValue(const clang::APValue &Val, bool asBool);
slang_rs_reflection.cpp 455 const clang::APValue &Val) {
457 slangAssert((Val.getKind() == clang::APValue::Int) &&
458 "Bool type has wrong initial APValue");
467 const clang::APValue &Val) {
477 const clang::APValue &Val) {
500 case clang::APValue::Int:
501 case clang::APValue::Float: {
508 case clang::APValue::Vector: {
518 const clang::APValue &ElementVal = Val.getVectorElt(i);
524 case clang::APValue::MemberPointer
    [all...]
slang_rs_export_var.cpp 51 mInit.Val = clang::APValue(llvm::APSInt(1));
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 19 #include "clang/AST/APValue.h"
48 const APValue &Value, QualType ValTy);
71 void Build(const APValue &Val, const RecordDecl *RD, bool IsPrimaryBase,
405 void ConstStructBuilder::Build(const APValue &Val, const RecordDecl *RD,
457 const APValue &FieldValue =
540 const APValue &Val,
557 /// 1) Literals (this is used by APValue emission to emit literals).
860 llvm::Constant *EmitLValue(APValue::LValueBase LVBase) {
    [all...]
CGCXXABI.cpp 144 llvm::Constant *CGCXXABI::EmitMemberPointer(const APValue &MP, QualType MPT) {
281 CharUnits CGCXXABI::getMemberPointerPathAdjustment(const APValue &MP) {
282 // TODO: Store base specifiers in APValue member pointer paths so we can
CGCXXABI.h 170 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
195 /// conversion along an inheritance path stored in an APValue. Unlike
198 CharUnits getMemberPointerPathAdjustment(const APValue &MP);
CodeGenModule.h 873 llvm::Constant *EmitConstantValue(const APValue &Value, QualType DestType,
878 llvm::Constant *EmitConstantValueForMemory(const APValue &Value,
    [all...]
ItaniumCXXABI.cpp 96 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override;
690 llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const APValue &MP,
    [all...]
MicrosoftCXXABI.cpp 492 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override;
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 241 APValue &ConstantValue,
Initialization.h     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 314 APValue &ConstantValue,
348 ConstantValue = APValue(IntConstantValue);
441 ConstantValue = APValue(InitializerValue);
    [all...]
SemaChecking.cpp     [all...]

Completed in 637 milliseconds

1 2