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

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CalledOnceCheck.cpp 99 // the wrong action. And, in order to remember that we already reported
100 // a double call, we need another kind: `Reported`.
125 // 2. for any Kind K: Reported | K == Reported
126 // Doesn't matter on which path it was reported, it still is.
164 // We already reported a violation and stopped tracking calls for this
166 Reported = 0x15, /* 1111 */
167 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ Reported)
183 return (K & DefinitelyCalled) == DefinitelyCalled && K != Reported;
918 // Mark this parameter as already reported on, so we don't repea
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MoveChecker.cpp 32 enum Kind { Moved, Reported } K;
36 bool isReported() const { return K == Reported; }
39 static RegionState getReported() { return RegionState(Reported); }
208 // should be reported. If so, get it reported. The callback from which
278 // We need only the last move of the reported object's region.
369 // Don't report it in case if any base region is already reported.
477 // If it has already been reported do not need to modify the state.
744 Out << ": moved and reported";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 192 /// Keep track of merged data and reported errors.
269 bool Reported = false;
271 if (Reported) {
275 Reported = true;

Completed in 28 milliseconds