OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PointeeTy
(Results
1 - 25
of
28
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Store.cpp
96
QualType
PointeeTy
= CastToTy->getPointeeType();
97
QualType CanonPointeeTy = Ctx.getCanonicalType(
PointeeTy
);
142
return MakeElementRegion(cast<SubRegion>(R),
PointeeTy
);
181
QualType CanonPointeeTy = Ctx.getCanonicalType(
PointeeTy
);
187
return MakeElementRegion(cast<SubRegion>(baseR),
PointeeTy
);
191
// if the offset can be evenly divided by sizeof(
PointeeTy
). If so,
200
// We can only compute sizeof(
PointeeTy
) if it is a complete type.
201
if (!
PointeeTy
->isIncompleteType()) {
203
CharUnits pointeeTySize = Ctx.getTypeSizeInChars(
PointeeTy
);
206
// ElementRegion (with elementType ==
PointeeTy
) directly on top o
[
all
...]
Store.cpp
96
QualType
PointeeTy
= CastToTy->getPointeeType();
97
QualType CanonPointeeTy = Ctx.getCanonicalType(
PointeeTy
);
142
return MakeElementRegion(cast<SubRegion>(R),
PointeeTy
);
181
QualType CanonPointeeTy = Ctx.getCanonicalType(
PointeeTy
);
187
return MakeElementRegion(cast<SubRegion>(baseR),
PointeeTy
);
191
// if the offset can be evenly divided by sizeof(
PointeeTy
). If so,
200
// We can only compute sizeof(
PointeeTy
) if it is a complete type.
201
if (!
PointeeTy
->isIncompleteType()) {
203
CharUnits pointeeTySize = Ctx.getTypeSizeInChars(
PointeeTy
);
206
// ElementRegion (with elementType ==
PointeeTy
) directly on top o
[
all
...]
CallEvent.cpp
123
QualType
PointeeTy
= PT->getPointeeType();
124
if (
PointeeTy
.isConstQualified())
126
return
PointeeTy
->isVoidType();
227
QualType
PointeeTy
= Ty->getPointeeType();
228
if (
PointeeTy
== QualType())
230
if (!
PointeeTy
.isConstQualified())
232
if (
PointeeTy
->isAnyPointerType())
CallEvent.cpp
123
QualType
PointeeTy
= PT->getPointeeType();
124
if (
PointeeTy
.isConstQualified())
126
return
PointeeTy
->isVoidType();
227
QualType
PointeeTy
= Ty->getPointeeType();
228
if (
PointeeTy
== QualType())
230
if (!
PointeeTy
.isConstQualified())
232
if (
PointeeTy
->isAnyPointerType())
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DerivedTypes.h
638
Type *
PointeeTy
;
665
return
PointeeTy
;
668
bool isOpaque() const { return !
PointeeTy
; }
684
return isOpaque() ||
PointeeTy
== Ty;
DerivedTypes.h
638
Type *
PointeeTy
;
665
return
PointeeTy
;
668
bool isOpaque() const { return !
PointeeTy
; }
684
return isOpaque() ||
PointeeTy
== Ty;
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
RetainCountChecker.cpp
559
QualType
PointeeTy
= ArgRegion->getValueType();
570
RefVal::makeNotOwned(AE.getObjKind(),
PointeeTy
));
574
RefVal::makeOwned(ObjKind::OS,
PointeeTy
));
RetainCountChecker.cpp
559
QualType
PointeeTy
= ArgRegion->getValueType();
570
RefVal::makeNotOwned(AE.getObjKind(),
PointeeTy
));
574
RefVal::makeOwned(ObjKind::OS,
PointeeTy
));
/src/external/apache2/llvm/dist/clang/lib/Sema/
Sema.cpp
2294
QualType
PointeeTy
= ExprTy->getPointeeType();
2295
if (!
PointeeTy
.isNull())
2296
FunTy =
PointeeTy
->getAs<FunctionType>();
Sema.cpp
2294
QualType
PointeeTy
= ExprTy->getPointeeType();
2295
if (!
PointeeTy
.isNull())
2296
FunTy =
PointeeTy
->getAs<FunctionType>();
SemaChecking.cpp
10096
QualType
PointeeTy
;
10098
PointeeTy
= DestPtrTy->getPointeeType();
10102
if (
PointeeTy
->isVoidType())
10127
if (!
PointeeTy
->isIncompleteType() &&
10128
(Context.getTypeSize(
PointeeTy
) == Context.getCharWidth()))
10151
<<
PointeeTy
10168
if (
PointeeTy
->isRecordType() &&
10173
<<
PointeeTy
<< Dest->getSourceRange()
10179
PointeeTy
= DestTy;
10182
if (
PointeeTy
== QualType()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp
803
Type *
PointeeTy
= PtrTy->getElementType();
804
auto Name = solveTypeName(
PointeeTy
);
CoroFrame.cpp
803
Type *
PointeeTy
= PtrTy->getElementType();
804
auto Name = solveTypeName(
PointeeTy
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp
1129
QualType
PointeeTy
,
1134
unsigned AddressSpace = CGM.getContext().getTargetAddressSpace(
PointeeTy
);
1142
return DBuilder.createReferenceType(Tag, getOrCreateType(
PointeeTy
, Unit),
1145
return DBuilder.createPointerType(getOrCreateType(
PointeeTy
, Unit), Size,
1625
QualType
PointeeTy
= ThisPtrTy->getPointeeType();
1626
unsigned AS = CGM.getContext().getTargetAddressSpace(
PointeeTy
);
1629
llvm::DIType *PointeeType = getOrCreateType(
PointeeTy
, Unit);
ItaniumCXXABI.cpp
3071
void BuildPointerTypeInfo(QualType
PointeeTy
);
3307
QualType
PointeeTy
= PointerTy->getPointeeType();
3308
const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(
PointeeTy
);
3313
Qualifiers Quals =
PointeeTy
.getQualifiers();
4100
void ItaniumRTTIBuilder::BuildPointerTypeInfo(QualType
PointeeTy
) {
4104
unsigned Flags = extractPBaseFlags(CGM.getContext(),
PointeeTy
);
4114
ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(
PointeeTy
);
4122
QualType
PointeeTy
= Ty->getPointeeType();
4127
unsigned Flags = extractPBaseFlags(CGM.getContext(),
PointeeTy
);
4141
ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(
PointeeTy
);
[
all
...]
CGDebugInfo.cpp
1129
QualType
PointeeTy
,
1134
unsigned AddressSpace = CGM.getContext().getTargetAddressSpace(
PointeeTy
);
1142
return DBuilder.createReferenceType(Tag, getOrCreateType(
PointeeTy
, Unit),
1145
return DBuilder.createPointerType(getOrCreateType(
PointeeTy
, Unit), Size,
1625
QualType
PointeeTy
= ThisPtrTy->getPointeeType();
1626
unsigned AS = CGM.getContext().getTargetAddressSpace(
PointeeTy
);
1629
llvm::DIType *PointeeType = getOrCreateType(
PointeeTy
, Unit);
ItaniumCXXABI.cpp
3071
void BuildPointerTypeInfo(QualType
PointeeTy
);
3307
QualType
PointeeTy
= PointerTy->getPointeeType();
3308
const BuiltinType *BuiltinTy = dyn_cast<BuiltinType>(
PointeeTy
);
3313
Qualifiers Quals =
PointeeTy
.getQualifiers();
4100
void ItaniumRTTIBuilder::BuildPointerTypeInfo(QualType
PointeeTy
) {
4104
unsigned Flags = extractPBaseFlags(CGM.getContext(),
PointeeTy
);
4114
ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(
PointeeTy
);
4122
QualType
PointeeTy
= Ty->getPointeeType();
4127
unsigned Flags = extractPBaseFlags(CGM.getContext(),
PointeeTy
);
4141
ItaniumRTTIBuilder(CXXABI).BuildTypeInfo(
PointeeTy
);
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
1215
QualType
PointeeTy
;
1217
PointeeTy
= PT->getPointeeType();
1219
PointeeTy
= BPT->getPointeeType();
1220
if ((FPRetType =
PointeeTy
->getAs<FunctionType>())) {
2940
QualType
PointeeTy
= PT->getPointeeType();
2941
convertToUnqualifiedObjCType(
PointeeTy
);
2942
T = Context->getPointerType(
PointeeTy
);
4520
QualType
PointeeTy
;
4522
PointeeTy
= PT->getPointeeType();
4523
if (const FunctionType *FT =
PointeeTy
->getAs<FunctionType>())
[
all
...]
RewriteObjC.cpp
1049
QualType
PointeeTy
;
1051
PointeeTy
= PT->getPointeeType();
1053
PointeeTy
= BPT->getPointeeType();
1054
if ((FPRetType =
PointeeTy
->getAs<FunctionType>())) {
RewriteModernObjC.cpp
1215
QualType
PointeeTy
;
1217
PointeeTy
= PT->getPointeeType();
1219
PointeeTy
= BPT->getPointeeType();
1220
if ((FPRetType =
PointeeTy
->getAs<FunctionType>())) {
2940
QualType
PointeeTy
= PT->getPointeeType();
2941
convertToUnqualifiedObjCType(
PointeeTy
);
2942
T = Context->getPointerType(
PointeeTy
);
4520
QualType
PointeeTy
;
4522
PointeeTy
= PT->getPointeeType();
4523
if (const FunctionType *FT =
PointeeTy
->getAs<FunctionType>())
[
all
...]
RewriteObjC.cpp
1049
QualType
PointeeTy
;
1051
PointeeTy
= PT->getPointeeType();
1053
PointeeTy
= BPT->getPointeeType();
1054
if ((FPRetType =
PointeeTy
->getAs<FunctionType>())) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
AttributorAttributes.cpp
5600
Type *
PointeeTy
= PrivStructType->getElementType(u)->getPointerTo();
5602
constructPointer(
PointeeTy
, PrivType, &Base,
5607
Type *
PointeeTy
= PrivArrayType->getElementType();
5608
Type *PointeePtrTy =
PointeeTy
->getPointerTo();
5609
uint64_t PointeeTySize = DL.getTypeStoreSize(
PointeeTy
);
5640
Type *
PointeeTy
= PrivStructType->getElementType(u);
5642
constructPointer(
PointeeTy
->getPointerTo(), PrivType, Base,
5644
LoadInst *L = new LoadInst(
PointeeTy
, Ptr, "", IP);
5649
Type *
PointeeTy
= PrivArrayType->getElementType();
5650
uint64_t PointeeTySize = DL.getTypeStoreSize(
PointeeTy
);
[
all
...]
AttributorAttributes.cpp
5600
Type *
PointeeTy
= PrivStructType->getElementType(u)->getPointerTo();
5602
constructPointer(
PointeeTy
, PrivType, &Base,
5607
Type *
PointeeTy
= PrivArrayType->getElementType();
5608
Type *PointeePtrTy =
PointeeTy
->getPointerTo();
5609
uint64_t PointeeTySize = DL.getTypeStoreSize(
PointeeTy
);
5640
Type *
PointeeTy
= PrivStructType->getElementType(u);
5642
constructPointer(
PointeeTy
->getPointerTo(), PrivType, Base,
5644
LoadInst *L = new LoadInst(
PointeeTy
, Ptr, "", IP);
5649
Type *
PointeeTy
= PrivArrayType->getElementType();
5650
uint64_t PointeeTySize = DL.getTypeStoreSize(
PointeeTy
);
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp
7171
void ASTContext::getLegacyIntegralTypeEncoding (QualType &
PointeeTy
) const {
7172
if (isa<TypedefType>(
PointeeTy
.getTypePtr())) {
7173
if (const auto *BT =
PointeeTy
->getAs<BuiltinType>()) {
7174
if (BT->getKind() == BuiltinType::ULong && getIntWidth(
PointeeTy
) == 32)
7175
PointeeTy
= UnsignedIntTy;
7177
if (BT->getKind() == BuiltinType::Long && getIntWidth(
PointeeTy
) == 32)
7178
PointeeTy
= IntTy;
7442
QualType
PointeeTy
;
7449
PointeeTy
= PT->getPointeeType();
7451
PointeeTy
= T->castAs<ReferenceType>()->getPointeeType()
[
all
...]
ASTContext.cpp
7171
void ASTContext::getLegacyIntegralTypeEncoding (QualType &
PointeeTy
) const {
7172
if (isa<TypedefType>(
PointeeTy
.getTypePtr())) {
7173
if (const auto *BT =
PointeeTy
->getAs<BuiltinType>()) {
7174
if (BT->getKind() == BuiltinType::ULong && getIntWidth(
PointeeTy
) == 32)
7175
PointeeTy
= UnsignedIntTy;
7177
if (BT->getKind() == BuiltinType::Long && getIntWidth(
PointeeTy
) == 32)
7178
PointeeTy
= IntTy;
7442
QualType
PointeeTy
;
7449
PointeeTy
= PT->getPointeeType();
7451
PointeeTy
= T->castAs<ReferenceType>()->getPointeeType()
[
all
...]
Completed in 149 milliseconds
1
2
Indexes created Tue Jun 09 00:24:00 UTC 2026