Home
last modified time | relevance | path

Searched refs:LastTy (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/Sema/
DTypeLocBuilder.h38 QualType LastTy; variable
84 LastTy = QualType(); in clear()
93 LastTy = T; in TypeWasModifiedSafely()
107 assert(T == LastTy && "type doesn't match last type pushed!"); in getTypeSourceInfo()
120 assert(T == LastTy && "type doesn't match last type pushed!"); in getTypeLocInContext()
133 assert(TLast == LastTy && in pushImpl()
135 LastTy = T; in pushImpl()
173 assert(LastTy.isNull() && "pushing full on non-empty TypeLocBuilder"); in pushFullUninitializedImpl()
174 LastTy = T; in pushFullUninitializedImpl()
193 assert(LastTy == T && "type doesn't match last type pushed!"); in getTemporaryTypeLoc()
/external/llvm/lib/IR/
DConstantFold.cpp1937 Type *LastTy = 0; in ConstantFoldGetElementPtrImpl() local
1940 LastTy = *I; in ConstantFoldGetElementPtrImpl()
1942 if ((LastTy && isa<SequentialType>(LastTy)) || Idx0->isNullValue()) { in ConstantFoldGetElementPtrImpl()
/external/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp854 Type *LastTy = 0; in WriteConstants() local
858 if (V->getType() != LastTy) { in WriteConstants()
859 LastTy = V->getType(); in WriteConstants()
860 Record.push_back(VE.getTypeID(LastTy)); in WriteConstants()