HomeSort by relevance Sort by last modified time
    Searched refs:APValue (Results 1 - 25 of 31) 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"
635 APValue Evaluated;
    [all...]
ASTContext.h 170 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 27 APValue.cpp \
ASTDiagnostic.cpp     [all...]
Decl.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection_base.cpp 157 string RSReflectionBase::genInitValue(const clang::APValue &Val, bool asBool) {
160 case clang::APValue::Int: {
174 case clang::APValue::Float: {
189 case clang::APValue::ComplexInt:
190 case clang::APValue::ComplexFloat:
191 case clang::APValue::LValue:
192 case clang::APValue::Vector: {
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 75 const clang::APValue &Val);
78 const clang::APValue &Val);
80 const clang::APValue &Val);
slang_rs_reflection_cpp.cpp 522 const clang::APValue &val = EV->getInit();
556 const clang::APValue &val = EV->getInit();
596 const clang::APValue &val = EV->getInit();
856 const clang::APValue &Val) {
880 case clang::APValue::Int:
881 case clang::APValue::Float: {
888 case clang::APValue::Vector: {
893 const clang::APValue &ElementVal = Val.getVectorElt(i);
899 case clang::APValue::MemberPointer:
900 case clang::APValue::Uninitialized
    [all...]
slang_rs_reflection_base.h 82 static std::string genInitValue(const clang::APValue &Val, bool asBool=false);
slang_rs_reflection.h 237 const clang::APValue &Val);
240 const clang::APValue &Val);
244 const clang::APValue &Val);
slang_rs_export_var.cpp 64 mInit.Val = clang::APValue(llvm::APSInt(1));
slang_rs_reflection.cpp 425 const clang::APValue &Val) {
427 slangAssert((Val.getKind() == clang::APValue::Int)
428 && "Bool type has wrong initial APValue");
441 const clang::APValue &Val) {
454 const clang::APValue &Val) {
478 case clang::APValue::Int:
479 case clang::APValue::Float: {
486 case clang::APValue::Vector: {
497 const clang::APValue &ElementVal = Val.getVectorElt(i);
503 case clang::APValue::MemberPointer
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 19 #include "clang/AST/APValue.h"
48 const APValue &Value, QualType ValTy);
74 void Build(const APValue &Val, const RecordDecl *RD, bool IsPrimaryBase,
426 void ConstStructBuilder::Build(const APValue &Val, const RecordDecl *RD,
474 const APValue &FieldValue =
557 const APValue &Val,
578 /// 1) Literals (this is used by APValue emission to emit literals).
875 llvm::Constant *EmitLValue(APValue::LValueBase LVBase) {
    [all...]
CGCXXABI.h 175 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
200 /// conversion along an inheritance path stored in an APValue. Unlike
203 CharUnits getMemberPointerPathAdjustment(const APValue &MP);
CGCXXABI.cpp 110 llvm::Constant *CGCXXABI::EmitMemberPointer(const APValue &MP, QualType MPT) {
254 CharUnits CGCXXABI::getMemberPointerPathAdjustment(const APValue &MP) {
255 // TODO: Store base specifiers in APValue member pointer paths so we can
CodeGenModule.cpp     [all...]
CodeGenModule.h 831 llvm::Constant *EmitConstantValue(const APValue &Value, QualType DestType,
836 llvm::Constant *EmitConstantValueForMemory(const APValue &Value,
    [all...]
ItaniumCXXABI.cpp 87 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
586 llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const APValue &MP,
    [all...]
MicrosoftCXXABI.cpp 248 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 241 APValue &ConstantValue,
Initialization.h     [all...]

Completed in 1438 milliseconds

1 2