/external/llvm/include/llvm/ADT/ |
D | edit_distance.h | 61 unsigned *Previous = SmallBuffer; variable 63 Previous = new unsigned [2*(n+1)]; 64 Allocated.reset(Previous); 66 unsigned *Current = Previous + (n + 1); 69 Previous[i] = i; 78 Previous[x-1] + (FromArray[y-1] == ToArray[x-1] ? 0u : 1u), 79 std::min(Current[x-1], Previous[x])+1); 82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1]; 83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1; 92 Current = Previous; [all …]
|
/external/clang/lib/Frontend/ |
D | FrontendAction.cpp | 35 ASTDeserializationListener *Previous; member in __anonfcb9792d0111::DelegatingDeserializationListener 39 ASTDeserializationListener *Previous) in DelegatingDeserializationListener() argument 40 : Previous(Previous) { } in DelegatingDeserializationListener() 43 if (Previous) in ReaderInitialized() 44 Previous->ReaderInitialized(Reader); in ReaderInitialized() 48 if (Previous) in IdentifierRead() 49 Previous->IdentifierRead(ID, II); in IdentifierRead() 52 if (Previous) in TypeRead() 53 Previous->TypeRead(Idx, T); in TypeRead() 56 if (Previous) in DeclRead() [all …]
|
/external/libnfc-nxp/src/ |
D | phFriNfc_NdefReg.c | 133 NdefCb->Previous =NULL; in phFriNfc_NdefReg_AddCb() 142 NdefCb->Previous = NULL; in phFriNfc_NdefReg_AddCb() 143 NdefReg->NdefTypeList->Previous = NdefCb; in phFriNfc_NdefReg_AddCb() 144 NdefReg->NdefTypeList = NdefReg->NdefTypeList->Previous; in phFriNfc_NdefReg_AddCb() 191 if(tempNode->Previous==NULL && tempNode->Next!=NULL) in phFriNfc_NdefReg_RmCb() 194 NdefReg->NdefTypeList->Previous = NULL; in phFriNfc_NdefReg_RmCb() 198 if(tempNode->Next==NULL && tempNode->Previous==NULL) in phFriNfc_NdefReg_RmCb() 203 if (tempNode->Previous != NULL) in phFriNfc_NdefReg_RmCb() 205 tempNode->Previous->Next = tempNode->Next; in phFriNfc_NdefReg_RmCb() 209 tempNode->Next->Previous = tempNode->Previous; in phFriNfc_NdefReg_RmCb() [all …]
|
D | phFriNfc_NdefReg.h | 218 struct phFriNfc_NdefReg_Cb *Previous; member
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 911 static bool AllowOverloadingOfFunction(LookupResult &Previous, in AllowOverloadingOfFunction() argument 916 if (Previous.getResultKind() == LookupResult::FoundOverloaded) in AllowOverloadingOfFunction() 919 return (Previous.getResultKind() == LookupResult::Found in AllowOverloadingOfFunction() 920 && Previous.getFoundDecl()->hasAttr<OverloadableAttr>()); in AllowOverloadingOfFunction() 2229 void Sema::MergeVarDecl(VarDecl *New, LookupResult &Previous) { in MergeVarDecl() argument 2236 if (!Previous.isSingleResult() || in MergeVarDecl() 2237 !(Old = dyn_cast<VarDecl>(Previous.getFoundDecl()))) { in MergeVarDecl() 2240 Diag(Previous.getRepresentativeDecl()->getLocation(), in MergeVarDecl() 3437 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, in HandleDeclarator() local 3460 Previous.clear(LookupRedeclarationWithLinkage); in HandleDeclarator() [all …]
|
D | SemaTemplate.cpp | 870 LookupResult Previous(*this, Name, NameLoc, LookupOrdinaryName, in CheckClassTemplate() local 897 LookupQualifiedName(Previous, SemanticContext); in CheckClassTemplate() 900 LookupName(Previous, S); in CheckClassTemplate() 903 if (Previous.isAmbiguous()) in CheckClassTemplate() 907 if (Previous.begin() != Previous.end()) in CheckClassTemplate() 908 PrevDecl = (*Previous.begin())->getUnderlyingDecl(); in CheckClassTemplate() 5732 LookupResult &Previous) { in CheckDependentFunctionTemplateSpecialization() argument 5736 LookupResult::Filter F = Previous.makeFilter(); in CheckDependentFunctionTemplateSpecialization() 5747 if (Previous.empty()) return true; in CheckDependentFunctionTemplateSpecialization() 5749 FD->setDependentTemplateSpecialization(Context, Previous.asUnresolvedSet(), in CheckDependentFunctionTemplateSpecialization() [all …]
|
D | SemaTemplateInstantiateDecl.cpp | 309 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(), in VisitVarDecl() local 312 SemaRef.LookupQualifiedName(Previous, Owner, false); in VisitVarDecl() 319 SemaRef.CheckVariableDeclaration(Var, Previous); in VisitVarDecl() 1167 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(), in VisitFunctionDecl() local 1191 Previous.addDecl(cast<FunctionTemplateDecl>(Temp)); in VisitFunctionDecl() 1196 Previous)) in VisitFunctionDecl() 1205 SemaRef.LookupQualifiedName(Previous, DC); in VisitFunctionDecl() 1211 if (Previous.isSingleTagDecl()) in VisitFunctionDecl() 1212 Previous.clear(); in VisitFunctionDecl() 1215 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous, in VisitFunctionDecl() [all …]
|
D | SemaDeclCXX.cpp | 6005 const LookupResult &Previous) { in CheckUsingShadowDecl() argument 6053 if (Previous.empty()) return false; in CheckUsingShadowDecl() 6065 for (LookupResult::iterator I = Previous.begin(), E = Previous.end(); in CheckUsingShadowDecl() 6083 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) { in CheckUsingShadowDecl() 6233 LookupResult Previous(*this, NameInfo, LookupUsingDeclName, in BuildUsingDeclaration() local 6235 Previous.setHideTags(false); in BuildUsingDeclaration() 6237 LookupName(Previous, S); in BuildUsingDeclaration() 6240 LookupResult::Filter F = Previous.makeFilter(); in BuildUsingDeclaration() 6250 LookupQualifiedName(Previous, CurContext); in BuildUsingDeclaration() 6254 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous)) in BuildUsingDeclaration() [all …]
|
/external/webrtc/src/system_wrappers/test/list/ |
D | list.cc | 116 ListItem* second_to_last_item = test_list.Previous(last_item); in main() 118 FailTest(test_list.Previous(first_item) != NULL); in main() 119 FailTest(test_list.Previous(NULL) != NULL); in main() 162 FailTest(test_list.Previous(NULL) != NULL); in main()
|
/external/webrtc/src/system_wrappers/test/map/ |
D | map.cc | 94 MapItem* second_to_last_item = test_map.Previous(last_item); in main() 97 FailTest(test_map.Previous(first_item) != NULL); in main()
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 99 Top | Contents | Next | Previous 105 Top | Contents | Next | Previous 119 Top | Contents | Next | Previous 142 Top | Contents | Next | Previous 148 Top | Contents | Next | Previous 157 Top | Contents | Next | Previous 161 Top | Contents | Next | Previous 165 Top | Contents | Next | Previous 169 Top | Contents | Next | Previous 180 Top | Contents | Next | Previous [all …]
|
/external/llvm/unittests/ADT/ |
D | SCCIteratorTest.cpp | 145 NodeSubset Previous(Reachable); in NodesReachableFrom() local 149 if (Previous.count(i)) in NodesReachableFrom() 153 if (Reachable == Previous) in NodesReachableFrom()
|
/external/webrtc/src/system_wrappers/interface/ |
D | map_wrapper.h | 65 MapItem* Previous(MapItem* item) const;
|
D | list_wrapper.h | 77 ListItem* Previous(ListItem* item) const;
|
/external/webrtc/src/system_wrappers/source/ |
D | list_stl.h | 55 ListItem* Previous(ListItem* item) const;
|
D | map_no_stl.h | 55 MapNoStlItem* Previous(MapNoStlItem* item) const;
|
D | list_no_stl.h | 59 ListNoStlItem* Previous(ListNoStlItem* item) const;
|
D | list_unittest.cc | 62 ListItem* Previous(ListItem* item) const { in Previous() function in ListWrapperSimple 63 return list_.Previous(item); in Previous() 357 item = ascending_list->Previous(item)) { in TEST()
|
D | map.cc | 112 MapItem* MapWrapper::Previous(MapItem* item) const in Previous() function in webrtc::MapWrapper
|
D | map_no_stl.cc | 136 MapNoStlItem* MapNoStl::Previous(MapNoStlItem* item) const in Previous() function in webrtc::MapNoStl
|
D | list_stl.cc | 163 ListItem* ListWrapper::Previous(ListItem* item) const in Previous() function in webrtc::ListWrapper
|
D | list_no_stl.cc | 140 ListItem* ListWrapper::Previous(ListItem* item) const in Previous() function in webrtc::ListWrapper
|
D | map_unittest.cc | 120 item = print_map.Previous(item); in ReversePrintMap()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfException.h | 87 unsigned Previous; member
|
/external/clang/include/clang/AST/ |
D | DeclContextInternals.h | 207 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous; variable
|