Searched defs:FromFunctionType (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DASTContext.cpp7297 const FunctionProtoType *FromFunctionType,
7299 if (FromFunctionType->hasAnyConsumedParams() !=
7303 FromFunctionType->getExtProtoInfo();
7307 for (unsigned i = 0, n = FromFunctionType->getNumParams(); i != n; ++i) {
7296 FunctionTypesMatchOnNSConsumedAttrs( const FunctionProtoType *FromFunctionType, const FunctionProtoType *ToFunctionType) argument
/external/clang/lib/Sema/
H A DSemaOverload.cpp2287 const FunctionProtoType *FromFunctionType local
2291 if (FromFunctionType && ToFunctionType) {
2300 if (FromFunctionType->getNumParams() != ToFunctionType->getNumParams() ||
2301 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() ||
2302 FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals())
2306 if (Context.getCanonicalType(FromFunctionType->getReturnType()) ==
2309 } else if (isObjCPointerConversion(FromFunctionType->getReturnType(),
2320 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumParams();
2322 QualType FromArgType = FromFunctionType->getParamType(ArgIdx);
2435 const FunctionProtoType *FromFunctionType local
[all...]

Completed in 89 milliseconds