Searched refs:Previous (Results 1 - 25 of 29) sorted by relevance

12

/external/clang/lib/Frontend/
H A DFrontendAction.cpp35 ASTDeserializationListener *Previous; member in class:__anon2887::DeserializedDeclsDumper
38 DeserializedDeclsDumper(ASTDeserializationListener *Previous) argument
39 : Previous(Previous) { }
47 if (Previous)
48 Previous->DeclRead(ID, D);
57 ASTDeserializationListener *Previous; member in class:__anon2887::DeserializedDeclsChecker
62 ASTDeserializationListener *Previous)
63 : Ctx(Ctx), NamesToCheck(NamesToCheck), Previous(Previous) { }
60 DeserializedDeclsChecker(ASTContext &Ctx, const std::set<std::string> &NamesToCheck, ASTDeserializationListener *Previous) argument
[all...]
/external/libnfc-nxp/src/
H A DphFriNfc_NdefReg.c133 NdefCb->Previous =NULL;
142 NdefCb->Previous = NULL;
143 NdefReg->NdefTypeList->Previous = NdefCb;
144 NdefReg->NdefTypeList = NdefReg->NdefTypeList->Previous;
191 if(tempNode->Previous==NULL && tempNode->Next!=NULL)
194 NdefReg->NdefTypeList->Previous = NULL;
198 if(tempNode->Next==NULL && tempNode->Previous==NULL)
203 if (tempNode->Previous != NULL)
205 tempNode->Previous->Next = tempNode->Next;
209 tempNode->Next->Previous
[all...]
H A DphFriNfc_NdefReg.h218 struct phFriNfc_NdefReg_Cb *Previous; member in struct:phFriNfc_NdefReg_Cb
/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h66 MapItem* Previous(MapItem* item) const;
H A Dlist_wrapper.h78 ListItem* Previous(ListItem* item) const;
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h55 ListItem* Previous(ListItem* item) const;
H A Dmap_no_stl.h55 MapNoStlItem* Previous(MapNoStlItem* item) const;
H A Dlist_no_stl.h59 ListNoStlItem* Previous(ListNoStlItem* item) const;
H A Dmap.cc112 MapItem* MapWrapper::Previous(MapItem* item) const function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc136 MapNoStlItem* MapNoStl::Previous(MapNoStlItem* item) const function in class:webrtc::MapNoStl
H A Dlist_unittest.cc62 ListItem* Previous(ListItem* item) const { function in class:ListWrapperSimple
63 return list_.Previous(item);
338 // Reverse the list using PushBack and Previous.
340 item = ascending_list->Previous(item)) {
H A Dlist_no_stl.cc140 ListItem* ListWrapper::Previous(ListItem* item) const function in class:webrtc::ListWrapper
H A Dlist_stl.cc163 ListItem* ListWrapper::Previous(ListItem* item) const function in class:webrtc::ListWrapper
H A Dmap_unittest.cc120 item = print_map.Previous(item);
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc115 // Test Previous
116 ListItem* second_to_last_item = test_list.Previous(last_item);
118 FailTest(test_list.Previous(first_item) != NULL);
119 FailTest(test_list.Previous(NULL) != NULL);
162 FailTest(test_list.Previous(NULL) != NULL);
/external/webrtc/src/system_wrappers/test/map/
H A Dmap.cc93 // Test Previous
94 MapItem* second_to_last_item = test_map.Previous(last_item);
97 FailTest(test_map.Previous(first_item) != NULL);
/external/clang/lib/Sema/
H A DSemaDecl.cpp865 static bool AllowOverloadingOfFunction(LookupResult &Previous, argument
870 if (Previous.getResultKind() == LookupResult::FoundOverloaded)
873 return (Previous.getResultKind() == LookupResult::Found
874 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>());
2145 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) { argument
2152 if (!Previous.isSingleResult() ||
2153 !(Old = dyn_cast<VarDecl>(Previous.getFoundDecl()))) {
2156 Diag(Previous.getRepresentativeDecl()->getLocation(),
3257 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
3280 Previous
3460 RegisterLocallyScopedExternCDecl(NamedDecl *ND, const LookupResult &Previous, Scope *S) argument
3533 ActOnTypedefDeclarator(Scope* S, Declarator& D, DeclContext* DC, TypeSourceInfo *TInfo, LookupResult &Previous) argument
3617 ActOnTypedefNameDecl(Scope *S, DeclContext *DC, TypedefNameDecl *NewTD, LookupResult &Previous, bool &Redeclaration) argument
3754 ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo, LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists) argument
4172 CheckVariableDeclaration(VarDecl *NewVD, LookupResult &Previous) argument
4391 DiagnoseInvalidRedeclaration( Sema &SemaRef, LookupResult &Previous, FunctionDecl *NewFD, ActOnFDArgs &ExtraArgs) argument
4710 ActOnFunctionDeclarator(Scope *S, Declarator &D, DeclContext *DC, TypeSourceInfo *TInfo, LookupResult &Previous, MultiTemplateParamsArg TemplateParamLists, bool &AddToScope) argument
5441 CheckFunctionDeclaration(Scope *S, FunctionDecl *NewFD, LookupResult &Previous, bool IsExplicitSpecialization) argument
7406 isAcceptableTagRedeclaration(const TagDecl *Previous, TagTypeKind NewTag, bool isDefinition, SourceLocation NewTagLoc, const IdentifierInfo &Name) argument
[all...]
H A DSemaTemplate.cpp837 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName,
858 LookupQualifiedName(Previous, SemanticContext);
861 LookupName(Previous, S);
864 if (Previous.isAmbiguous())
868 if (Previous.begin() != Previous.end())
869 PrevDecl = (*Previous.begin())->getUnderlyingDecl();
5403 LookupResult &Previous) {
5404 // Remove anything from Previous that isn't a function template in
5407 LookupResult::Filter F = Previous
5401 CheckDependentFunctionTemplateSpecialization(FunctionDecl *FD, const TemplateArgumentListInfo &ExplicitTemplateArgs, LookupResult &Previous) argument
5444 CheckFunctionTemplateSpecialization(FunctionDecl *FD, TemplateArgumentListInfo *ExplicitTemplateArgs, LookupResult &Previous) argument
5584 CheckMemberSpecialization(NamedDecl *Member, LookupResult &Previous) argument
[all...]
H A DSemaTemplateInstantiateDecl.cpp350 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
353 SemaRef.LookupQualifiedName(Previous, Owner, false);
354 SemaRef.CheckVariableDeclaration(Var, Previous);
1164 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1188 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1193 Previous))
1202 SemaRef.LookupQualifiedName(Previous, DC);
1208 if (Previous.isSingleTagDecl())
1209 Previous.clear();
1212 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
[all...]
H A DSemaDeclCXX.cpp5873 const LookupResult &Previous) {
5921 if (Previous.empty()) return false;
5933 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5951 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
6101 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
6103 Previous.setHideTags(false);
6105 LookupName(Previous, S);
6108 LookupResult::Filter F = Previous.makeFilter();
6118 LookupQualifiedName(Previous, CurContex
5872 CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, const LookupResult &Previous) argument
[all...]
/external/llvm/unittests/ADT/
H A DSCCIteratorTest.cpp145 NodeSubset Previous(Reachable);
149 if (Previous.count(i))
153 if (Reachable == Previous)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.h87 unsigned Previous; member in struct:llvm::DwarfException::ActionEntry
/external/clang/include/clang/AST/
H A DDeclContextInternals.h207 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous; member in class:clang::StoredDeclsMap
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp174 struct ActionEntry *Previous;
264 PrevAction = PrevAction->Previous;
/external/tinyxml/
H A Dtinyxml.cpp1180 const TiXmlAttribute* TiXmlAttribute::Previous() const function in class:TiXmlAttribute
1189 TiXmlAttribute* TiXmlAttribute::Previous() function in class:TiXmlAttribute

Completed in 766 milliseconds

12