HomeSort by: relevance | last modified time | path
    Searched defs:FTL (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Comment.cpp 165 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
166 ResFTL = FTL;
183 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {
184 ResFTL = FTL;
310 FunctionTypeLoc FTL;
311 if (getFunctionTypeLoc(TL, FTL)) {
312 ParamVars = FTL.getParams();
313 ReturnType = FTL.getReturnLoc().getType();
334 FunctionTypeLoc FTL;
335 if (getFunctionTypeLoc(TL, FTL)) {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 10846 if (FunctionTypeLoc FTL = MD->getTypeSourceInfo()->getTypeLoc()
10848 AddConstLoc = getLocForEndOfToken(FTL.getRParenLoc());
14524 if (FunctionNoProtoTypeLoc FTL = TL.getAs<FunctionNoProtoTypeLoc>())
14529 ? FixItHint::CreateInsertion(FTL.getRParenLoc(), "void")
14585 FunctionTypeLoc FTL = TL.getAsAdjusted<FunctionTypeLoc>();
14586 Diag(FTL.getLParenLoc(), diag::warn_strict_prototypes) << 2;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CIndex.cpp 831 FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>();
837 if ((FTL && !isa<CXXConversionDecl>(ND) && !HasTrailingRT &&
838 Visit(FTL.getReturnLoc())) ||
839 (!FTL && Visit(TL)))
855 if (FTL && VisitFunctionTypeLoc(FTL, true))
859 if (FTL && HasTrailingRT && Visit(FTL.getReturnLoc()))

Completed in 91 milliseconds