OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RetType
(Results
1 - 25
of
36
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
StdLibraryFunctionsChecker.cpp
390
using
RetType
= Optional<QualType>;
411
Signature(ArgTypes ArgTys,
RetType
RetTy) {
1208
"isalnum", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1226
"isalpha", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1237
"isascii", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1244
"isblank", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1251
"iscntrl", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1258
"isdigit", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1265
"isgraph", Signature(ArgTypes{IntTy},
RetType
{IntTy}),
1272
"islower", Signature(ArgTypes{IntTy},
RetType
{IntTy})
[
all
...]
NullabilityChecker.cpp
862
QualType
RetType
= Decl->getReturnType();
863
if (!
RetType
->isAnyPointerType())
948
Nullability RetNullability = getNullabilityAnnotation(
RetType
);
/src/sys/external/bsd/acpica/dist/namespace/
nsxfobj.c
60
*
RetType
- Where the type will be placed
72
ACPI_OBJECT_TYPE *
RetType
)
80
if (!
RetType
)
89
*
RetType
= ACPI_TYPE_ANY;
108
*
RetType
= Node->Type;
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsOs16.cpp
50
Type*
RetType
= F.getReturnType();
51
switch (
RetType
->getTypeID()) {
Mips16HardFloat.cpp
171
Type*
RetType
= F.getReturnType();
172
return whichFPReturnVariant(
RetType
) != NoFPRet;
176
Type*
RetType
= FT.getReturnType();
177
return whichFPReturnVariant(
RetType
) != NoFPRet;
MipsAsmPrinter.cpp
994
const char *
RetType
;
998
// # Stub function to call
rettype
xxxx (params)
1002
RetType
= "float";
1005
RetType
= "double";
1008
RetType
= "complex";
1011
RetType
= "double complex";
1014
RetType
= "";
1041
OutStreamer->AddComment("\t# Stub function to call " + Twine(
RetType
) + " " +
/src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/test/
dummyrange.d
56
alias
RetType
= ElementType!(T);
80
@property ref inout(
RetType
) front() inout
87
@property
RetType
front() const
115
@property ref inout(
RetType
) back() inout
122
@property
RetType
back() const
138
ref inout(
RetType
) opIndex(size_t index) inout
145
RetType
opIndex(size_t index) const
150
RetType
opIndexAssign(RetTypeNoAutoDecoding val, size_t index)
155
RetType
opIndexOpAssign(string op)(RetTypeNoAutoDecoding value, size_t index)
160
RetType
opIndexUnary(string op)(size_t index
[
all
...]
/src/external/gpl3/gdb/dist/gdb/cli/
cli-option.h
129
RetType
is the restored type of the variable, and Context is the
131
template<typename
RetType
, typename Context>
132
static inline
RetType
*
135
using unerased_ftype =
RetType
*(Context *);
/src/external/gpl3/gdb.old/dist/gdb/cli/
cli-option.h
129
RetType
is the restored type of the variable, and Context is the
131
template<typename
RetType
, typename Context>
132
static inline
RetType
*
135
using unerased_ftype =
RetType
*(Context *);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp
545
Type *
RetType
= F.getReturnType();
546
if (!
RetType
->isVoidTy()) {
548
RetPN = PHINode::Create(
RetType
, 2, "ret.tr", InsertPos);
551
RetPN->addIncoming(UndefValue::get(
RetType
), NewEntry);
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
MatrixBuilder.h
73
auto *
RetType
= FixedVectorType::get(EltTy, Rows * Columns);
77
Type *OverloadedTypes[] = {
RetType
};
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp
377
static Expr *maybeTailCall(Sema &S, QualType
RetType
, Expr *E,
379
if (
RetType
->isReferenceType())
381
Type const *T =
RetType
.getTypePtr();
480
QualType
RetType
= AwaitSuspend->getCallReturnType(S.Context);
484
maybeTailCall(S,
RetType
, AwaitSuspend, Loc))
493
if (
RetType
->isReferenceType() ||
494
(!
RetType
->isBooleanType() && !
RetType
->isVoidType())) {
497
<<
RetType
;
/src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptParser.cpp
764
using
RetType
= VersionInfoResource::VersionInfoFixed;
765
RetType
Result;
770
auto FixedType =
RetType
::getFixedType(*TypeResult);
772
if (!
RetType
::isTypeSupported(FixedType))
779
size_t NumInts =
RetType
::isVersionType(FixedType) ? 4 : 1;
/src/external/apache2/llvm/dist/clang/lib/Analysis/
Consumed.cpp
686
QualType
RetType
= Fun->getCallResultType();
687
if (
RetType
->isReferenceType())
688
RetType
=
RetType
->getPointeeType();
690
if (isConsumableType(
RetType
)) {
695
ReturnState = mapConsumableAttrState(
RetType
);
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
array.d
1832
alias
RetType
= ElementEncodingType!S[];
1836
return
RetType
.init;
1838
return cast(
RetType
) s;
2133
alias
RetType
= typeof(return);
2134
alias RetTypeElement = Unqual!(ElementEncodingType!
RetType
);
2138
return
RetType
.init;
2143
static if (isSomeString!
RetType
&&
2144
!is(immutable ElementEncodingType!
RetType
== immutable ElementEncodingType!R))
2147
auto sepArr = to!
RetType
(sep);
2181
return (() @trusted => cast(
RetType
) result)()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp
834
Type *
RetType
= T->getReturnType();
835
if (!
RetType
->isVoidTy())
836
RetType
= StructType::get(
RetType
, PrimitiveShadowTy);
837
return FunctionType::get(
RetType
, ArgTypes, T->isVarArg());
846
Type *
RetType
= T->getReturnType();
847
if (!
RetType
->isVoidTy())
852
if (!
RetType
->isVoidTy())
884
Type *
RetType
= T->getReturnType();
885
if (!
RetType
->isVoidTy()
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Casting.h
44
using
RetType
=
47
static
RetType
getSimplifiedValue(const From& Val) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp
839
DIType *
RetType
= nullptr;
843
RetType
= Builder.createBasicType(Name, BitWidth, dwarf::DW_ATE_signed,
846
RetType
= Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty),
857
RetType
= Builder.createBasicType(Name, Layout.getTypeSizeInBits(Ty),
881
RetType
= DIStruct;
887
RetType
= Builder.createBasicType(OS.str(), Layout.getTypeSizeInBits(Ty),
892
DITypeCache.insert({Ty,
RetType
});
893
return
RetType
;
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp
1586
auto *
RetType
= cast<IntegerType>(Call.CB.getType());
1590
if (
RetType
->getBitWidth() == 1) {
1597
Value *ValAddr = B.CreateBitCast(Addr,
RetType
->getPointerTo());
1598
Value *Val = B.CreateLoad(
RetType
, ValAddr);
1610
auto
RetType
= dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType());
1611
if (!
RetType
)
1613
unsigned BitWidth =
RetType
->getBitWidth();
1632
Target.Fn->getReturnType() !=
RetType
)
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIARawSymbol.cpp
105
template <typename ArgType, typename
RetType
>
106
RetType
PrivateGetDIAValue(IDiaSymbol *Symbol,
110
return static_cast<
RetType
>(Value);
112
return
RetType
();
/src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyCFGStackify.cpp
765
int64_t
RetType
= Try->getOperand(0).getImm();
770
std::prev(B)->getOperand(0).getImm() ==
RetType
;
1497
WebAssembly::BlockType
RetType
=
1528
EndToBegin[&MI]->getOperand(0).setImm(int32_t(
RetType
));
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp
314
static void BeginEmitFunction(raw_ostream &OS, StringRef
RetType
,
317
OS <<
RetType
<< ' ' << Decl;
323
OS <<
RetType
<< " DAGISEL_CLASS_COLONCOLON " << Decl << "\n";
/src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp
5770
Type *
RetType
= nullptr;
5775
parseType(
RetType
, RetTypeLoc, true /*void allowed*/))
5805
if (!FunctionType::isValidReturnType(
RetType
))
5883
if (PAL.hasAttribute(1, Attribute::StructRet) && !
RetType
->isVoidTy())
5886
FunctionType *FT = FunctionType::get(
RetType
, ParamTypeList, IsVarArg);
6548
Type *
RetType
= nullptr;
6557
parseType(
RetType
, RetTypeLoc, true /*void allowed*/) ||
6568
// If
RetType
is a non-function pointer type, then this is the short syntax
6569
// for the call, which means that
RetType
is just the return type. Infer the
6571
FunctionType *Ty = dyn_cast<FunctionType>(
RetType
);
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibCalls.cpp
1403
Type *
RetType
= UCallee->getReturnType();
1405
AllocaInst *Alloc = B.CreateAlloca(
RetType
, 0,
1408
Align(UCallee->getParent()->getDataLayout().getTypeAllocSize(
RetType
)));
/src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.cpp
289
auto
RetType
= Elements[0];
290
BTFType.Type =
RetType
? BDebug.getTypeId(
RetType
) : 0;
Completed in 68 milliseconds
1
2
Indexes created Tue Feb 24 08:35:24 UTC 2026