HomeSort by relevance Sort by last modified time
    Searched refs:Corrected (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/Sema/
SemaOpenMP.cpp 61 TypoCorrection Corrected = CorrectTypo(Id, LookupOrdinaryName, CurScope,
63 std::string CorrectedStr = Corrected.getAsString(getLangOpts());
64 std::string CorrectedQuotedStr = Corrected.getQuoted(getLangOpts());
66 if (Corrected.isResolved()) {
76 << Id.getName() << Corrected.isResolved() << CorrectedQuotedStr
79 if (!Corrected.isResolved()) return ExprError();
80 VD = Corrected.getCorrectionDeclAs<VarDecl>();
SemaCXXScopeSpec.cpp 492 TypoCorrection Corrected;
494 if ((Corrected = CorrectTypo(Found.getLookupNameInfo(),
497 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
498 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
499 bool droppedSpecifier = Corrected.WillReplaceSpecifier() &&
505 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
510 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
513 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
517 Found.setLookupName(Corrected.getCorrection());
    [all...]
SemaExprMember.cpp 623 TypoCorrection Corrected = SemaRef.CorrectTypo(R.getLookupNameInfo(),
627 if (Corrected.isResolved() && !Corrected.isKeyword()) {
629 Corrected.getAsString(SemaRef.getLangOpts()));
631 Corrected.getQuoted(SemaRef.getLangOpts()));
633 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr;
635 R.setLookupName(Corrected.getCorrection());
636 for (TypoCorrection::decl_iterator DI = Corrected.begin(),
637 DIEnd = Corrected.end();
645 << FixItHint::CreateReplacement(Corrected.getCorrectionRange()
    [all...]
SemaTemplateVariadic.cpp 819 if (TypoCorrection Corrected = CorrectTypo(R.getLookupNameInfo(),
822 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
823 ParameterPack = Corrected.getCorrectionDecl();
827 NameLoc, Corrected.getAsString(getLangOpts()));
    [all...]
SemaExprObjC.cpp     [all...]
SemaDeclObjC.cpp 513 if (TypoCorrection Corrected = CorrectTypo(
516 PrevDecl = Corrected.getCorrectionDeclAs<ObjCInterfaceDecl>();
748 TypoCorrection Corrected = CorrectTypo(
751 if ((PDecl = Corrected.getCorrectionDeclAs<ObjCProtocolDecl>())) {
753 << ProtocolId[i].first << Corrected.getCorrection();
    [all...]
SemaDecl.cpp 229 // Ignore a correction to a template type as the to-be-corrected
412 if (TypoCorrection Corrected = CorrectTypo(DeclarationNameInfo(II, IILoc),
415 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
416 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
418 if (Corrected.isKeyword()) {
419 // We corrected to a keyword.
420 IdentifierInfo *NewII = Corrected.getCorrectionAsIdentifierInfo();
425 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
429 NamedDecl *Result = Corrected.getCorrectionDecl();
434 << FixItHint::CreateReplacement(Corrected.getCorrectionRange()
    [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
SemaTemplate.cpp 326 if (TypoCorrection Corrected = CorrectTypo(Found.getLookupNameInfo(),
329 Found.setLookupName(Corrected.getCorrection());
330 if (Corrected.getCorrectionDecl())
331 Found.addDecl(Corrected.getCorrectionDecl());
334 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
335 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
337 bool droppedSpecifier = Corrected.WillReplaceSpecifier() &&
342 << FixItHint::CreateReplacement(Corrected.getCorrectionRange(),
    [all...]
SemaInit.cpp     [all...]
  /external/libvpx/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 759 * Corrected a bug that prevented special characters from being
765 * Corrected a small bug in `_TokenizeHTML` where a Doctype declaration
777 * Corrected a problem with quotes immediately following a dash
  /external/libpng/
CHANGES 258 Corrected a problem with png_get_tRNS() which returned undefined trans array
260 Corrected png_get_tRNS() again.
268 Corrected some logic errors in png_do_invert_alpha() (Chris Patterson)
270 Corrected a bug in pngpread() introduced in version 99c (Kevin Bracey)
325 Corrected some bugs in the experimental weighted filtering heuristics.
352 Corrected example.c, use of row_pointers in png_write_image().
354 Corrected several statements that used side effects illegally in pngrutil.c
441 Corrected the typedef for png_free_ptr in png.h (Jesse Jones).
    [all...]

Completed in 495 milliseconds