Searched defs:New (Results 126 - 143 of 143) sorted by relevance

123456

/external/clang/lib/Sema/
H A DSemaOverload.cpp847 // IsOverload - Determine whether the given New declaration is an
849 // New and Old cannot be overloaded, e.g., if New has the same
852 // it does return false, MatchedDecl will point to the decl that New
877 // 'NewIsUsingShadowDecl' indicates that 'New' is being introduced
882 Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old, argument
906 !New->getFriendObjectKind();
909 if (!IsOverload(New, OldF, UseMemberUsingDeclRules)) {
916 !shouldLinkPossiblyHiddenDecl(*I, New))
944 bool Sema::IsOverload(FunctionDecl *New, FunctionDec argument
[all...]
H A DSemaTemplate.cpp5459 static bool MatchTemplateParameterKind(Sema &S, NamedDecl *New, NamedDecl *Old, argument
5464 if (Old->getKind() != New->getKind()) {
5471 S.Diag(New->getLocation(), NextDiag)
5484 if (Old->isTemplateParameterPack() != New->isTemplateParameterPack() &&
5495 unsigned ParamKind = isa<TemplateTypeParmDecl>(New)? 0
5496 : isa<NonTypeTemplateParmDecl>(New)? 1
5498 S.Diag(New->getLocation(), NextDiag)
5499 << ParamKind << New->isParameterPack();
5510 NonTypeTemplateParmDecl *NewNTTP = cast<NonTypeTemplateParmDecl>(New);
5548 TemplateTemplateParmDecl *NewTTP = cast<TemplateTemplateParmDecl>(New);
5564 DiagnoseTemplateParameterListArityMismatch(Sema &S, TemplateParameterList *New, TemplateParameterList *Old, Sema::TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc) argument
5607 TemplateParameterListsAreEqual(TemplateParameterList *New, TemplateParameterList *Old, bool Complain, TemplateParameterListEqualKind Kind, SourceLocation TemplateArgLoc) argument
[all...]
H A DSemaDecl.cpp1747 FunctionDecl *New = FunctionDecl::Create(Context, local
1753 New->setImplicit();
1761 ParmVarDecl::Create(Context, New, SourceLocation(), SourceLocation(),
1767 New->setParams(Params);
1770 AddKnownFunctionAttributes(New);
1771 RegisterLocallyScopedExternCDecl(New, S);
1779 PushOnScopeChains(New, TUScope);
1781 return New;
1858 bool Sema::isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New) { argument
1864 QualType NewType = New
1897 MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls) argument
2087 mergeAlignedAttrs(Sema &S, NamedDecl *New, Decl *Old) argument
2279 checkNewAttributesAfterDef(Sema &S, Decl *New, const Decl *Old) argument
2354 mergeDeclAttributes(NamedDecl *New, Decl *Old, AvailabilityMergeKind AMK) argument
2493 getNoteDiagForInvalidRedeclaration(const T *Old, const T *New) argument
2526 haveIncompatibleLanguageLinkages(const T *Old, const T *New) argument
2550 MergeFunctionDecl(FunctionDecl *New, NamedDecl *&OldD, Scope *S, bool MergeTypeWithOld) argument
3075 MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDecl *Old, Scope *S, bool MergeTypeWithOld) argument
3136 MergeVarDeclTypes(VarDecl *New, VarDecl *Old, bool MergeTypeWithOld) argument
3254 MergeVarDecl(VarDecl *New, LookupResult &Previous) argument
4784 NamedDecl *New; local
9995 ParmVarDecl *New = CheckParameter(Context.getTranslationUnitDecl(), local
10115 ParmVarDecl *New = ParmVarDecl::Create(Context, DC, StartLoc, NameLoc, Name, local
11869 TagDecl *New; local
13476 EnumConstantDecl *New = local
13967 FileScopeAsmDecl *New = FileScopeAsmDecl::Create(Context, CurContext, local
[all...]
H A DTreeTransform.h417 void transformAttrs(Decl *Old, Decl *New) { } argument
426 void transformedLocalDecl(Decl *Old, Decl *New) { argument
427 TransformedLocalDecls[Old] = New;
7926 assert(D->isArrayRangeDesignator() && "New kind of designator?");
H A DSemaDeclCXX.cpp437 bool Sema::MergeCXXFunctionDecl(FunctionDecl *New, FunctionDecl *Old, argument
461 ParmVarDecl *NewParam = New->getParamDecl(p);
469 DeclContext *ScopeDC = New->isLocalExternDecl()
470 ? New->getLexicalDeclContext()
471 : New->getDeclContext();
473 !New->getDeclContext()->isRecord())
478 if (New->isLocalExternDecl() != Old->isLocalExternDecl())
494 CXXMethodDecl* MD = dyn_cast<CXXMethodDecl>(New);
541 if (New->getDescribedFunctionTemplate()) {
548 } else if (New
650 MergeVarDeclExceptionSpecs(VarDecl *New, VarDecl *Old) argument
1986 CheckIfOverriddenFunctionIsMarkedFinal(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
12871 CheckOverridingFunctionAttributes(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
12896 CheckOverridingFunctionReturnType(const CXXMethodDecl *New, const CXXMethodDecl *Old) argument
[all...]
/external/v8/src/
H A Dhydrogen.h1107 HInstruction* NewUncasted() { return I::New(zone(), context()); }
1110 I* New() { return I::New(zone(), context()); } function in class:v8::internal::HGraphBuilder
1116 I* Add() { return AddInstructionTyped(New<I>());}
1120 return I::New(zone(), context(), p1);
1124 I* New(P1 p1) { return I::New(zone(), context(), p1); } function in class:v8::internal::HGraphBuilder
1138 I* result = AddInstructionTyped(New<I>(p1));
1148 return I::New(zone(), context(), p1, p2);
1152 I* New(P function in class:v8::internal::HGraphBuilder
1180 I* New(P1 p1, P2 p2, P3 p3) { function in class:v8::internal::HGraphBuilder
1200 I* New(P1 p1, P2 p2, P3 p3, P4 p4) { function in class:v8::internal::HGraphBuilder
1220 I* New(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) { function in class:v8::internal::HGraphBuilder
1240 I* New(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6) { function in class:v8::internal::HGraphBuilder
1262 I* New(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7) { function in class:v8::internal::HGraphBuilder
1287 I* New(P1 p1, P2 p2, P3 p3, P4 p4, P5 p5, P6 p6, P7 p7, P8 p8) { function in class:v8::internal::HGraphBuilder
2035 inline HContext* HGraphBuilder::New<HContext>() { function in class:v8::internal::HGraphBuilder
[all...]
H A Dapi.cc495 LOG_API(isolate, "Persistent::New");
813 v8::Integer::New(v8_isolate, attribute)};
837 v8::Integer::New(v8_isolate, attribute)};
857 result = Utils::OpenHandle(*ObjectTemplate::New(isolate));
904 Local<FunctionTemplate> FunctionTemplate::New( function in class:v8::FunctionTemplate
911 LOG_API(i_isolate, "FunctionTemplate::New");
918 Local<Signature> Signature::New(Isolate* isolate, function in class:v8::Signature
922 LOG_API(i_isolate, "Signature::New");
941 Local<AccessorSignature> AccessorSignature::New( function in class:v8::AccessorSignature
1064 Local<TypeSwitch> TypeSwitch::New(Handl function in class:v8::TypeSwitch
1070 Local<TypeSwitch> TypeSwitch::New(int argc, Handle<FunctionTemplate> types[]) { function in class:v8::TypeSwitch
1239 Local<ObjectTemplate> ObjectTemplate::New(Isolate* isolate) { function in class:v8::ObjectTemplate
1244 Local<ObjectTemplate> ObjectTemplate::New() { function in class:v8::ObjectTemplate
1249 Local<ObjectTemplate> ObjectTemplate::New( function in class:v8::ObjectTemplate
4052 Local<Function> Function::New(Isolate* v8_isolate, function in class:v8::Function
5204 Local<Context> v8::Context::New( function in class:v8::v8::Context
5337 Local<External> v8::External::New(Isolate* isolate, void* value) { function in class:v8::v8::External
5596 Local<v8::Object> v8::Object::New(Isolate* isolate) { function in class:v8::v8::Object
5606 Local<v8::Value> v8::NumberObject::New(Isolate* isolate, double value) { function in class:v8::v8::NumberObject
5626 Local<v8::Value> v8::BooleanObject::New(bool value) { function in class:v8::v8::BooleanObject
5649 Local<v8::Value> v8::StringObject::New(Handle<String> value) { function in class:v8::v8::StringObject
5670 Local<v8::Value> v8::SymbolObject::New(Isolate* isolate, Handle<Symbol> value) { function in class:v8::v8::SymbolObject
5690 Local<v8::Value> v8::Date::New(Isolate* isolate, double time) { function in class:v8::v8::Date
5754 Local<v8::RegExp> v8::RegExp::New(Handle<String> pattern, function in class:v8::v8::RegExp
5791 Local<v8::Array> v8::Array::New(Isolate* isolate, int length) { function in class:v8::v8::Array
5859 Local<Promise::Resolver> Promise::Resolver::New(Isolate* v8_isolate) { function in class:v8::Promise::Resolver
6010 Local<ArrayBuffer> v8::ArrayBuffer::New(Isolate* isolate, size_t byte_length) { function in class:v8::v8::ArrayBuffer
6021 Local<ArrayBuffer> v8::ArrayBuffer::New(Isolate* isolate, void* data, function in class:v8::v8::ArrayBuffer
6145 Local<DataView> DataView::New(Handle<ArrayBuffer> array_buffer, function in class:v8::DataView
6158 Local<Symbol> v8::Symbol::New(Isolate* isolate, Local<String> name) { function in class:v8::v8::Symbol
6222 Local<Private> v8::Private::New(Isolate* isolate, Local<String> name) { function in class:v8::v8::Private
6254 Local<Number> v8::Number::New(Isolate* isolate, double value) { function in class:v8::v8::Number
6267 Local<Integer> v8::Integer::New(Isolate* isolate, int32_t value) { function in class:v8::v8::Integer
6569 Isolate* Isolate::New(const Isolate::CreateParams& params) { function in class:v8::Isolate
[all...]
H A Dhydrogen-instructions.h958 static I* New(Zone* zone, HValue* context) { \
963 static I* New(Zone* zone, HValue* context, P1 p1) { \
968 static I* New(Zone* zone, HValue* context, P1 p1, P2 p2) { \
973 static I* New(Zone* zone, HValue* context, P1 p1, P2 p2, P3 p3) { \
978 static I* New(Zone* zone, \
988 static I* New(Zone* zone, \
999 static I* New(Zone* zone, \
1011 static I* New(Zone* zone, HValue* context) { \
1016 static I* New(Zone* zone, HValue* context, P1 p1) { \
1021 static I* New(Zon
1393 static HDeoptimize* New(Zone* zone, function in class:v8::FINAL
1537 static HContext* New(Zone* zone) { function in class:v8::FINAL
2004 static HEnterInlined* New(Zone* zone, HValue* context, BailoutId return_id, function in class:v8::FINAL
2093 static HPushArguments* New(Zone* zone, HValue* context) { function in class:v8::FINAL
2096 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1) { function in class:v8::FINAL
2101 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, function in class:v8::FINAL
2108 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, function in class:v8::FINAL
2116 static HPushArguments* New(Zone* zone, HValue* context, HValue* arg1, function in class:v8::FINAL
2323 static HCallWithDescriptor* New(Zone* zone, HValue* context, HValue* target, function in class:v8::FINAL
2422 static HInvokeFunction* New(Zone* zone, function in class:v8::FINAL::FINAL
2729 static HCheckMaps* New(Zone* zone, HValue* context, HValue* value, function in class:v8::FINAL::FINAL
2734 static HCheckMaps* New(Zone* zone, HValue* context, function in class:v8::FINAL::FINAL
2848 static HCheckValue* New(Zone* zone, HValue* context, function in class:v8::FINAL::FINAL
2859 static HCheckValue* New(Zone* zone, HValue* context, function in class:v8::FINAL::FINAL
3411 static HArgumentsObject* New(Zone* zone, HValue* context, int count) { function in class:v8::FINAL::FINAL
5242 static HInstruction* New(Zone* zone, function in class:v8::FINAL::FINAL
5522 static HAllocate* New(Zone* zone, function in class:v8::FINAL::FINAL
5704 static HStoreCodeEntry* New(Zone* zone, function in class:v8::FINAL::FINAL
5730 static HInnerAllocatedObject* New(Zone* zone, function in class:v8::FINAL::FINAL
7204 inline static HTransitionElementsKind* New(Zone* zone, function in class:v8::FINAL::FINAL
[all...]
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/clang/include/clang/AST/
H A DType.h2070 static void Profile(llvm::FoldingSetNodeID &ID, QualType Orig, QualType New) { argument
2072 ID.AddPointer(New.getAsOpaquePtr());
/external/clang/include/clang/Sema/
H A DSema.h226 shouldLinkPossiblyHiddenDecl(const NamedDecl *Old, const NamedDecl *New) { argument
233 return !Old->isHidden() || New->isExternallyVisible();
1201 bool CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New);
1204 const FunctionProtoType *New, SourceLocation NewLoc);
1208 const FunctionProtoType *New, SourceLocation NewLoc,
1916 bool isIncompatibleTypedef(TypeDecl *Old, TypedefNameDecl *New);
1968 void mergeDeclAttributes(NamedDecl *New, Decl *Old,
1970 void MergeTypedefNameDecl(TypedefNameDecl *New, LookupResult &OldDecls);
1971 bool MergeFunctionDecl(FunctionDecl *New, NamedDecl *&Old, Scope *S,
1973 bool MergeCompatibleFunctionDecls(FunctionDecl *New, FunctionDec
[all...]
/external/clang/lib/AST/
H A DASTContext.cpp2215 ComplexType *New = new (*this, TypeAlignment) ComplexType(T, Canonical); local
2216 Types.push_back(New);
2217 ComplexTypes.InsertNode(New, InsertPos);
2218 return QualType(New, 0);
2243 PointerType *New = new (*this, TypeAlignment) PointerType(T, Canonical); local
2244 Types.push_back(New);
2245 PointerTypes.InsertNode(New, InsertPos);
2246 return QualType(New, 0);
2249 QualType ASTContext::getAdjustedType(QualType Orig, QualType New) const {
2251 AdjustedType::Profile(ID, Orig, New);
2334 BlockPointerType *New local
2373 LValueReferenceType *New local
2410 RValueReferenceType *New local
2441 MemberPointerType *New local
2487 ConstantArrayType *New = new(*this,TypeAlignment) local
2645 VariableArrayType *New = new(*this, TypeAlignment) local
2783 VectorType *New = new (*this, TypeAlignment) local
2814 ExtVectorType *New = new (*this, TypeAlignment) local
2832 DependentSizedExtVectorType *New; local
2891 FunctionNoProtoType *New = new (*this, TypeAlignment) local
3869 AtomicType *New = new (*this, TypeAlignment) AtomicType(T, Canonical); local
[all...]
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp251 void ReplaceStmt(Stmt *Old, Stmt *New) { argument
252 ReplaceStmtWithRange(Old, New, Old->getSourceRange());
255 void ReplaceStmtWithRange(Stmt *Old, Stmt *New, SourceRange SrcRange) { argument
256 assert(Old != nullptr && New != nullptr && "Expected non-null Stmt's");
275 New->printPretty(S, nullptr, PrintingPolicy(LangOpts));
280 ReplacedNodes[Old] = New;
/external/v8/include/
H A Dv8.h290 V8_INLINE static Handle<T> New(Isolate* isolate, Handle<T> that) { function in class:v8::Handle
291 return New(isolate, that.val_);
293 V8_INLINE static Handle<T> New(Isolate* isolate, function in class:v8::Handle
295 return New(isolate, that.val_);
321 V8_INLINE static Handle<T> New(Isolate* isolate, T* that);
370 V8_INLINE static Local<T> New(Isolate* isolate, Handle<T> that);
371 V8_INLINE static Local<T> New(Isolate* isolate,
393 V8_INLINE static Local<T> New(Isolate* isolate, T* that);
574 V8_INLINE static T* New(Isolate* isolate, T* that);
639 : PersistentBase<T>(PersistentBase<T>::New(isolat
5963 Local<T> Local<T>::New(Isolate* isolate, Handle<T> that) { function in class:v8::Local
5968 Local<T> Local<T>::New(Isolate* isolate, const PersistentBase<T>& that) { function in class:v8::Local
5973 Handle<T> Handle<T>::New(Isolate* isolate, T* that) { function in class:v8::Handle
5983 Local<T> Local<T>::New(Isolate* isolate, T* that) { function in class:v8::Local
6007 T* PersistentBase<T>::New(Isolate* isolate, T* that) { function in class:v8::PersistentBase
6392 Handle<Boolean> Boolean::New(Isolate* isolate, bool value) { function in class:v8::Boolean
[all...]
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp12609 SDValue New = DAG.getNode(ISD::AND, dl, VT, Op->getOperand(0), local
12611 DAG.ReplaceAllUsesWith(Op, New);
12612 Op = New;
12701 SDValue New = DAG.getNode(Opcode, dl, VTs, Ops); local
12702 DAG.ReplaceAllUsesWith(Op, New);
12703 return SDValue(New.getNode(), 1);
21300 TLO.New, N->getOperand(1), N->getOperand(2)));
/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 866 milliseconds

123456