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

  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Error.h 20 class Failure : public StringError {
22 Failure(const Twine &S) : StringError(S, inconvertibleErrorCode()) {}
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicCastInfo.h 19 enum CastResult { Success, Failure };
32 bool fails() const { return ResultKind == CastResult::Failure; }
  /src/external/bsd/zstd/dist/contrib/pzstd/
Options.h 41 Failure, // Failure to parse options
  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
Remark.h 61 Failure,
63 Last = Failure
  /src/external/apache2/llvm/dist/llvm/tools/opt-viewer/
optrecord.py 268 class Failure(Missed):
269 yaml_tag = '!Failure'
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenMux.cpp 308 bool Failure = false, CanUp = true, CanDown = true;
312 Failure = true;
320 if (Failure || (!CanUp && !CanDown))
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
Miscompilation.cpp 334 bool Failure;
336 BD, *ToOptimizeLoopExtracted, *ToNotOptimize, Failure);
347 if (Failure) {
620 // failure, see if we can pin down which functions are being
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Value.cpp 411 bool Failure = getSymTab(V, VST);
412 assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Initialization.h 786 /// A failed initialization sequence. The failure kind tells what
1100 FailureKind Failure;
1108 /// The incomplete type that caused a failure.
1359 void SetFailed(FailureKind Failure) {
1361 this->Failure = Failure;
1362 assert((Failure != FK_Incomplete || !FailedIncompleteType.isNull()) &&
1363 "Incomplete type failure requires a type!");
1368 void SetOverloadFailure(FailureKind Failure, OverloadingResult Result);
1391 assert(Failed() && "Not an initialization failure!");
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 220 /// \param Failure Atomic ordering for failed operation.
228 llvm::AtomicOrdering Failure =
262 llvm::AtomicOrdering Failure =
269 llvm::AtomicOrdering Failure =
383 // false on failure.
430 // 31.7.2.18: "The failure argument shall not be memory_order_release
444 // Prior to c++17, "the failure argument shall be no stronger than the
1073 // void *desired, int success, int failure)
1075 // int success, int failure)
1687 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak)
    [all...]
  /src/external/gpl3/gcc/dist/contrib/
paranoia.cc 68 B Radix [Failure] T0 Underflow
947 enum Class { Failure, Serious, Defect, Flaw };
1044 ErrCnt[Failure] = 0;
1054 TstCond (Failure, (Zero + Zero == Zero), "0+0 != 0");
1055 TstCond (Failure, (One - One == Zero), "1-1 != 0");
1056 TstCond (Failure, (One > Zero), "1 <= 0");
1057 TstCond (Failure, (One + One == Two), "1+1 != 2");
1062 ErrCnt[Failure] = ErrCnt[Failure] + 1;
1069 TstCond (Failure, (Three == Two + One), "3 != 2+1")
    [all...]
  /src/external/gpl3/gcc.old/dist/contrib/
paranoia.cc 68 B Radix [Failure] T0 Underflow
947 enum Class { Failure, Serious, Defect, Flaw };
1044 ErrCnt[Failure] = 0;
1054 TstCond (Failure, (Zero + Zero == Zero), "0+0 != 0");
1055 TstCond (Failure, (One - One == Zero), "1-1 != 0");
1056 TstCond (Failure, (One > Zero), "1 <= 0");
1057 TstCond (Failure, (One + One == Two), "1+1 != 2");
1062 ErrCnt[Failure] = ErrCnt[Failure] + 1;
1069 TstCond (Failure, (Three == Two + One), "3 != 2+1")
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTReader.h 373 Failure,
1524 /// When a client states that it can handle a particular kind of failure,
1525 /// the AST reader will not emit errors when producing that kind of failure.
1562 /// \param ClientLoadCapabilities The set of client load-failure
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 1765 /// \returns true if there was a failure, false on success.
2010 /// Returns None on failure. \p isAngled indicates whether the file
2252 Failure,
2258 assert((AK == None || Mod || AK == Failure) &&
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 3467 // That being said, that failure is unlikely and not caching is harmless.
4334 bool Failure =
4336 if (Failure || Version < 7)
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 2507 AtomicOrdering Failure =
2510 XAddr, OldExprVal, DesiredVal, llvm::MaybeAlign(), AO, Failure);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 334 /// Enter the specified file. This returns true on failure.
338 /// This returns true on failure.
856 /// returns true on failure.
2833 bool Failure = false;
2840 Failure = true;
2847 return Failure;
MasmParser.cpp 602 /// Enter the specified file. This returns true on failure.
3082 bool Failure = false;
3090 Failure = true;
3097 return Failure;

Completed in 118 milliseconds