HomeSort by relevance Sort by last modified time
    Searched defs:EPI (Results 1 - 15 of 15) sorted by null

  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 204 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
205 EPI.ExceptionSpecType = EST_DynamicNone;
207 NewProto->getArgTypes(), EPI);
215 FunctionProtoType::ExtProtoInfo EPI = NewProto->getExtProtoInfo();
216 EPI.ExceptionSpecType = OldProto->getExceptionSpecType();
217 if (EPI.ExceptionSpecType == EST_Dynamic) {
218 EPI.NumExceptions = OldProto->getNumExceptions();
219 EPI.Exceptions = OldProto->exception_begin();
220 } else if (EPI.ExceptionSpecType == EST_ComputedNoexcept) {
228 NewProto->getArgTypes(), EPI);
    [all...]
SemaLambda.cpp 540 FunctionProtoType::ExtProtoInfo EPI;
541 EPI.HasTrailingReturn = true;
542 EPI.TypeQuals |= DeclSpec::TQ_const;
544 EPI);
    [all...]
SemaLookup.cpp 730 FunctionProtoType::ExtProtoInfo EPI = ConvProto->getExtProtoInfo();
731 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_Default);
732 EPI.ExceptionSpecType = EST_None;
733 EPI.NumExceptions = 0;
736 None, EPI);
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaType.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/clang/lib/AST/
ASTDumper.cpp 826 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
827 switch (EPI.ExceptionSpecType) {
830 OS << " noexcept-unevaluated " << EPI.ExceptionSpecDecl;
833 OS << " noexcept-uninstantiated " << EPI.ExceptionSpecTemplate;
    [all...]
ASTContext.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 469 milliseconds