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

  /src/external/bsd/openldap/dist/contrib/slapd-modules/ppm/
ppm.h 140 int typeParam(char* param);
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/Sema/
SemaDeclObjC.cpp 785 for (auto typeParam : typeParams) {
786 auto known = knownParams.find(typeParam->getIdentifier());
788 Diag(typeParam->getLocation(), diag::err_objc_type_param_redecl)
789 << typeParam->getIdentifier()
792 typeParam->setInvalidDecl();
794 knownParams.insert(std::make_pair(typeParam->getIdentifier(), typeParam));
797 PushOnScopeChains(typeParam, S, /*AddToContext=*/false);
806 for (auto typeParam : *typeParamList) {
807 if (!typeParam->isInvalidDecl())
    [all...]
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/include/clang/AST/
ASTNodeTraverser.h 312 for (const auto &typeParam : *typeParams) {
313 Visit(typeParam);
RecursiveASTVisitor.h 1534 for (auto typeParam : *typeParamList) {
1535 TRY_TO(TraverseObjCTypeParamDecl(typeParam));
1548 for (auto typeParam : *typeParamList) {
1549 TRY_TO(TraverseObjCTypeParamDecl(typeParam));
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 335 for (auto *typeParam : *TypeParamList)
336 typeParam->setDeclContext(this);
1483 for (auto typeParam : *this)
1484 typeArgs.push_back(typeParam->getUnderlyingType());
2090 for (auto *typeParam : *TypeParamList)
2091 typeParam->setDeclContext(this);
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/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/Serialization/
ASTReaderDecl.cpp 1103 auto *typeParam = readDeclAs<ObjCTypeParamDecl>();
1104 if (!typeParam)
1107 typeParams.push_back(typeParam);
ASTWriterDecl.cpp 167 for (auto typeParam : *typeParams) {
168 Record.AddDeclRef(typeParam);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 1154 for (auto *typeParam : *typeParamList) {
1156 if (Visit(MakeCXCursor(typeParam, TU, RegionOfInterest)))

Completed in 45 milliseconds