Home
last modified time | relevance | path

Searched refs:attrStr (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dobjc-mixed-bridge-attribute.m18 void Test1(CFAttributedStringRef attrStr, CFMutableAttributedStringRef mutable_attrStr)
20 id x = (NSAttributedString *) attrStr;
22 id x2 = (NSMutableAttributedString *) attrStr;
38 void Test3(NDCFAttributedStringRef attrStr, NDCFMutableAttributedStringRef mutable_attrStr)
40 id x = (NSAttributedString *) attrStr;
42 id x2 = (NSMutableAttributedString *) attrStr;
/llvm-project-15.0.7/mlir/include/mlir/AsmParser/
H A DAsmParser.h52 Attribute parseAttribute(llvm::StringRef attrStr, MLIRContext *context);
53 Attribute parseAttribute(llvm::StringRef attrStr, Type type);
60 Attribute parseAttribute(llvm::StringRef attrStr, MLIRContext *context,
62 Attribute parseAttribute(llvm::StringRef attrStr, Type type, size_t &numRead);
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DDialectSymbolParser.cpp329 Attribute mlir::parseAttribute(StringRef attrStr, MLIRContext *context) { in parseAttribute() argument
331 return parseAttribute(attrStr, context, numRead); in parseAttribute()
333 Attribute mlir::parseAttribute(StringRef attrStr, Type type) { in parseAttribute() argument
335 return parseAttribute(attrStr, type, numRead); in parseAttribute()
338 Attribute mlir::parseAttribute(StringRef attrStr, MLIRContext *context, in parseAttribute() argument
340 return parseSymbol<Attribute>(attrStr, context, numRead, [](Parser &parser) { in parseAttribute()
344 Attribute mlir::parseAttribute(StringRef attrStr, Type type, size_t &numRead) { in parseAttribute() argument
346 attrStr, type.getContext(), numRead, in parseAttribute()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Ddebug-info-crash.m39 NSMutableAttributedString *attrStr;
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp5880 const char *attrStr = nullptr; in transferARCOwnershipToDeclaratorChunk() local
5883 case Qualifiers::OCL_ExplicitNone: attrStr = "none"; break; in transferARCOwnershipToDeclaratorChunk()
5884 case Qualifiers::OCL_Strong: attrStr = "strong"; break; in transferARCOwnershipToDeclaratorChunk()
5885 case Qualifiers::OCL_Weak: attrStr = "weak"; break; in transferARCOwnershipToDeclaratorChunk()
5886 case Qualifiers::OCL_Autoreleasing: attrStr = "autoreleasing"; break; in transferARCOwnershipToDeclaratorChunk()
5890 Arg->Ident = &S.Context.Idents.get(attrStr); in transferARCOwnershipToDeclaratorChunk()
/llvm-project-15.0.7/mlir/tools/mlir-tblgen/
H A DOpFormatGen.cpp460 << "{0} attribute specification: \"" << attrStr << '"';;