HomeSort by: relevance | last modified time | path
    Searched defs:typeParam (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/openldap/dist/contrib/slapd-modules/ppm/
ppm.c 193 typeParam(char* param)
286 nParam = typeParam(word); // search for param in allowedParameters
361 nParam = typeParam(word); // search for param in allowedParameters
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 436 DeclResult typeParam = Actions.actOnObjCTypeParam(
439 if (typeParam.isUsable())
440 typeParams.push_back(typeParam.get());
514 DeclResult typeParam = Actions.actOnObjCTypeParam(
517 if (typeParam.isUsable())
518 typeParams.push_back(typeParam.get());
  /src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp 1261 ObjCTypeParamDecl *typeParam = OTPTy->getDecl();
1264 QualType argType = TypeArgs[typeParam->getIndex()];
1282 return typeParam->getUnderlyingType();
1288 typeParam->getUnderlyingType()->castAs<ObjCObjectPointerType>();
1293 return typeParam->getUnderlyingType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 920 ObjCTypeParamDecl *typeParam = nullptr;
923 typeParam = typeParams->begin()[i];
946 if (!typeParam) {
952 QualType bound = typeParam->getUnderlyingType();
969 << typeArg << bound << typeParam->getDeclName();
970 S.Diag(typeParam->getLocation(), diag::note_objc_type_param_here)
971 << typeParam->getDeclName();
984 if (!typeParam) {
990 QualType bound = typeParam->getUnderlyingType();
997 << typeArg << bound << typeParam->getDeclName()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 1103 auto *typeParam = readDeclAs<ObjCTypeParamDecl>();
1104 if (!typeParam)
1107 typeParams.push_back(typeParam);

Completed in 37 milliseconds