HomeSort by relevance Sort by last modified time
    Searched defs:Previous (Results 1 - 15 of 15) sorted by null

  /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/webrtc/src/system_wrappers/source/
map.cc 112 MapItem* MapWrapper::Previous(MapItem* item) const
list_no_stl.cc 140 ListItem* ListWrapper::Previous(ListItem* item) const
list_stl.cc 163 ListItem* ListWrapper::Previous(ListItem* 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)) {
  /external/clang/include/clang/AST/
DeclContextInternals.h 223 llvm::PointerIntPair<StoredDeclsMap*, 1> Previous;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfException.h 66 unsigned Previous;
  /external/clang/lib/Frontend/
FrontendAction.cpp 38 ASTDeserializationListener *Previous;
42 ASTDeserializationListener *Previous)
43 : Previous(Previous) { }
46 if (Previous)
47 Previous->ReaderInitialized(Reader);
51 if (Previous)
52 Previous->IdentifierRead(ID, II);
55 if (Previous)
56 Previous->TypeRead(Idx, T)
    [all...]
  /external/libnfc-nxp/src/
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/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...]
  /external/clang/lib/Format/
FormatToken.h 87 PartOfMultiVariableDeclStmt(false), MatchingParen(NULL), Previous(NULL),
276 /// \brief Returns the previous token ignoring comments.
278 FormatToken *Tok = Previous;
280 Tok = Tok->Previous;
294 FormatToken *Previous;
Format.cpp 577 const FormatToken &Previous = *State.NextToken->Previous;
621 } else if (Previous.is(tok::comma) &&
624 } else if (Previous.ClosesTemplateDeclaration ||
645 Previous.isOneOf(tok::coloncolon, tok::equal) ||
646 Previous.Type == TT_ObjCMethodExpr) {
658 if ((Previous.isOneOf(tok::comma, tok::semi) &&
660 Previous.Type == TT_BinaryOperator)
662 if (Previous.Type == TT_TemplateCloser && State.ParenLevel == 0)
695 if (Previous.is(tok::l_brace)
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 466 // A previous decl with a different name is because of
537 // The previous declaration was not a class decl. Check if we have a
604 // Look for previous declaration of alias name
691 // Create a new protocol that is completely distinct from previous
721 // Merge attributes from previous declarations.
787 return; // Possibly due to previous error
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 558 IterateChildren takes the previous child as input and finds
559 the next one. If the previous child is null, it returns the
562 const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const;
563 TiXmlNode* IterateChildren( const TiXmlNode* previous ) {
564 return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( previous ) );
568 const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const;
569 TiXmlNode* IterateChildren( const char * _value, const TiXmlNode* previous ) {
570 return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( _value, previous ) );
574 const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form
    [all...]

Completed in 665 milliseconds