Searched defs:New (Results 176 - 186 of 186) sorted by relevance

12345678

/external/clang/include/clang/Sema/
H A DSema.h221 shouldLinkPossiblyHiddenDecl(const NamedDecl *Old, const NamedDecl *New) { argument
228 return !Old->isHidden() || New->isExternallyVisible();
1183 bool CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New);
1186 const FunctionProtoType *New, SourceLocation NewLoc);
1190 const FunctionProtoType *New, SourceLocation NewLoc,
1957 bool isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New);
2002 void mergeDeclAttributes(NamedDecl *New, Decl *Old,
2004 void MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls);
2005 bool MergeFunctionDecl(FunctionDecl *New, NamedDecl *&Old, Scope *S,
2007 bool MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDec
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2135 ComplexType *New = new (*this, TypeAlignment) ComplexType(T, Canonical); local
2136 Types.push_back(New);
2137 ComplexTypes.InsertNode(New, InsertPos);
2138 return QualType(New, 0);
2163 PointerType *New = new (*this, TypeAlignment) PointerType(T, Canonical); local
2164 Types.push_back(New);
2165 PointerTypes.InsertNode(New, InsertPos);
2166 return QualType(New, 0);
2169 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const {
2171 AdjustedType::Profile(ID, Orig, New);
2254 BlockPointerType *New local
2293 LValueReferenceType *New local
2330 RValueReferenceType *New local
2361 MemberPointerType *New local
2407 ConstantArrayType *New = new(*this,TypeAlignment) local
2565 VariableArrayType *New = new(*this, TypeAlignment) local
2703 VectorType *New = new (*this, TypeAlignment) local
2734 ExtVectorType *New = new (*this, TypeAlignment) local
2752 DependentSizedExtVectorType *New; local
2811 FunctionNoProtoType *New = new (*this, TypeAlignment) local
3791 AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical); local
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp249 void ReplaceStmt(Stmt *Old, Stmt *New) { argument
259 if (!Rewrite.ReplaceStmt(Old, New)) {
260 ReplacedNodes[Old] = New;
269 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) { argument
270 assert(Old != nullptr && New != nullptr && "Expected non-null Stmt's");
284 New->printPretty(S, nullptr, PrintingPolicy(LangOpts));
289 ReplacedNodes[Old] = New;
/external/clang/lib/Sema/
H A DSemaDecl.cpp1663 FunctionDecl *New = FunctionDecl::Create(Context, local
1669 New->setImplicit();
1677 ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
1683 New->setParams(Params);
1686 AddKnownFunctionAttributes(New);
1687 RegisterLocallyScopedExternCDecl(New, S);
1695 PushOnScopeChains(New, TUScope);
1697 return New;
1730 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { argument
1736 QualType NewType = New
1769 MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls) argument
1937 mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) argument
2119 checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) argument
2194 mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK) argument
2333 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) argument
2366 haveIncompatibleLanguageLinkages(const T *Old, const T *New) argument
2390 MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, Scope *S, bool MergeTypeWithOld) argument
2914 MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, Scope *S, bool MergeTypeWithOld) argument
2975 MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool MergeTypeWithOld) argument
3093 MergeVarDecl(VarDecl *New, LookupResult &Previous) argument
4540 NamedDecl *New; local
9520 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(), local
9640 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, local
11294 TagDecl *New; local
12902 EnumConstantDecl *New = local
13323 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, local
[all...]
H A DSemaDeclCXX.cpp417 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old, argument
441 ParmVarDecl *NewParam = New->getParamDecl(p);
451 DeclContext *ScopeDC = New->getLexicalDeclContext();
453 ScopeDC = New->getDeclContext();
455 !New->getDeclContext()->isRecord())
470 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
518 if (New->getDescribedFunctionTemplate()) {
525 } else if (New->getTemplateSpecializationKind()
527 New->getTemplateSpecializationKind() != TSK_Undeclared) {
538 << (New
626 MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) argument
1894 CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
12270 CheckOverridingFunctionAttributes(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
12295 CheckOverridingFunctionReturnType(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
[all...]
H A DSemaOverload.cpp874 // IsOverload - Determine whether the given New declaration is an
876 // New and Old cannot be overloaded, e.g., if New has the same
879 // it does return false, MatchedDecl will point to the decl that New
904 // 'NewIsUsingShadowDecl' indicates that 'New' is being introduced
909 Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old, argument
933 !New->getFriendObjectKind();
936 if (!IsOverload(New, OldF, UseMemberUsingDeclRules)) {
943 !shouldLinkPossiblyHiddenDecl(*I, New))
971 bool Sema::IsOverload(FunctionDecl *New, FunctionDec argument
[all...]
H A DTreeTransform.h396 void transformAttrs(Decl *Old, Decl *New) { } argument
405 void transformedLocalDecl(Decl *Old, Decl *New) { argument
406 TransformedLocalDecls[Old] = New;
7414 assert(D->isArrayRangeDesignator() && "New kind of designator?");
/external/chromium_org/v8/src/
H A Dobjects.cc4112 Handle<NormalizedMapCache> NormalizedMapCache::New(Isolate* isolate) { function in class:v8::internal::NormalizedMapCache
4188 NameDictionary::New(isolate, property_count);
4410 SeededNumberDictionary::New(isolate, 0);
4475 SeededNumberDictionary::New(isolate, used_elements);
4739 Handle<ObjectHashTable> hashtable = ObjectHashTable::New(
5269 new_element_dictionary = SeededNumberDictionary::New(isolate, used);
7278 CodeCacheHashTable::New(code_cache->GetIsolate(),
7534 PolymorphicCodeCacheHashTable::New(
7907 Handle<DeoptimizationInputData> DeoptimizationInputData::New( function in class:v8::internal::DeoptimizationInputData
7916 Handle<DeoptimizationOutputData> DeoptimizationOutputData::New( function in class:v8::internal::DeoptimizationOutputData
13730 Handle<Derived> HashTable<Derived, Shape, Key>::New( function in class:v8::HashTable
14872 Handle<Derived> Dictionary<Derived, Shape, Key>::New( function in class:v8::Dictionary
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 946 milliseconds

12345678