Searched refs:ConEnd (Results 1 – 5 of 5) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaInit.cpp | 2746 DeclContext::lookup_iterator ConEnd, in ResolveConstructorOverload() argument 2752 for (; Con != ConEnd; ++Con) { in ResolveConstructorOverload() 2851 DeclContext::lookup_iterator ConStart, ConEnd; in TryConstructorInitialization() local 2852 llvm::tie(ConStart, ConEnd) = S.LookupConstructors(DestRecordDecl); in TryConstructorInitialization() 2874 CandidateSet, ConStart, ConEnd, Best, in TryConstructorInitialization() 2892 CandidateSet, ConStart, ConEnd, Best, in TryConstructorInitialization() 3161 DeclContext::lookup_iterator Con, ConEnd; in TryRefInitWithConversionFunction() local 3162 for (llvm::tie(Con, ConEnd) = S.LookupConstructors(T1RecordDecl); in TryRefInitWithConversionFunction() 3163 Con != ConEnd; ++Con) { in TryRefInitWithConversionFunction() 3709 DeclContext::lookup_iterator Con, ConEnd; in TryUserDefinedConversion() local [all …]
|
D | SemaExprCXX.cpp | 3208 DeclContext::lookup_const_iterator Con, ConEnd; in EvaluateUnaryTypeTrait() local 3209 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD); in EvaluateUnaryTypeTrait() 3210 Con != ConEnd; ++Con) { in EvaluateUnaryTypeTrait() 3247 DeclContext::lookup_const_iterator Con, ConEnd; in EvaluateUnaryTypeTrait() local 3248 for (llvm::tie(Con, ConEnd) = Self.LookupConstructors(RD); in EvaluateUnaryTypeTrait() 3249 Con != ConEnd; ++Con) { in EvaluateUnaryTypeTrait()
|
D | SemaOverload.cpp | 2859 DeclContext::lookup_iterator Con, ConEnd; in IsInitializerListConstructorConversion() local 2860 for (llvm::tie(Con, ConEnd) = S.LookupConstructors(To); in IsInitializerListConstructorConversion() 2861 Con != ConEnd; ++Con) { in IsInitializerListConstructorConversion() 2989 DeclContext::lookup_iterator Con, ConEnd; in IsUserDefinedConversion() local 2990 for (llvm::tie(Con, ConEnd) = S.LookupConstructors(ToRecordDecl); in IsUserDefinedConversion() 2991 Con != ConEnd; ++Con) { in IsUserDefinedConversion()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 678 uintptr_t ConEnd = ConStart + Sec->SizeOfRawData; in getSectionContents() local 679 if (ConEnd > uintptr_t(Data->getBufferEnd())) in getSectionContents()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 363 DeclContext::lookup_const_iterator Con, ConEnd; in getCopyConstructor() local 364 for (llvm::tie(Con, ConEnd) = this->lookup(ConstructorName); in getCopyConstructor() 365 Con != ConEnd; ++Con) { in getCopyConstructor()
|