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

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyExceptionInfo.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
81 SmallVector<std::unique_ptr<WebAssemblyException>, 8> Exceptions;
88 Exceptions.push_back(std::move(WE));
107 // We group exceptions in this analysis simply by including all BBs dominated
119 // exceptions A, B, and C and A > B > C (> is subexception relationship here),
162 // easier, because we haven't added BBs to exceptions yet, we only need to
191 // Add BBs to exceptions' block set. This is a preparation to take out
192 // remaining incorect BBs from exceptions, because we need to iterate over BBs
202 // exceptions' BlockSet, when we take a BB out of an exception, we need to fix
239 // Add BBs to exceptions' block vecto
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
93 llvm::TinyPtrVector<const BlockCommandComment *> Exceptions;
136 Exceptions.push_back(BCC);
979 if (Parts.Exceptions.size() != 0) {
980 Result << "<Exceptions>";
981 for (unsigned i = 0, e = Parts.Exceptions.size(); i != e; ++i)
982 visit(Parts.Exceptions[i]);
983 Result << "</Exceptions>";
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
2955 enum FlagKinds { Contract, Reassociate, Exceptions };
2986 .Case("exceptions", TokFPAnnotValue::Exceptions)
3035 } else if (FlagKind == TokFPAnnotValue::Exceptions) {
  /src/external/bsd/tcpdump/dist/
print-snmp.c 160 * Context-specific ASN.1 types for the SNMP Exceptions and their tags
162 static const char *Exceptions[] = {
245 defineCLASS(Exceptions),
246 #define EXCEPTIONS 4
835 ND_PRINT("[%s]", Class[EXCEPTIONS].Id[elem->id]);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Type.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3949 ArrayRef<QualType> Exceptions;
4152 Result.Exceptions = exceptions();
4266 ArrayRef<QualType> exceptions() const {
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1352 TypeAndRange *Exceptions;
1397 delete[] Exceptions;
1635 ParsedType *Exceptions,
Sema.h 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5785 // Then a throw(collected exceptions)
5790 SmallVector<QualType, 4> Exceptions;
5794 Exceptions.clear();
5811 /// The number of exceptions in the exception specification.
5812 unsigned size() const { return Exceptions.size(); }
5814 /// The set of exceptions in the exception specification.
5815 const QualType *data() const { return Exceptions.data(); }
5832 ESI.Exceptions = Exceptions;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
766 /*Exceptions=*/nullptr,
5314 SmallVector<QualType, 4> Exceptions;
5326 DynamicExceptions.push_back(FTI.Exceptions[I].Ty);
5327 DynamicExceptionRanges.push_back(FTI.Exceptions[I].Range);
5338 Exceptions,

Completed in 80 milliseconds