HomeSort by relevance Sort by last modified time
    Searched refs:Previous (Results 1 - 25 of 35) sorted by null

1 2

  /external/llvm/include/llvm/ADT/
edit_distance.h 61 unsigned *Previous = SmallBuffer;
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/
FrontendAction.cpp 35 ASTDeserializationListener *Previous;
39 ASTDeserializationListener *Previous)
40 : Previous(Previous) { }
43 if (Previous)
44 Previous->ReaderInitialized(Reader);
48 if (Previous)
49 Previous->IdentifierRead(ID, II);
52 if (Previous)
53 Previous->TypeRead(Idx, T)
    [all...]
  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 65 MapItem* Previous(MapItem* item) const;
list_wrapper.h 77 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);
355 // Reverse the list using PushBack and Previous.
357 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/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaTemplateInstantiateDecl.cpp 306 // FIXME: In theory, we could have a previous declaration for variables that
309 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
312 SemaRef.LookupQualifiedName(Previous, Owner, false);
319 SemaRef.CheckVariableDeclaration(Var, Previous);
754 // Look for a previous declaration of the template in the owning
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.h 87 unsigned Previous;
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 145 NodeSubset Previous(Reachable);
149 if (Previous.count(i))
153 if (Reachable == Previous)
  /build/tools/droiddoc/templates-sdk/
docpage.cs 19 <?cs if:(design||training||walkthru) ?><?cs # header logic for docs that provide previous/next buttons ?>
30 <a href="#" class="prev-page-link hide">Previous</a>
37 <a href="#" class="prev-page-link hide">Previous</a>
88 <a href="#" class="prev-page-link hide">Previous</a>
  /external/clang/include/clang/AST/
DeclContextInternals.h 207 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;

Completed in 295 milliseconds

1 2