Searched defs:LVType (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGValue.h114 } LVType; member in class:clang::CodeGen::LValue
182 bool isSimple() const { return LVType == Simple; }
183 bool isVectorElt() const { return LVType == VectorElt; }
184 bool isBitField() const { return LVType == BitField; }
185 bool isExtVectorElt() const { return LVType == ExtVectorElt; }
281 R.LVType = Simple;
290 R.LVType = VectorElt;
300 R.LVType = ExtVectorElt;
317 R.LVType = BitField;
/external/clang/lib/AST/
H A DExprConstant.cpp1964 QualType LVType = BO->getLHS()->getType(); local
1965 if (const PointerType *PT = LVType->getAs<PointerType>())
1966 LVType = PT->getPointeeType();
1967 const CXXRecordDecl *RD = LVType->getAsCXXRecordDecl();

Completed in 70 milliseconds