Home
last modified time | relevance | path

Searched refs:NewFlag (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp152 void BasicBlock::setIsNewDbgInfoFormat(bool NewFlag) { in setIsNewDbgInfoFormat() argument
153 if (NewFlag && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
155 else if (!NewFlag && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
158 void BasicBlock::setNewDbgInfoFormatFlag(bool NewFlag) { in setNewDbgInfoFormatFlag() argument
159 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag()
H A DFunction.cpp102 void Function::setIsNewDbgInfoFormat(bool NewFlag) { in setIsNewDbgInfoFormat() argument
103 if (NewFlag && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
105 else if (!NewFlag && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
108 void Function::setNewDbgInfoFormatFlag(bool NewFlag) { in setNewDbgInfoFormatFlag() argument
110 BB.setNewDbgInfoFormatFlag(NewFlag); in setNewDbgInfoFormatFlag()
112 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h248 void setNewDbgInfoFormatFlag(bool NewFlag) { in setNewDbgInfoFormatFlag() argument
250 F.setNewDbgInfoFormatFlag(NewFlag); in setNewDbgInfoFormatFlag()
252 IsNewDbgInfoFormat = NewFlag; in setNewDbgInfoFormatFlag()
H A DBasicBlock.h96 void setIsNewDbgInfoFormat(bool NewFlag);
97 void setNewDbgInfoFormatFlag(bool NewFlag);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp7469 static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) { in ObjCPropertyFlagConflicts() argument
7471 if (Attributes & NewFlag) in ObjCPropertyFlagConflicts()
7474 Attributes |= NewFlag; in ObjCPropertyFlagConflicts()