HomeSort by relevance Sort by last modified time
    Searched refs:Old (Results 76 - 100 of 120) sorted by null

1 2 34 5

  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp 435 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old,
447 FunctionDecl *PrevForDefaultArgs = Old;
460 // Ignore default arguments of old decl if they are not in
516 // Merge the old default argument into the new parameter.
540 // actually written, which may be a declaration prior to Old.
550 // Merge the old default argument into the new parameter.
619 New->getMinRequiredArguments() < Old->getMinRequiredArguments()) {
621 OldSM = getSpecialMember(cast<CXXMethodDecl>(Old));
627 Diag(Old->getLocation(), diag::note_previous_declaration);
635 if (New->isConstexpr() != Old->isConstexpr())
    [all...]
SemaTemplateInstantiate.cpp 712 void transformAttrs(Decl *Old, Decl *New) {
713 SemaRef.InstantiateAttrs(TemplateArgs, Old, New);
716 void transformedLocalDecl(Decl *Old, Decl *New) {
722 auto *OldMD = dyn_cast<CXXMethodDecl>(Old);
731 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Old, New);
    [all...]
SemaLookup.cpp     [all...]
SemaType.cpp     [all...]
SemaOverload.cpp 855 // overload of the declarations in Old. This routine returns false if
856 // New and Old cannot be overloaded, e.g., if New has the same
857 // signature as some function in Old (C++ 1.3.10) or if the Old
872 // When we process #2, Old contains only the FunctionDecl for #1. By
877 // When we process #3, Old is an overload set containing #1 and #2. We
889 Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old,
891 for (LookupResult::iterator I = Old.begin(), E = Old.end();
937 assert(Old.getLookupKind() == LookupUsingDeclName)
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 273 bool shouldLinkPossiblyHiddenDecl(const NamedDecl *Old,
281 return isVisible(Old) || New->isExternallyVisible();
283 bool shouldLinkPossiblyHiddenDecl(LookupResult &Old, const NamedDecl *New);
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp 338 // Check consistency between new and old means of checking whether a BDV is
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 171 void ReplaceNode(SDNode *Old, SDNode *New) {
172 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
175 assert(Old->getNumValues() == New->getNumValues() &&
178 DAG.ReplaceAllUsesWith(Old, New);
179 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i)
180 DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i));
183 ReplacedNode(Old);
185 void ReplaceNode(SDValue Old, SDValue New) {
186 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG);
189 DAG.ReplaceAllUsesWith(Old, New)
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 304 /// value area and return the old insert position.
307 /// \brief Reset InsertPt to the given old insert position.
308 void leaveLocalValueArea(SavePoint Old);
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 200 void ReplaceStmt(Stmt *Old, Stmt *New) {
201 ReplaceStmtWithRange(Old, New, Old->getSourceRange());
204 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
205 assert(Old != nullptr && New != nullptr && "Expected non-null Stmt's");
207 Stmt *ReplacingStmt = ReplacedNodes[Old];
214 // Measure the old text.
217 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
218 << Old->getSourceRange();
229 ReplacedNodes[Old] = New
    [all...]
RewriteModernObjC.cpp 251 void ReplaceStmt(Stmt *Old, Stmt *New) {
252 ReplaceStmtWithRange(Old, New, Old->getSourceRange());
255 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) {
256 assert(Old != nullptr && New != nullptr && "Expected non-null Stmt's");
258 Stmt *ReplacingStmt = ReplacedNodes[Old];
265 // Measure the old text.
268 Diags.Report(Context->getFullLoc(Old->getLocStart()), RewriteFailedDiag)
269 << Old->getSourceRange();
280 ReplacedNodes[Old] = New
    [all...]
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 378 FunctionDecl *Old = cast<FunctionDecl>(LM.Method)->getPreviousDecl();
379 ParmVarDecl *OldParam = Old->getParamDecl(I);
    [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 335 Module *Old = BD.swapProgramIn(New.release());
338 delete Old;
421 // All of the Function*'s in the MiscompiledFunctions list are in the old
589 // Set the new program and delete the old one.
772 // which just calls the old one.
795 // Call the old main function and return its result
799 // If the type of old function wasn't void, return value of call
    [all...]
  /external/v8/test/mjsunit/es6/
proxies-set.js 213 assertTrueIf(mySet.returnsBool, mySet(proxy, p, 0)); // Old value.
  /external/clang/lib/Lex/
ModuleMap.cpp 315 const ModuleMap::KnownHeader &Old) {
317 if (New.getModule()->isAvailable() && !Old.getModule()->isAvailable())
322 (Old.getRole() & ModuleMap::PrivateHeader))
327 (Old.getRole() & ModuleMap::TextualHeader))
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 514 void RAGreedy::LRE_DidCloneVirtReg(unsigned New, unsigned Old) {
516 if (!ExtraRegInfo.inBounds(Old))
523 ExtraRegInfo[Old].Stage = RS_Assign;
525 ExtraRegInfo[New] = ExtraRegInfo[Old];
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfData.inc 217 * Do byte swap for this instance. \c Old is the original order before
220 void swapBytes(support::endianness Old, support::endianness New);
  /external/llvm/include/llvm/ProfileData/
InstrProfData.inc 217 * Do byte swap for this instance. \c Old is the original order before
220 void swapBytes(support::endianness Old, support::endianness New);
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 818 Expr::EvalStatus Old;
823 : Info(Info), Old(Info.EvalStatus) {
830 Info.EvalStatus = Old;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/autotest/server/cros/dynamic_suite/
reporting.py 714 Old bugs may not have a count; this routine implicitly
    [all...]

Completed in 1328 milliseconds

1 2 34 5