Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTypeLocBuilder.h37 QualType LastTy; variable
77 LastTy = QualType(); in clear()
87 LastTy = T; in TypeWasModifiedSafely()
103 assert(T == LastTy && "type doesn't match last type pushed!"); in getTypeSourceInfo()
116 assert(T == LastTy && "type doesn't match last type pushed!"); in getTypeLocInContext()
140 assert(LastTy == T && "type doesn't match last type pushed!"); in getTemporaryTypeLoc()
H A DTypeLocBuilder.cpp65 assert(TLast == LastTy && in pushImpl()
67 LastTy = T; in pushImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp2436 Type *LastTy = nullptr; in writeConstants() local
2440 if (V->getType() != LastTy) { in writeConstants()
2441 LastTy = V->getType(); in writeConstants()
2442 Record.push_back(VE.getTypeID(LastTy)); in writeConstants()