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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/autocomplete/
history_url_provider.h 18 namespace history { namespace
24 } // namespace history
26 // How history autocomplete works
31 // Main thread History thread
57 // quickly and hit enter, no matter how loaded the main history database is.
64 // The second autocomplete pass uses the full history database, which must be
65 // queried on the history thread. Start() asks the history service schedule to
66 // callback on the history thread with a pointer to the main database. When we
81 // on the history thread, because we should only do that when we can safel
    [all...]
history_quick_provider.h 13 #include "chrome/browser/history/history_types.h"
14 #include "chrome/browser/history/in_memory_url_index.h"
19 namespace history { namespace
21 } // namespace history
24 // the history system) which quickly (and synchronously) provides matching
26 // history.
48 const history::ScoredHistoryMatch& history_match,
62 // Returns the index that should be used for history lookups.
63 history::InMemoryURLIndex* GetIndex();
68 const history::TermMatches& matches
    [all...]
history_contents_provider.h 10 #include "chrome/browser/history/history.h"
27 // As necessary asks the history service for the relevant results. When
37 history::QueryResults* results);
44 AutocompleteMatch ResultToMatch(const history::URLResult& result,
49 void ClassifyDescription(const history::URLResult& result,
54 int CalculateRelevance(const history::URLResult& result);
81 history::QueryResults results_;
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_mdct_18.cpp 29 REVISION HISTORY
39 int32 *history input for overlap and add, vector updated with
51 vector for next iteration ( on history[])
132 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window)
194 tmp = history[ i];
200 history[i ] = -(tmp2 + tmp1);
204 tmp = history[ 6];
209 tmp = history[ 7];
210 history[6] = -(tmp2 + tmp1);
211 history[7] = -(tmp1 + vec[8])
    [all...]
pvmp3_mdct_6.cpp 28 REVISION HISTORY
38 int32 *history input for overlap and add, vector updated with
48 vector for next iteration ( on history[])
122 void pvmp3_mdct_6(int32 vec[], int32 *history)
148 history[3] = tmp;
149 history[2] = tmp;
153 history[4] = tmp;
154 history[1] = tmp;
157 history[5] = tmp;
158 history[0] = tmp
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.h 36 * @brief The history (back-forward list) associated with a given ewk_view.
38 * Changing the history affects immediately the view, changing the
41 * When ewk_view is navigated or uris are set, history automatically
42 * updates. That's why no direct access to history structure is
54 EAPI Eina_Bool ewk_history_forward(Ewk_History *history);
55 EAPI Eina_Bool ewk_history_back(Ewk_History *history);
57 EAPI Eina_Bool ewk_history_history_item_add(Ewk_History *history, const Ewk_History_Item *item);
58 EAPI Eina_Bool ewk_history_history_item_set(Ewk_History *history, const Ewk_History_Item *item);
59 EAPI Ewk_History_Item *ewk_history_history_item_back_get(const Ewk_History *history);
60 EAPI Ewk_History_Item *ewk_history_history_item_current_get(const Ewk_History *history);
    [all...]
ewk_history.cpp 40 #define EWK_HISTORY_CORE_GET_OR_RETURN(history, core_, ...) \
41 if (!(history)) { \
42 CRITICAL("history is NULL."); \
45 if (!(history)->core) { \
46 CRITICAL("history->core is NULL."); \
49 if (!(history)->core->enabled()) { \
50 ERR("history->core is disabled!."); \
53 WebCore::BackForwardListImpl *core_ = (history)->core
114 * Go forward in history one item, if possible.
116 * @param history which history instance to modify
678 Ewk_History* history; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
typed_url_change_processor.h 22 namespace history { namespace
35 // This class is responsible for taking changes from the history backend and
42 history::HistoryBackend* history_backend,
47 // History -> sync_api model change application.
66 void HandleURLsModified(history::URLsModifiedDetails* details);
67 void HandleURLsDeleted(history::URLsDeletedDetails* details);
68 void HandleURLsVisited(history::URLVisitedDetails* details);
76 history::HistoryBackend* history_backend_;
typed_url_model_associator.h 16 #include "chrome/browser/history/history_types.h"
24 namespace history { namespace
50 typedef std::vector<history::URLRow> TypedUrlVector;
51 typedef std::vector<std::pair<history::URLID, history::URLRow> >
58 history::HistoryBackend* history_backend);
105 const history::VisitVector* deleted_visits);
116 const history::URLRow& url,
117 history::VisitVector* visits,
118 history::URLRow* new_url
    [all...]
typed_url_model_associator_unittest.cc 8 #include "chrome/browser/history/history_types.h"
18 static history::URLRow MakeTypedUrlRow(const char* url,
23 history::VisitVector* visits) {
25 history::URLRow history_url(gurl);
31 visits->push_back(history::VisitRow(
51 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
61 history::VisitVector visits1;
62 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie",
67 history::URLRow new_row1(GURL("http://pie.com/"))
    [all...]
  /external/chromium/chrome/browser/history/
history_unittest.cc 5 // History unit tests come in two flavors:
7 // 1. The more complicated style is that the unit test creates a full history
8 // service. This spawns a background thread for the history backend, and
12 // 2. The simpler style is to create a history backend on this thread and
15 // the history backend (since there is a lot of logic) but gets can come
40 #include "chrome/browser/history/download_create_info.h"
41 #include "chrome/browser/history/history.h"
42 #include "chrome/browser/history/history_backend.h"
43 #include "chrome/browser/history/history_database.h
60 namespace history { namespace
69 namespace history { namespace
828 HistoryService* history = new HistoryService(); local
846 HistoryService* history = new HistoryService(); local
    [all...]
history_publisher_none.cc 9 #include "chrome/browser/history/history_publisher.h"
13 namespace history { namespace
34 } // namespace history
history_unittest_base.h 11 namespace history { namespace
12 // A base class for a history unit test. It provides the common test methods.
31 } // namespace history
history.cc 5 // The history system runs on a background thread so that potentially slow
10 // Main thread History thread
14 // -> SQLite connection to History
16 // -> SQLite connection to Archived History
25 #include "chrome/browser/history/history.h"
35 #include "chrome/browser/history/download_create_info.h"
36 #include "chrome/browser/history/history_backend.h"
37 #include "chrome/browser/history/history_notifications.h"
38 #include "chrome/browser/history/history_types.h
    [all...]
history.h 21 #include "chrome/browser/history/history_types.h"
53 namespace history { namespace
62 } // namespace history
65 // HistoryDBTask can be used to process arbitrary work on the history backend
77 virtual bool RunOnDBThread(history::HistoryBackend* backend,
78 history::HistoryDatabase* db) = 0;
91 // The history service records page titles, and visit times, as well as
105 static const history::StarID kBookmarkBarID;
112 // Initializes the history service, returning true on success. On false, do
114 // the history files. The BookmarkService is used when deleting URLs t
    [all...]
in_memory_history_backend.h 5 // Contains the history backend wrapper around the in-memory URL database. This
6 // object maintains an in-memory cache of the subset of history required to do
9 // It is created on the history thread and passed to the main thread where
11 // from the "regular" history backend and keeps itself in sync.
30 namespace history { namespace
44 // Initializes the backend from the history database pointed to by the
46 // directory containing the history database and is also used
56 // Does initialization work when this object is attached to the history
58 // attached history service is under.
73 // Return the quick history index
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 13 #include "chrome/browser/history/history_backend.h"
14 #include "chrome/browser/history/history_notifications.h"
15 #include "chrome/browser/history/history_types.h"
47 using history::HistoryBackend;
48 using history::URLID;
49 using history::URLRow;
78 MOCK_METHOD1(GetAllTypedURLs, bool(std::vector<history::URLRow>* entries));
79 MOCK_METHOD2(GetVisitsForURL, bool(history::URLID id,
80 history::VisitVector* visits));
81 MOCK_METHOD2(UpdateURL, bool(history::URLID id, const history::URLRow& url))
    [all...]
  /external/chromium/testing/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon5257
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon8295
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon10919
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/protobuf/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon12823
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/chromium/chrome/browser/
favicon_helper.h 31 // requests the favicon from the history database. At this point
35 // history regardless of whether the NavigationEntry has a favicon.
38 // first depends upon who is faster): notification from the history
42 // . If the history db has a valid up to date favicon for the page, we update
51 // the favicon url and the callback from history. We wait to ensure we
57 // . Otherwise we ask the history database to update the mapping from
93 history::IconType icon_type,
112 // Ask the favicon from history
116 history::IconType icon_type,
122 history::IconType icon_type
    [all...]
favicon_service.h 14 #include "chrome/browser/history/history_types.h"
21 // The favicon service provides methods to access favicons. It calls the history
42 history::FaviconData>::Type // the type of favicon
50 history::IconType icon_type,
61 history::IconType icon_type,
85 const std::vector<history::ImportedFaviconUsage>& favicon_usage);
91 history::IconType icon_type);
100 // Helper to forward an empty result if we cannot get the history service.
  /external/chromium/chrome/browser/extensions/
extension_history_api.h 14 #include "chrome/browser/history/history.h"
15 #include "chrome/browser/history/history_notifications.h"
18 // Observes History service and routes the notifications as events to the
40 const history::URLVisitedDetails* details);
43 const history::URLsDeletedDetails* details);
49 // Used for tracking registrations to history service notifications.
60 // Base class for history function APIs.
70 // Base class for history funciton APIs which require async interaction with
101 DECLARE_EXTENSION_FUNCTION_NAME("history.getVisits")
    [all...]
  /external/chromium/chrome/browser/importer/
importer_bridge.h 37 const std::vector<history::ImportedFaviconUsage>& favicons) = 0;
39 virtual void SetHistoryItems(const std::vector<history::URLRow>& rows,
40 history::VisitSource visit_source) = 0;

Completed in 509 milliseconds

1 2 3 4 5 6 7 8 91011>>