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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ConditionOptimizer.cpp 251 int Correction = (Cmp == AArch64CC::GT) ? 1 : -1;
252 // Negate Correction value for comparison with negative immediate (CMN).
254 Correction = -Correction;
258 const int NewImm = std::abs(OldImm + Correction);
262 if (OldImm == 0 && ((Negative && Correction == 1) ||
263 (!Negative && Correction == -1))) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 380 TypoCorrection Correction = CorrectTypo(Result.getLookupNameInfo(), Kind,
382 IdentifierInfo *NewII = Correction.getCorrectionAsIdentifierInfo();
387 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
393 if (Correction && (NNS || NewII != &II) &&
394 // Ignore a correction to a template type as the to-be-corrected
395 // identifier is not a template (typo correction for template names
406 diagnoseTypo(Correction,
416 // If typo correction failed or was not performed, fall through
935 // FIXME: Find a way to still do typo correction in this case.
949 // Perform typo correction to determine if there is another name that i
    [all...]

Completed in 18 milliseconds