OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:argTypes
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/bsd/ntp/dist/sntp/libopts/
usage.c
752
prt_one_vendor(opts, od, &
argTypes
, vfmt);
1067
prt_preamble(opts, od, &
argTypes
);
1076
fprintf(option_usage_fp,
argTypes
.pzBrk, od->pzText,
1099
fprintf(option_usage_fp,
argTypes
.pzBrk, zAuto, title);
1103
fprintf(option_usage_fp,
argTypes
.pzBrk, zVendIntro, title);
1106
prt_one_usage(opts, od, &
argTypes
);
1198
argTypes
.pzStr = zGnuStrArg;
1199
argTypes
.pzReq = zOneSpace;
1200
argTypes
.pzNum = zGnuNumArg;
1201
argTypes
.pzKey = zGnuKeyArg
[
all
...]
/src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp
144
typedef std::vector<llvm::Type*>
ArgTypes
;
164
const
ArgTypes
&theArgTypes,
1084
ArgTypes
argTypes
;
1085
argTypes
.push_back(builder.getInt32Ty());
1092
argTypes
,
1347
ArgTypes
unwindArgTypes;
1691
ArgTypes
argTypes
;
1698
argTypes
.clear()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenABITypes.cpp
65
ArrayRef<CanQualType>
argTypes
,
69
returnType, /*instanceMethod=*/false, /*chainCall=*/false,
argTypes
,
CodeGenTypes.h
219
ArrayRef<CanQualType>
argTypes
);
265
/// \param
argTypes
- must all actually be canonical as params
269
ArrayRef<CanQualType>
argTypes
,
CGCall.cpp
197
SmallVector<CanQualType, 16>
argTypes
;
198
return ::arrangeLLVMFunctionInfo(*this, /*instanceMethod=*/false,
argTypes
,
257
SmallVector<CanQualType, 16>
argTypes
;
260
argTypes
.push_back(DeriveThisType(RD, MD));
263
*this, true,
argTypes
,
312
SmallVector<CanQualType, 16>
argTypes
;
314
argTypes
.push_back(DeriveThisType(MD->getParent(), MD));
329
appendParameterTypes(*this,
argTypes
, paramInfos, FTP);
332
TheCXXABI.buildStructorSignature(GD,
argTypes
);
344
(PassParams && MD->isVariadic() ? RequiredArgs(
argTypes
.size()
[
all
...]
CGExprScalar.cpp
3331
llvm::Type *
argTypes
[] = { CGF.Int64Ty, CGF.Int64Ty, Int8Ty, Int8Ty };
3333
llvm::FunctionType::get(CGF.Int64Ty,
argTypes
, true);
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
dstruct.d
219
TypeTuple
argTypes
;
387
argTypes
= target.toArgTypes(type);
456
return
argTypes
&&
argTypes
.arguments ? cast(uint)
argTypes
.arguments.dim : 0;
461
return index < numArgTypes() ? (*
argTypes
.arguments)[index].type : null;
aggregate.h
186
TypeTuple *
argTypes
;
/src/external/apache2/llvm/dist/clang/utils/ABITest/
TypeGen.py
169
def __init__(self, index, returnType,
argTypes
):
172
self.
argTypes
=
argTypes
179
if not self.
argTypes
:
182
at = ', '.join(map(str, self.
argTypes
))
190
if not self.
argTypes
:
193
at = ', '.join(map(str, self.
argTypes
))
ABITestGen.py
105
args = ', '.join(['%s arg%d'%(self.getTypeName(t),i) for i,t in enumerate(FT.
argTypes
)])
127
for i,t in enumerate(FT.
argTypes
):
151
tests = [self.getTestValuesArray(ty) for ty in FT.
argTypes
]
/src/external/apache2/llvm/dist/clang/include/clang/CodeGen/
CGFunctionInfo.h
622
ArrayRef<CanQualType>
argTypes
,
762
ArrayRef<CanQualType>
argTypes
) {
781
i =
argTypes
.begin(), e =
argTypes
.end(); i != e; ++i) {
CodeGenABITypes.h
87
ArrayRef<CanQualType>
argTypes
,
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/util/
typeinfo.d
463
static if (__traits(hasMember, TypeInfo, "
argTypes
"))
464
override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
477
static if (__traits(hasMember, TypeInfo, "
argTypes
"))
478
override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
492
static if (__traits(hasMember, TypeInfo, "
argTypes
"))
493
override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/
object.d
80
// Some ABIs use a complex varargs implementation requiring TypeInfo.
argTypes
().
723
version (WithArgTypes) int
argTypes
(out TypeInfo arg1, out TypeInfo arg2) @safe nothrow
773
assert(typeid(void).
argTypes
(ti1, ti2) == 0);
943
version (WithArgTypes) override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
945
return base.
argTypes
(arg1, arg2);
1109
version (WithArgTypes) override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
1232
version (WithArgTypes) override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
1308
version (WithArgTypes) override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
1343
version (WithArgTypes) override int
argTypes
(out TypeInfo arg1, out TypeInfo arg2)
1345
return base.
argTypes
(arg1, arg2)
[
all
...]
/src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp
820
std::vector<const Type *>
ArgTypes
;
843
const std::vector<const Type *> &
argTypes
() const { return
ArgTypes
; }
847
for (const Type *T :
ArgTypes
)
854
any_of(
ArgTypes
, [](const Type *T) { return T->requiresMVE(); });
1383
ArgTypes
.push_back(ArgType);
1835
for (const Type *ArgTypePtr : Int.
argTypes
())
2080
for (const Type *ArgTypePtr : Int.
argTypes
())
/src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp
2464
std::vector<Type *>
argTypes
;
2468
argTypes
.push_back(I.getType());
2470
//
argTypes
.size() (or theArgs.size()) and Ins.size() need not match.
2483
Type *Ty =
argTypes
[i];
Completed in 72 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026