OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:baseType
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/bsd/zstd/dist/programs/
benchzstd.h
35
* and only then can extract `
baseType
`.
37
#define VARIANT_ERROR_RESULT(
baseType
, variantName) \
40
baseType
internal_never_use_directly; \
/src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexCodeCompletion.cpp
610
QualType
baseType
= Context.getBaseType();
613
if (!
baseType
.isNull()) {
615
if (const TagType *Tag =
baseType
->getAs<TagType>())
620
baseType
->getAs<ObjCObjectPointerType>())
623
else if (const ObjCObjectType *Obj =
baseType
->getAs<ObjCObjectType>())
627
baseType
->getAs<InjectedClassNameType>())
640
const Type *type =
baseType
.getTypePtrOrNull();
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprConstant.cpp
2200
llvm::Type *
baseType
,
2234
llvm::Type *
baseType
= structure->getElementType(fieldIndex);
2235
elements[fieldIndex] = EmitNullConstantForBase(CGM,
baseType
, base);
2273
llvm::Type *
baseType
= structure->getElementType(fieldIndex);
2274
elements[fieldIndex] = EmitNullConstantForBase(CGM,
baseType
, base);
2289
llvm::Type *
baseType
,
2295
return llvm::Constant::getNullValue(
baseType
);
CodeGenFunction.cpp
1827
/// \param
baseType
the inner-most element type of the array
1831
static void emitNonZeroVLAInit(CodeGenFunction &CGF, QualType
baseType
,
1836
CharUnits baseSize = CGF.getContext().getTypeSizeInChars(
baseType
);
1978
QualType &
baseType
,
1996
baseType
= elementType;
2046
llvm::Type *
baseType
= ConvertType(eltType);
2047
addr = Builder.CreateElementBitCast(addr,
baseType
, "array.begin");
2055
baseType
= eltType;
CodeGenFunction.h
2716
QualType &
baseType
,
/src/external/apache2/llvm/dist/clang/lib/AST/
Type.cpp
735
: Type(ObjCObject, Canonical, Base->getDependence()),
BaseType
(Base) {
813
QualType
baseType
(splitBaseType.Ty, 0);
815
baseType
= baseObj->stripObjCKindOfTypeAndQuals(ctx);
817
return ctx.getObjCObjectType(ctx.getQualifiedType(
baseType
,
1189
QualType
baseType
= recurse(T->getBaseType());
1190
if (
baseType
.isNull())
1207
if (
baseType
.getAsOpaquePtr() == T->getBaseType().getAsOpaquePtr() &&
1211
return Ctx.getObjCObjectType(
baseType
, typeArgs,
1249
using
BaseType
= SimpleTransformVisitor<SubstObjCTypeArgsVisitor>;
1256
:
BaseType
(ctx), TypeArgs(typeArgs), SubstContext(context) {
[
all
...]
ASTContext.cpp
2913
ASTContext::getExtQualType(const Type *
baseType
, Qualifiers quals) const {
2919
ExtQuals::Profile(ID,
baseType
, quals);
2928
if (!
baseType
->isCanonicalUnqualified()) {
2929
SplitQualType canonSplit =
baseType
->getCanonicalTypeInternal().split();
2937
auto *eq = new (*this, TypeAlignment) ExtQuals(
baseType
, canon, quals);
5072
QualType ASTContext::getObjCObjectType(QualType
BaseType
,
5075
return getObjCObjectType(
BaseType
, {},
5081
QualType
baseType
,
5088
isa<ObjCInterfaceType>(
baseType
))
5089
return
baseType
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp
297
CheckExtVectorComponent(Sema &S, QualType
baseType
, ExprValueKind &VK,
305
const ExtVectorType *vecType =
baseType
->getAs<ExtVectorType>();
377
<<
baseType
<< SourceRange(CompLoc);
477
Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType
BaseType
,
494
const PointerType *PT =
BaseType
->getAs<PointerType>();
499
<<
BaseType
<< BaseExpr->getSourceRange() << NameInfo.getSourceRange();
504
assert(
BaseType
->isDependentType() ||
508
// Get the type being accessed in
BaseType
. If this is an arrow, the BaseExpr
511
Context, BaseExpr,
BaseType
, IsArrow, OpLoc,
521
QualType
BaseType
,
[
all
...]
SemaDeclObjC.cpp
1412
ParsedType
baseType
,
1434
QualType base = GetTypeFromParser(
baseType
, nullptr);
SemaDecl.cpp
13152
QualType
baseType
= Context.getBaseElementType(type);
13216
CXXRecordDecl *RD =
baseType
->getAsCXXRecordDecl();
13230
if (const RecordType *recordType =
baseType
->getAs<RecordType>())
17385
QualType
BaseType
= Context.getBaseElementType(FD->getType());
17386
if (
BaseType
->isRecordType() &&
17387
BaseType
->castAs<RecordType>()->getDecl()->hasObjectMember())
17389
else if (
BaseType
->isObjCObjectPointerType() ||
17390
BaseType
.isObjCGCStrong())
/src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h
1354
const Type *const
BaseType
;
1359
ExtQualsTypeCommonBase(const Type *
baseType
, QualType canon)
1360
:
BaseType
(
baseType
), CanonicalType(canon) {}
1394
ExtQuals(const Type *
baseType
, QualType canon, Qualifiers quals)
1395
: ExtQualsTypeCommonBase(
baseType
,
1417
const Type *getBaseType() const { return
BaseType
; }
1425
const Type *
BaseType
,
1428
ID.AddPointer(
BaseType
);
4541
QualType
BaseType
;
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp
1594
ParsedType
baseType
,
1634
QualType BaseT = Actions.GetTypeFromParser(
baseType
);
1658
baseType
,
1773
ParsedType
baseType
,
1785
parseObjCTypeArgsOrProtocolQualifiers(
baseType
,
/src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h
1631
ParsedType
baseType
,
1645
ParsedType
baseType
,
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIARawSymbol.cpp
237
RAW_METHOD_DUMP_AS(OS,
baseType
, PDB_BuiltinType);
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp
3872
Type *
BaseType
= Elts[0]->getType();
3873
auto *BasePointerType = cast<PointerType>(
BaseType
->getScalarType());
3883
BaseType
->isVectorTy()
3884
? cast<FixedVectorType>(
BaseType
)->getNumElements()
4876
/// line: 7, scope: !1,
baseType
: !2, size: 32,
4886
REQUIRED(
baseType
, MDField, ); \
4902
scope.Val,
baseType
.Val, size.Val, align.Val,
4915
OPTIONAL(
baseType
, MDField, ); \
4944
scope.Val,
baseType
.Val, size.Val, align.Val, offset.Val, flags.Val,
4956
(Context, tag.Val, name.Val, file.Val, line.Val, scope.Val,
baseType
.Val
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp
6426
QualType
baseType
= Record.readQualType();
6428
return Context.getQualifiedType(
baseType
, quals);
10011
BaseType
,
10073
FirstBase.getSourceRange(),
BaseType
)
10076
SecondBase.getSourceRange(),
BaseType
)
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
300
/// Handles e.g.
BaseType
{ .D = Tok...
301
void enterDesignatedInitializer(SourceLocation Tok, QualType
BaseType
,
2307
QualType BuildUnaryTransformType(QualType
BaseType
,
5302
Expr *Base, QualType
BaseType
, SourceLocation OpLoc, bool IsArrow,
5310
BuildMemberReferenceExpr(Expr *Base, QualType
BaseType
, SourceLocation OpLoc,
5327
bool CheckQualifiedMemberReference(Expr *BaseExpr, QualType
BaseType
,
5331
ExprResult ActOnDependentMemberExpr(Expr *Base, QualType
BaseType
,
6168
bool isThisOutsideMemberFunctionBody(QualType
BaseType
);
6972
MemInitResult BuildBaseInitializer(QualType
BaseType
,
7170
ParsedType
basetype
,
[
all
...]
Completed in 151 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026