HomeSort by relevance Sort by last modified time
    Searched refs:FT (Results 51 - 75 of 89) sorted by null

1 23 4

  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 260 if (const FunctionType *FT = Ty->getAs<FunctionType>())
261 Ty = FT->getReturnType();
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 912 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
915 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 939 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
942 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 921 FunctionType *FT = FunctionType::get(Type::getDoubleTy(getGlobalContext()),
924 Function *F = Function::Create(FT, Function::ExternalLinkage, Name, TheModule);
    [all...]
toy.cpp     [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 380 const FunctionProtoType *FT = FD->getType()->castAs<FunctionProtoType>();
389 mangleFunctionType(FT, FD);
    [all...]
Decl.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 417 FunctionType *FT = cast<FunctionType>(T);
420 TypeVals.push_back(FT->isVarArg());
421 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
422 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
423 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 339 FunctionType *FT = cast<FunctionType>(T);
342 TypeVals.push_back(FT->isVarArg());
344 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
345 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
346 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 279 FunctionType *FT = cast<FunctionType>(T);
282 TypeVals.push_back(FT->isVarArg());
284 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
285 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
286 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 285 FunctionType *FT = cast<FunctionType>(T);
288 TypeVals.push_back(FT->isVarArg());
289 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
290 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i)
291 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 518 if (const FunctionType *FT =
520 if (FT->getReturnType()->isVoidType())
522 if (FT->getNoReturnAttr())
    [all...]
SemaType.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaDecl.cpp     [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.h     [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 120 size_t getTypeSize(FunctionType * const FT,bool dereferencePtr = false);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 120 size_t getTypeSize(FunctionType * const FT,bool dereferencePtr = false);
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 174 } else if (FunctionType *FT = dyn_cast<FunctionType>(DstTy)) {
175 if (FT->isVarArg() != cast<FunctionType>(SrcTy)->isVarArg())
    [all...]

Completed in 1596 milliseconds

1 23 4