/external/clang/lib/Frontend/ |
FrontendAction.cpp | 34 ASTDeserializationListener *Previous; 37 DeserializedDeclsDumper(ASTDeserializationListener *Previous) 38 : Previous(Previous) { } 46 if (Previous) 47 Previous->DeclRead(ID, D); 56 ASTDeserializationListener *Previous; 61 ASTDeserializationListener *Previous) 62 : Ctx(Ctx), NamesToCheck(NamesToCheck), Previous(Previous) { } [all...] |
/external/webrtc/src/system_wrappers/interface/ |
map_wrapper.h | 66 MapItem* Previous(MapItem* item) const;
|
list_wrapper.h | 78 ListItem* Previous(ListItem* item) const;
|
/external/libnfc-nxp/src/ |
phFriNfc_NdefReg.c | 133 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 = tempNode->Previous [all...] |
phFriNfc_NdefReg.h | 215 * This member is required by the library to link to the previous registered item. In case of the 218 struct phFriNfc_NdefReg_Cb *Previous;
|
/external/webrtc/src/system_wrappers/source/ |
list_no_stl.h | 59 ListNoStlItem* Previous(ListNoStlItem* item) const;
|
list_stl.h | 55 ListItem* Previous(ListItem* item) const;
|
map_no_stl.h | 55 MapNoStlItem* Previous(MapNoStlItem* item) const;
|
map.cc | 112 MapItem* MapWrapper::Previous(MapItem* item) const
|
map_no_stl.cc | 136 MapNoStlItem* MapNoStl::Previous(MapNoStlItem* item) const
|
list_unittest.cc | 62 ListItem* Previous(ListItem* item) const { 63 return list_.Previous(item); 338 // Reverse the list using PushBack and Previous. 340 item = ascending_list->Previous(item)) {
|
list_no_stl.cc | 140 ListItem* ListWrapper::Previous(ListItem* item) const
|
list_stl.cc | 163 ListItem* ListWrapper::Previous(ListItem* item) const
|
map_unittest.cc | 120 item = print_map.Previous(item);
|
/frameworks/base/tests/backup/ |
test_restore.sh | 52 echo --- Previous files 55 echo --- Previous shared_prefs
|
/external/webrtc/src/system_wrappers/test/map/ |
map.cc | 93 // Test Previous 94 MapItem* second_to_last_item = test_map.Previous(last_item); 97 FailTest(test_map.Previous(first_item) != NULL);
|
/external/webrtc/src/system_wrappers/test/list/ |
list.cc | 61 // Fake a previous value for the first iteration 115 // 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/llvm/lib/CodeGen/AsmPrinter/ |
DwarfException.h | 87 unsigned Previous;
|
/external/clang/lib/Sema/ |
SemaDecl.cpp | 813 /// extension, in C when the previous function is already an 816 static bool AllowOverloadingOfFunction(LookupResult &Previous, 821 if (Previous.getResultKind() == LookupResult::FoundOverloaded) 824 return (Previous.getResultKind() == LookupResult::Found 825 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>()); [all...] |
SemaTemplate.cpp | [all...] |
SemaTemplateInstantiateDecl.cpp | 349 // FIXME: In theory, we could have a previous declaration for variables that 353 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(), 356 SemaRef.LookupQualifiedName(Previous, Owner, false); 357 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration); 761 // Look for a previous declaration of the template in the owning [all...] |
SemaDeclCXX.cpp | 374 // arguments supplied in this or previous declarations. A 570 // have default arguments supplied in this or previous [all...] |
/external/clang/include/clang/AST/ |
DeclContextInternals.h | 207 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JITDwarfEmitter.cpp | 174 struct ActionEntry *Previous; 264 PrevAction = PrevAction->Previous; 287 } // else identical - re-use previous FirstAction 337 // If some instruction between the previous try-range and this one may 352 // Try to merge with the previous call-site. 356 // Extend the range of the previous entry. 366 // If some instruction between the previous try-range and the end of the
|
/external/tinyxml/ |
tinyxml.cpp | 368 const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const 370 if ( !previous ) 376 assert( previous->parent == this ); 377 return previous->NextSibling(); 381 TiXmlNode* TiXmlNode::IterateChildren( TiXmlNode* previous ) 383 if ( !previous ) 389 assert( previous->parent == this ); 390 return previous->NextSibling(); 394 const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const 396 if ( !previous ) [all...] |