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

1 2 3 4

  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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...]
  /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"
56 static bool IsGlobalLValue(APValue::LValueBase B);
63 static QualType getType(APValue::LValueBase B) {
91 APValue::BaseOrMemberType getAsBaseOrMember(APValue::LValuePathEntry E) {
92 APValue::BaseOrMemberType Value;
99 static const FieldDecl *getAsField(APValue::LValuePathEntry E) {
104 static const CXXRecordDecl *getAsBaseClass(APValue::LValuePathEntry E) {
109 static bool isVirtualBaseClass(APValue::LValuePathEntry E) {
117 ArrayRef<APValue::LValuePathEntry> Path
    [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 573 const clang::APValue &val = EV->getInit();
608 const clang::APValue &val = EV->getInit();
640 const clang::APValue &val = EV->getInit();
920 const clang::APValue &Val) {
943 case clang::APValue::Int:
944 case clang::APValue::Float: {
951 case clang::APValue::Vector: {
955 const clang::APValue &ElementVal = Val.getVectorElt(i);
961 case clang::APValue::MemberPointer:
962 case clang::APValue::Uninitialized
    [all...]
slang_rs_export_var.cpp 51 mInit.Val = clang::APValue(llvm::APSInt(1));
slang_rs_reflection.h 215 const clang::APValue &Val);
217 const clang::APValue &Val);
219 const clang::APValue &Val);
220 void genInitValue(const clang::APValue &Val, bool asBool);
slang_rs_reflection.cpp 737 const clang::APValue &Val) {
739 slangAssert((Val.getKind() == clang::APValue::Int) &&
740 "Bool type has wrong initial APValue");
749 const clang::APValue &Val) {
759 const clang::APValue &Val) {
782 case clang::APValue::Int:
783 case clang::APValue::Float: {
790 case clang::APValue::Vector: {
800 const clang::APValue &ElementVal = Val.getVectorElt(i);
806 case clang::APValue::MemberPointer
    [all...]
slang_rs_reflection_state.cpp 21 #include "clang/AST/APValue.h"
36 static bool equal(const clang::APValue &a, const clang::APValue &b) {
40 case clang::APValue::Float:
42 case clang::APValue::Int:
44 case clang::APValue::Vector: {
55 slangAssert(false && "unexpected APValue kind");
    [all...]
slang_rs_reflection_state.h 26 #include "clang/AST/APValue.h"
706 clang::APValue *mInitializers;
  /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,
433 void ConstStructBuilder::Build(const APValue &Val, const RecordDecl *RD,
485 const APValue &FieldValue =
585 const APValue &Val,
602 /// 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 199 virtual llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
224 /// conversion along an inheritance path stored in an APValue. Unlike
227 CharUnits getMemberPointerPathAdjustment(const APValue &MP);
  /external/clang/include/clang/Sema/
Overload.h 231 APValue &ConstantValue,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
Overload.h 242 APValue &ConstantValue,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
Overload.h 242 APValue &ConstantValue,
    [all...]

Completed in 6993 milliseconds

1 2 3 4