OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FTP
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Analysis/
RetainSummaryManager.cpp
789
const FunctionProtoType*
FTP
= dyn_cast<FunctionProtoType>(FT);
790
if (!
FTP
||
FTP
->getNumParams() != 1)
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp
860
const FunctionProtoType *
FTP
= FD->getType()->getAs<FunctionProtoType>();
861
if (!
FTP
)
864
if (
FTP
->getNumParams() == 1) {
867
const PointerType *PT =
FTP
->getParamType(0)->getAs<PointerType>();
873
} else if (
FTP
->getNumParams() != 0)
903
const FunctionProtoType *
FTP
= FD->getType()->getAs<FunctionProtoType>();
904
if (!
FTP
)
908
if (
FTP
->getNumParams() != 0)
1026
const FunctionProtoType *
FTP
= FD->getType()->getAs<FunctionProtoType>();
1027
if (!
FTP
)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp
180
CanQual<FunctionProtoType>
FTP
) {
182
RequiredArgs Required = RequiredArgs::forPrototypePlus(
FTP
, prefix.size());
184
appendParameterTypes(CGT, prefix, paramInfos,
FTP
);
185
CanQualType resultType =
FTP
->getReturnType().getUnqualifiedType();
189
FTP
->getExtInfo(), paramInfos,
196
CodeGenTypes::arrangeFreeFunctionType(CanQual<FunctionProtoType>
FTP
) {
199
FTP
);
255
const FunctionProtoType *
FTP
,
264
FTP
->getCanonicalTypeUnqualified().getAs<FunctionProtoType>());
325
CanQual<FunctionProtoType>
FTP
= GetFormalType(MD)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp
4539
const FunctionProtoType *
FTP
= dyn_cast<FunctionProtoType>(FT);
4540
//
FTP
will be null for closures that don't take arguments.
4546
if (
FTP
) {
4547
for (auto &I :
FTP
->param_types()) {
4600
const FunctionProtoType *
FTP
= dyn_cast<FunctionProtoType>(FT);
4601
//
FTP
will be null for closures that don't take arguments.
4613
if (
FTP
) {
4614
for (auto &I :
FTP
->param_types()) {
4814
const FunctionProtoType *
FTP
;
4817
FTP
= PT->getPointeeType()->getAs<FunctionProtoType>()
[
all
...]
RewriteObjC.cpp
3706
const FunctionProtoType *
FTP
= dyn_cast<FunctionProtoType>(FT);
3707
//
FTP
will be null for closures that don't take arguments.
3713
if (
FTP
) {
3714
for (auto &I :
FTP
->param_types()) {
3769
const FunctionProtoType *
FTP
= dyn_cast<FunctionProtoType>(FT);
3770
//
FTP
will be null for closures that don't take arguments.
3782
if (
FTP
) {
3783
for (auto &I :
FTP
->param_types()) {
3969
const FunctionProtoType *
FTP
;
3972
FTP
= PT->getPointeeType()->getAs<FunctionProtoType>()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp
4377
auto *
FTP
= (FunctionProtoType *)Allocate(Size, TypeAlignment);
4379
new (
FTP
) FunctionProtoType(ResultTy, ArgArray, Canonical, newEPI);
4380
Types.push_back(
FTP
);
4382
FunctionProtoTypes.InsertNode(
FTP
, InsertPos);
4383
return QualType(
FTP
, 0);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
11151
const FunctionProtoType*
FTP
= cast<const FunctionProtoType>(FT);
11152
unsigned nparams =
FTP
->getNumParams();
11157
if (
FTP
->isVariadic()) {
11183
QualType AT =
FTP
->getParamType(i);
Completed in 62 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026