Searched refs:Proto (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-11.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv4remote.pl87 Proto => "tcp",
H A Dtst.ipv4localtcp.ksh83 Proto => "tcp",
H A Dtst.ipv4remotetcp.ksh73 Proto => "tcp",
H A Dtst.localtcpstate.ksh75 Proto => "tcp",
H A Dtst.remotetcpstate.ksh80 Proto => "tcp",
/freebsd-11.0-release/contrib/sendmail/contrib/
H A DsocketmapClient.pl20 Proto => 'tcp',
H A DsocketmapServer.pl17 Proto => 'tcp',
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclPrinter.cpp467 std::string Proto = D->getNameInfo().getAsString(); local
471 Proto = '(' + Proto + ')';
480 Proto += "(";
482 llvm::raw_string_ostream POut(Proto);
496 Proto += ", ";
497 Proto += D->getParamDecl(i)->getNameAsString();
501 Proto += ")";
505 Proto += " const";
507 Proto
556 Out << Proto; local
612 Out << "auto " << Proto << " -> "; local
618 Out << Proto; local
[all...]
H A DMangle.cpp165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT); local
169 if (!Proto) {
173 assert(!Proto->isVariadic());
178 for (const auto &AT : Proto->param_types())
H A DItaniumCXXABI.cpp62 const FunctionProtoType *Proto = variable
67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
H A DDeclObjC.cpp72 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
73 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
134 for (const auto *Proto : ID->all_referenced_protocols())
135 if (Proto->HasUserDeclaredSetterMethod(Property))
158 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(DC)) {
159 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
197 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
198 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
402 for (auto *Proto : all_referenced_protocols()) {
403 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
[all...]
H A DMicrosoftMangle.cpp1797 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(T); local
1823 Qualifiers Quals = Qualifiers::fromCVRMask(Proto->getTypeQuals());
1825 mangleRefQualifier(Proto->getRefQualifier());
1854 Proto->getParamType(0)
1888 if (!Proto) {
1893 } else if (Proto->getNumParams() == 0 && !Proto->isVariadic()) {
1897 for (unsigned I = 0, E = Proto->getNumParams(); I != E; ++I) {
1898 mangleArgumentType(Proto->getParamType(I), Range);
1912 if (Proto
[all...]
H A DItaniumMangle.cpp1284 const FunctionProtoType *Proto = Lambda->getLambdaTypeInfo()->getType()-> local
1286 mangleBareFunctionType(Proto, /*MangleReturnType=*/false,
2180 const FunctionProtoType *Proto = cast<FunctionProtoType>(T); local
2189 mangleType(Proto->getReturnType());
2193 if (Proto->getNumParams() == 0 && !Proto->isVariadic()) {
2201 assert(!FD || FD->getNumParams() == Proto->getNumParams());
2202 for (unsigned I = 0, E = Proto->getNumParams(); I != E; ++I) {
2203 const auto &ParamTy = Proto->getParamType(I);
2218 if (Proto
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp278 std::string Name, Proto; member in class:__anon4290::Intrinsic
322 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS, argument
325 : R(R), Name(Name.str()), Proto(Proto.str()), OutTS(OutTS), InTS(InTS),
332 if (Proto.find('i') != std::string::npos)
337 if (Proto.find('p') != std::string::npos ||
338 Proto.find('c') != std::string::npos)
344 Proto.find('s') != std::string::npos)
350 Types.emplace_back(OutTS, Proto[0]);
351 for (unsigned I = 1; I < Proto
1911 std::string Proto = R->getValueAsString("Prototype"); local
2034 std::string Proto = Def->getProto(); local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGException.cpp437 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); local
438 if (!Proto)
441 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
443 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
452 unsigned NumExceptions = Proto->getNumExceptions();
456 QualType Ty = Proto->getExceptionType(I);
516 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); local
517 if (!Proto)
520 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
522 if (Proto
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaObjCProperty.cpp111 ObjCProtocolDecl *Proto,
114 if (!Known.insert(Proto).second)
118 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
121 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
127 for (auto *P : Proto->protocols())
270 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl); local
271 for (auto *P : Proto->protocols())
872 for (const auto *Proto : OrigClass->all_referenced_protocols()) {
874 Proto->FindPropertyDeclaration(Prop->getIdentifier()))
1668 if (ObjCProtocolDecl *Proto
110 CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop, ObjCProtocolDecl *Proto, llvm::SmallPtrSetImpl<ObjCProtocolDecl *> &Known) argument
1677 << Prop << Proto; local
[all...]
H A DSemaExceptionSpec.cpp164 const FunctionProtoType *Proto = local
166 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) {
168 Proto = nullptr;
170 return Proto;
H A DSemaChecking.cpp1277 const FunctionProtoType *Proto,
1280 assert((FDecl || Proto) && "Need a function declaration or prototype");
1329 if (!Proto) {
1339 Proto = type->getAs<FunctionProtoType>();
1345 if (Proto) {
1347 for (auto paramType : Proto->getParamTypes()) {
1370 void Sema::checkCall(NamedDecl *FDecl, const FunctionProtoType *Proto, argument
1393 unsigned NumParams = Proto ? Proto->getNumParams()
1409 if (FDecl || Proto) {
1275 CheckNonNullArguments(Sema &S, const NamedDecl *FDecl, const FunctionProtoType *Proto, ArrayRef<const Expr *> Args, SourceLocation CallSiteLoc) argument
1422 CheckConstructorCall(FunctionDecl *FDecl, ArrayRef<const Expr *> Args, const FunctionProtoType *Proto, SourceLocation Loc) argument
1434 CheckFunctionCall(FunctionDecl *FDecl, CallExpr *TheCall, const FunctionProtoType *Proto) argument
1492 CheckPointerCall(NamedDecl *NDecl, CallExpr *TheCall, const FunctionProtoType *Proto) argument
1525 CheckOtherCall(CallExpr *TheCall, const FunctionProtoType *Proto) argument
6024 const FunctionProtoType *Proto local
[all...]
H A DSemaOverload.cpp5654 const FunctionProtoType *Proto = Fn->getType()->getAs<FunctionProtoType>(); local
5655 if (Proto->getNumParams() < 1)
5659 QualType ArgType = Proto->getParamType(0).getNonReferenceType();
5664 if (Proto->getNumParams() < 2)
5668 QualType ArgType = Proto->getParamType(1).getNonReferenceType();
5692 const FunctionProtoType *Proto local
5694 assert(Proto && "Functions without a prototype cannot be overloaded");
5766 unsigned NumParams = Proto->getNumParams();
5772 !Proto->isVariadic()) {
5812 QualType ParamType = Proto
6116 const FunctionProtoType *Proto local
6588 AddSurrogateCandidate(CXXConversionDecl *Conversion, DeclAccessPair FoundDecl, CXXRecordDecl *ActingContext, const FunctionProtoType *Proto, Expr *Object, ArrayRef<Expr *> Args, OverloadCandidateSet& CandidateSet) argument
[all...]
H A DSemaCodeComplete.cpp2339 if (const FunctionProtoType *Proto
2341 if (Proto->isVariadic()) {
2342 if (Proto->getNumParams() == 0)
2455 const FunctionProtoType *Proto local
2457 if (!Proto || !Proto->getTypeQuals())
2463 if (Proto->getTypeQuals() == Qualifiers::Const) {
2468 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2473 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2480 if (Proto
2948 const FunctionProtoType *Proto local
[all...]
H A DSemaTemplateDeduction.cpp2560 const FunctionProtoType *Proto local
2562 assert(Proto && "Function template does not have a prototype?");
2571 if (Proto->hasTrailingReturn()) {
2599 SubstType(Proto->getReturnType(),
2608 if (!Proto->hasTrailingReturn() &&
2619 Proto->getExtProtoInfo());
3354 const FunctionProtoType *Proto local
3356 if (Proto->isTemplateVariadic())
3358 else if (Proto->isVariadic())
4822 const FunctionProtoType *Proto local
[all...]
H A DSemaLambda.cpp1327 const FunctionProtoType *Proto = local
1333 FunctionProtoType::ExtProtoInfo BlockEPI = Proto->getExtProtoInfo();
1336 Proto->isVariadic(), /*IsCXXMethod=*/false));
1339 Proto->getReturnType(), Proto->getParamTypes(), BlockEPI);
H A DSemaExpr.cpp4498 Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto, argument
4500 if (Proto && Proto->isVariadic()) {
4579 /// function prototype Proto. Call is the call expression itself, and
4586 const FunctionProtoType *Proto,
4598 unsigned NumParams = Proto->getNumParams();
4613 MinArgs == NumParams && !Proto->isVariadic()
4621 MinArgs == NumParams && !Proto->isVariadic()
4626 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic()
4645 if (!Proto
4584 ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, FunctionDecl *FDecl, const FunctionProtoType *Proto, ArrayRef<Expr *> Args, SourceLocation RParenLoc, bool IsExecConfig) argument
4699 GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, const FunctionProtoType *Proto, unsigned FirstParam, ArrayRef<Expr *> Args, SmallVectorImpl<Expr *> &AllArgs, VariadicCallType CallType, bool AllowExplicit, bool IsListInitialization) argument
5292 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT); local
14239 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType); local
14392 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType); local
[all...]
H A DSemaTemplateInstantiateDecl.cpp3196 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>(); local
3197 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
3217 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
3264 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>(); local
3265 assert(Proto && "Function template without prototype?");
3267 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
3268 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
3297 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs);
H A DSemaDeclCXX.cpp157 const FunctionProtoType *Proto local
159 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
160 if (!Proto)
163 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
191 Proto->getNoexceptSpec(Self->Context);
213 for (const auto &E : Proto->exceptions())
6708 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); local
6709 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
6712 FunctionProtoType::ExtProtoInfo EPI = Proto
6898 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); local
6962 const FunctionProtoType *Proto = R->getAs<FunctionProtoType>(); local
11480 const FunctionProtoType *Proto local
13562 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); local
13587 const FunctionProtoType *Proto = ProtoTL.getTypePtr(); local
[all...]

Completed in 418 milliseconds

12