Home
last modified time | relevance | path

Searched refs:qs (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c15 int qs[30]; member
26 fiddly.qs[i]++; in main()
36 fiddly.qs[i] = -i * i * i; in main()
48 if ( (fiddly.ps[i] != copy.ps[i] + 1) || (fiddly.qs[i] != copy.qs[i] + 1) ) { in main()
H A Dlarge-struct.c15 int qs[30]; member
29 inny.qs[i] = -i * i * i; in main()
41 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) { in main()
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dblocks-1.cpp7 int qs[30]; member
18 inny.qs[i] = -i * i * i; in main()
29 if ( (inny.ps[i] != outty.ps[i]) || (inny.qs[i] != outty.qs[i]) ) { in main()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Ddeduction-guide.cpp8 template<Ts ...Ns, T *...Ps> A(X<Ps...>, Ts (*...qs)[Ns]);
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h336 Qualifiers qs = *this;
337 qs.removeObjCGCAttr();
338 return qs;
341 Qualifiers qs = *this;
342 qs.removeObjCLifetime();
343 return qs;
346 Qualifiers qs = *this;
347 qs.removeAddressSpace();
348 return qs;
485 Mask |= qs.Mask;
[all …]
H A DASTContext.h2163 Qualifiers qs; in getLifetimeQualifiedType() local
2164 qs.addObjCLifetime(lifetime); in getLifetimeQualifiedType()
2165 return getQualifiedType(type, qs); in getLifetimeQualifiedType()
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp765 llvm::StringRef path, qs; in ConnectSerialPort() local
767 std::tie(path, qs) = s.split('?'); in ConnectSerialPort()
770 SerialPort::OptionsFromURL(qs); in ConnectSerialPort()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGValue.h404 Qualifiers qs = type.getQualifiers(); in MakeAddr() local
405 qs.setObjCGCAttr(Context.getObjCGCAttrKind(type)); in MakeAddr()
412 R.Initialize(type, qs, address.getAlignment(), BaseInfo, TBAAInfo); in MakeAddr()
H A DCGDecl.cpp2534 Qualifiers qs = Ty.getQualifiers(); in EmitParmDecl() local
2535 if (Qualifiers::ObjCLifetime lt = qs.getObjCLifetime()) { in EmitParmDecl()
2546 assert(qs.hasConst() && "pseudo-strong variable should be const!"); in EmitParmDecl()
H A DCGBlocks.cpp2523 Qualifiers qs = type.getQualifiers(); in buildByrefHelpers() local
2526 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { in buildByrefHelpers()
H A DCGExpr.cpp1471 Qualifiers qs = type.getLocalQualifiers(); in isConstantEmittableObjectType() local
1472 if (!qs.hasConst() || qs.hasVolatile()) return false; in isConstantEmittableObjectType()
/llvm-project-15.0.7/clang/lib/AST/
H A DTypePrinter.cpp127 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
150 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS);
151 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS);
2309 std::string QualType::getAsString(const Type *ty, Qualifiers qs, in getAsString() argument
2312 getAsStringInternal(ty, qs, buffer, Policy); in getAsString()
2322 void QualType::print(const Type *ty, Qualifiers qs, in print() argument
2328 TypePrinter(policy, Indentation).print(ty, qs, OS, PH); in print()
2337 void QualType::getAsStringInternal(const Type *ty, Qualifiers qs, in getAsStringInternal() argument
2342 TypePrinter(policy).print(ty, qs, StrOS, buffer); in getAsStringInternal()
H A DDeclObjC.cpp1135 Qualifiers qs; in getSelfType() local
1136 qs.setObjCLifetime(Qualifiers::OCL_Strong); in getSelfType()
1137 selfTy = Context.getQualifiedType(selfTy, qs); in getSelfType()
H A DASTContext.cpp6784 Qualifiers qs = split.Quals; in getAsArrayType() local
6788 if (!ATy || qs.empty()) in getAsArrayType()
6793 QualType NewEltTy = getQualifiedType(ATy->getElementType(), qs); in getAsArrayType()
6879 Qualifiers qs; in getBaseElementType() local
6886 qs.addConsistentQualifiers(split.Quals); in getBaseElementType()
6889 return getQualifiedType(type, qs); in getBaseElementType()
7404 Qualifiers qs = Ty.getQualifiers(); in BlockRequiresCopying() local
7407 if (Qualifiers::ObjCLifetime lifetime = qs.getObjCLifetime()) { in BlockRequiresCopying()
/llvm-project-15.0.7/clang/tools/scan-view/share/
H A DScanView.py202 def parse_query(qs, fields=None): argument
205 for chunk in (_f for _f in qs.split('&') if _f):
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp2053 Qualifiers qs; in inferARCLifetimeForPointee() local
2054 qs.addObjCLifetime(implicitLifetime); in inferARCLifetimeForPointee()
2055 return S.Context.getQualifiedType(type, qs); in inferARCLifetimeForPointee()
3124 Qualifiers qs; in inferARCWriteback() local
3127 qs.addObjCLifetime(Qualifiers::OCL_ExplicitNone); in inferARCWriteback()
3129 qs.addObjCLifetime(Qualifiers::OCL_Autoreleasing); in inferARCWriteback()
3130 declSpecType = S.Context.getQualifiedType(declSpecType, qs); in inferARCWriteback()
5863 Qualifiers qs; in transferARCOwnershipToDeclSpec() local
5864 qs.addObjCLifetime(ownership); in transferARCOwnershipToDeclSpec()
5865 declSpecTy = S.Context.getQualifiedType(declSpecTy, qs); in transferARCOwnershipToDeclSpec()
H A DSemaObjCProperty.cpp1312 Qualifiers qs; in ActOnPropertyImplDecl() local
1313 qs.addObjCLifetime(lifetime); in ActOnPropertyImplDecl()
1314 PropertyIvarType = Context.getQualifiedType(PropertyIvarType, qs); in ActOnPropertyImplDecl()
H A DSemaDecl.cpp11751 QualifierCollector qs; in CheckMain() local
11753 if ((PT = qs.strip(AT)->getAs<PointerType>()) && in CheckMain()
11754 (PT = qs.strip(PT->getPointeeType())->getAs<PointerType>()) && in CheckMain()
11755 Context.hasSameType(QualType(qs.strip(PT->getPointeeType()), 0), in CheckMain()
11757 qs.removeConst(); in CheckMain()
11758 mismatch = !qs.empty(); in CheckMain()
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dpr17168.ll154 !94 = !DIGlobalVariable(name: "qs", scope: null, file: !2, line: 63, type: !95, isLocal: true, isDe…