Searched refs:srcType (Results 1 – 3 of 3) sorted by relevance
328 QualType srcType = src->getType(); in tryDiagnoseOverloadedCast() local329 if (!destType->isRecordType() && !srcType->isRecordType()) in tryDiagnoseOverloadedCast()377 << CT << srcType << destType in tryDiagnoseOverloadedCast()
57766 SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){57773 assert( srcType==MEM_Ephem || srcType==MEM_Static );57774 pTo->flags |= srcType;
69437 SQLITE_PRIVATE void sqlite3VdbeMemShallowCopy(Mem *pTo, const Mem *pFrom, int srcType){69440 if( VdbeMemDynamic(pTo) ){ vdbeClrCopy(pTo,pFrom,srcType); return; }69444 assert( srcType==MEM_Ephem || srcType==MEM_Static );69445 pTo->flags |= srcType;