HomeSort by: relevance | last modified time | path
    Searched refs:AFT (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclPrinter.cpp 669 if (const FunctionType *AFT = Ty->getAs<FunctionType>()) {
672 FT = dyn_cast<FunctionProtoType>(AFT);
752 AFT->getReturnType().print(Out, Policy, Proto);
StmtPrinter.cpp 2495 const FunctionType *AFT = Node->getFunctionType();
2497 if (isa<FunctionNoProtoType>(AFT)) {
2499 } else if (!BD->param_empty() || cast<FunctionProtoType>(AFT)->isVariadic()) {
2508 const auto *FT = cast<FunctionProtoType>(AFT);
Expr.cpp 635 const FunctionType *AFT = Decl->getType()->getAs<FunctionType>();
638 FT = dyn_cast<FunctionProtoType>(AFT);
641 switch (AFT->getCallConv()) {
754 AFT->getReturnType().getAsStringInternal(Proto, Policy);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 4052 const FunctionType *AFT = CE->getFunctionType();
4053 QualType RT = AFT->getReturnType();
4064 if (isa<FunctionNoProtoType>(AFT)) {
4071 const FunctionProtoType *FT = cast<FunctionProtoType>(AFT);
RewriteObjC.cpp 3267 const FunctionType *AFT = CE->getFunctionType();
3268 QualType RT = AFT->getReturnType();
3275 if (isa<FunctionNoProtoType>(AFT)) {
3282 const FunctionProtoType *FT = cast<FunctionProtoType>(AFT);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 805 if (const FunctionType *AFT = Ty->getAs<FunctionType>()) {
806 if (const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(AFT))

Completed in 36 milliseconds