Searched refs:NewLoc (Results 1 - 14 of 14) sorted by relevance

/external/clang/lib/Sema/
H A DSemaExceptionSpec.cpp378 const FunctionProtoType *New, SourceLocation NewLoc) {
383 PDiag(diag::note_previous_declaration), Old, OldLoc, New, NewLoc);
402 SourceLocation NewLoc,
417 Old = ResolveExceptionSpec(NewLoc, Old);
420 New = ResolveExceptionSpec(NewLoc, New);
470 Diag(NewLoc, DiagID);
551 Diag(NewLoc, DiagID);
580 Diag(NewLoc, DiagID);
376 CheckEquivalentExceptionSpec( const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc) argument
397 CheckEquivalentExceptionSpec(const PartialDiagnostic &DiagID, const PartialDiagnostic & NoteID, const FunctionProtoType *Old, SourceLocation OldLoc, const FunctionProtoType *New, SourceLocation NewLoc, bool *MissingExceptionSpecification, bool*MissingEmptyExceptionSpecification, bool AllowNoexceptAllMatchWithNoSpec, bool IsOperatorNew) argument
H A DSemaTemplate.cpp6617 /// \param NewLoc the location of the new explicit specialization or
6635 Sema::CheckSpecializationInstantiationRedecl(SourceLocation NewLoc, argument
6687 Diag(NewLoc, diag::err_specialization_after_instantiation)
6722 Diag(NewLoc,
6752 Diag(NewLoc, getLangOpts().CPlusPlus11 ?
6787 Diag(NewLoc, (getLangOpts().MSVCCompat)
/external/clang/lib/Lex/
H A DPragma.cpp1353 SourceLocation NewLoc; local
1361 NewLoc = Loc;
1368 NewLoc = SourceLocation();
1371 PP.setPragmaARCCFCodeAuditedLoc(NewLoc);
1407 SourceLocation NewLoc; local
1415 NewLoc = Loc;
1422 NewLoc = SourceLocation();
1425 PP.setPragmaAssumeNonNullLoc(NewLoc);
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1020 void addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd = false,
1023 void rawAddEdge(PathDiagnosticLocation NewLoc);
1091 void EdgeBuilder::rawAddEdge(PathDiagnosticLocation NewLoc) { argument
1093 PrevLoc = NewLoc;
1097 const PathDiagnosticLocation &NewLocClean = cleanUpLocation(NewLoc, PDB.LC);
1101 PrevLoc = NewLoc;
1114 PrevLoc = NewLoc;
1117 void EdgeBuilder::addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd, argument
1120 if (!alwaysAdd && NewLoc.asLocation().isMacroID())
1123 const PathDiagnosticLocation &CLoc = getContextLocation(NewLoc);
1584 addEdgeToPath(PathPieces &path, PathDiagnosticLocation &PrevLoc, PathDiagnosticLocation NewLoc, const LocationContext *LC) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h677 /// Return true if moving \p Inst to before \p NewLoc will break LCSSA,
678 /// assuming that the function containing \p Inst and \p NewLoc is currently
680 bool movementPreservesLCSSAForm(Instruction *Inst, Instruction *NewLoc) { argument
681 assert(Inst->getFunction() == NewLoc->getFunction() &&
685 auto *NewBB = NewLoc->getParent();
704 // To check that the movement of Inst to before NewLoc does not break LCSSA,
706 // NewLoc: the users of NewInst, and the operands of NewInst.
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp502 /// \brief Adjust regions and state when \c NewLoc exits a file.
504 /// If moving from our most recently tracked location to \c NewLoc exits any
507 void handleFileExit(SourceLocation NewLoc) { argument
508 if (NewLoc.isInvalid() ||
509 SM.isWrittenInSameFile(MostRecentLocation, NewLoc))
512 // If NewLoc is not in a file that contains MostRecentLocation, walk up to
514 SourceLocation LCA = NewLoc;
521 MostRecentLocation = NewLoc;
564 MostRecentLocation = NewLoc;
H A DCodeGenAction.cpp288 SourceLocation NewLoc = local
290 return FullSourceLoc(NewLoc, CSM);
/external/clang/include/clang/Sema/
H A DInitialization.h258 static InitializedEntity InitializeNew(SourceLocation NewLoc, QualType Type) { argument
259 return InitializedEntity(EK_New, NewLoc, Type);
H A DSema.h1316 const FunctionProtoType *New, SourceLocation NewLoc);
1320 const FunctionProtoType *New, SourceLocation NewLoc,
5828 CheckSpecializationInstantiationRedecl(SourceLocation NewLoc,
/external/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp897 BasicBlock *NewLoc = preheader(DT, Lp); local
898 if (!NewLoc || !DT->dominates(TopB, NewLoc))
901 LocB = NewLoc;
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCDwarf.cpp494 const MachineLocation &NewLoc = Loc.isReg() ? local
496 return NewLoc;
/external/swiftshader/third_party/LLVM/lib/AsmParser/
H A DLLParser.cpp3790 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
3803 ParseTypeAndValue(New, NewLoc, PFS) ||
3814 return Error(NewLoc, "new value and pointer type do not match");
3816 return Error(NewLoc, "cmpxchg operand must be an integer");
3819 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
/external/clang/lib/AST/
H A DVTableBuilder.cpp3601 MethodVFTableLocation NewLoc = Loc.second; local
3603 if (M == NewMethodLocations.end() || NewLoc < M->second)
3604 NewMethodLocations[GD] = NewLoc;
/external/llvm/lib/AsmParser/
H A DLLParser.cpp6095 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
6113 ParseTypeAndValue(New, NewLoc, PFS) ||
6133 return Error(NewLoc, "new value and pointer type do not match");
6135 return Error(NewLoc, "cmpxchg operand must be a first class value");

Completed in 639 milliseconds