Searched refs:FTP (Results 1 - 10 of 10) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CheckSecuritySyntaxOnly.cpp | 459 const FunctionProtoType *FTP local 461 if (!FTP) 464 if (FTP->getNumArgs() == 1) { 467 const PointerType *PT = dyn_cast<PointerType>(FTP->getArgType(0)); 474 else if (FTP->getNumArgs() != 0) 503 const FunctionProtoType *FTP local 505 if (!FTP) 509 if (FTP->getNumArgs() != 0) 573 const FunctionProtoType *FTP local 575 if (!FTP) [all...] |
H A D | RetainCountChecker.cpp | 1103 const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT); local 1104 if (!FTP || FTP->getNumArgs() != 1)
|
/external/webkit/Source/WebCore/html/ |
H A D | FTPDirectoryDocument.cpp | 80 // table for presenting the FTP directory in a useful manner 283 LOG(FTP, "Appending entry - %s, %s", filename.ascii().data(), result.fileSize.ascii().data()); 294 LOG(FTP, "Loaded FTPDirectoryTemplate of length %i\n", buffer->size()); 302 // store that document, then "copy" it whenever we get an FTP directory listing. There are complexities with this 343 LOG(FTP, "Creating a basic FTP document structure as no template was loaded"); 408 LOG(FTP, "%s", m_carryOver.ascii().data());
|
/external/clang/lib/CodeGen/ |
H A D | CGCall.cpp | 80 CanQual<FunctionProtoType> FTP) { 82 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) 83 ArgTys.push_back(FTP->getArgType(i)); 84 CanQualType ResTy = FTP->getResultType().getUnqualifiedType(); 85 return CGT.getFunctionInfo(ResTy, ArgTys, FTP->getExtInfo()); 89 CodeGenTypes::getFunctionInfo(CanQual<FunctionProtoType> FTP) { argument 91 return ::getFunctionInfo(*this, ArgTys, FTP); 115 const FunctionProtoType *FTP) { 122 FTP->getCanonicalTypeUnqualified().getAs<FunctionProtoType>()); 146 CanQual<FunctionProtoType> FTP local 78 getFunctionInfo(CodeGenTypes &CGT, SmallVectorImpl<CanQualType> &ArgTys, CanQual<FunctionProtoType> FTP) argument 114 getFunctionInfo(const CXXRecordDecl *RD, const FunctionProtoType *FTP) argument 163 CanQual<FunctionProtoType> FTP = GetFormalType(D); local [all...] |
H A D | CodeGenTypes.h | 177 const FunctionProtoType *FTP);
|
H A D | CGDebugInfo.cpp | 624 else if (const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(Ty)) { 625 for (unsigned i = 0, e = FTP->getNumArgs(); i != e; ++i) 626 EltTys.push_back(getOrCreateType(FTP->getArgType(i), Unit));
|
/external/clang/lib/Rewrite/ |
H A D | RewriteObjC.cpp | 4698 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local 4699 // FTP will be null for closures that don't take arguments. 4705 if (FTP) { 4706 for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), 4707 E = FTP->arg_type_end(); I && (I != E); ++I) { 4762 const FunctionProtoType *FTP = dyn_cast<FunctionProtoType>(FT); local 4763 // FTP will be null for closures that don't take arguments. 4775 if (FTP) { 4776 for (FunctionProtoType::arg_type_iterator I = FTP->arg_type_begin(), 4777 E = FTP 4977 const FunctionProtoType *FTP; local 4996 const FunctionProtoType *FTP; local [all...] |
/external/clang/lib/AST/ |
H A D | ASTContext.cpp | 2082 if (FunctionProtoType *FTP = 2084 return QualType(FTP, 0); 2138 FunctionProtoType *FTP = (FunctionProtoType*) Allocate(Size, TypeAlignment); local 2141 new (FTP) FunctionProtoType(ResultTy, ArgArray, NumArgs, Canonical, newEPI); 2142 Types.push_back(FTP); 2143 FunctionProtoTypes.InsertNode(FTP, InsertPos); 2144 return QualType(FTP, 0);
|
/external/clang/lib/Sema/ |
H A D | SemaDecl.cpp | 5658 const FunctionProtoType* FTP = cast<const FunctionProtoType>(FT); local 5659 unsigned nparams = FTP->getNumArgs(); 5684 QualType AT = FTP->getArgType(i);
|
/external/iproute2/doc/ |
H A D | ip-cref.tex | 2826 active FTP clients happy, your choice is not route NAT but masquerading,
|
Completed in 1048 milliseconds