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

  /external/chromium_org/components/bookmarks/browser/
bookmark_client.h 37 typedef std::pair<const BookmarkNode*, int> NodeTypedCountPair;
38 typedef std::vector<NodeTypedCountPair> NodeTypedCountPairs;
bookmark_index.cc 24 typedef BookmarkClient::NodeTypedCountPair NodeTypedCountPair;
48 : std::binary_function<NodeTypedCountPair, NodeTypedCountPair, bool> {
49 bool operator()(const NodeTypedCountPair& a,
50 const NodeTypedCountPair& b) const {
55 // Extract the const Node* stored in a BookmarkClient::NodeTypedCountPair.
57 : std::unary_function<NodeTypedCountPair, const BookmarkNode*> {
58 const BookmarkNode* operator()(const NodeTypedCountPair& pair) const {

Completed in 41 milliseconds