Searched defs:history (Results 151 - 175 of 211) sorted by relevance

123456789

/external/chromium_org/components/omnibox/
H A Dsearch_provider.h8 // history, and search suggestions. An instance of it gets created and
34 namespace history { namespace
145 typedef std::vector<history::KeywordSearchTermVisit> HistoryResults;
200 // Runs the history query, if necessary. The history query is synchronous.
339 // the current top-scoring history result. If there is a previous answer,
363 // Searches in the user's history that begin with the input text.
367 // Scored searches in the user's history - based on |keyword_history_results_|
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_controller_android.cc56 jobject history,
61 history,
222 jobject history) {
227 env, history, navigation_controller_->GetEntryAtIndex(i), i);
236 jobject history,
250 env, history, navigation_controller_->GetEntryAtIndex(i), i);
55 AddNavigationEntryToHistory(JNIEnv* env, jobject history, content::NavigationEntry* entry, int index) argument
220 GetNavigationHistory(JNIEnv* env, jobject obj, jobject history) argument
233 GetDirectedNavigationHistory( JNIEnv* env, jobject obj, jobject history, jboolean is_forward, jint max_entries) argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMEditor.cpp415 DOMEditor::DOMEditor(InspectorHistory* history) : m_history(history) { } argument
H A DInspectorDOMAgent.h202 InspectorHistory* history() { return m_history.get(); } function in class:blink::FINAL
H A DDOMPatchSupport.cpp71 InspectorHistory history; local
72 DOMEditor domEditor(&history);
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el30 ;; gyp-parse-history is a stack of (POSITION . PARSE-STATE) tuples,
34 (set (make-local-variable 'gyp-parse-history) '((1 . (list))))
97 (while (> (caar gyp-parse-history) target-point)
98 (setq gyp-parse-history (cdr gyp-parse-history))))
102 (caar gyp-parse-history))
106 (cdar gyp-parse-history))
110 (not (eq (cadar gyp-parse-history) 'list)))
112 (defun gyp-add-parse-history (point sections)
113 "Add parse state SECTIONS to the parse history a
[all...]
/external/flac/libFLAC/
H A Dlpc.c271 const FLAC__int32 *history; local
284 history = data;
286 sum += qlp_coeff[j] * (*(--history));
287 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
290 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%I64d\n",i,j,qlp_coeff[j],*history,sumo);
293 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%lld\n",i,j,qlp_coeff[j],*history,(long long)sumo);
536 const FLAC__int32 *history; local
548 history = data;
550 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
801 const FLAC__int32 *r = residual, *history; local
1068 const FLAC__int32 *r = residual, *history; local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchrome_extension_externs.js707 chrome.history = {};
713 chrome.history.addUrl = function(details) {};
719 chrome.history.deleteAll = function(callback) {};
727 chrome.history.deleteRange = function(range, callback) {};
733 chrome.history.deleteUrl = function(details) {};
741 chrome.history.getVisits = function(details, callback) {};
751 chrome.history.search = function(query, callback) {};
755 chrome.history.onVisitRemoved;
759 chrome.history.onVisited;
/external/chromium_org/chrome/browser/download/
H A Ddownload_history.cc5 // DownloadHistory manages persisting DownloadItems to the history service by
12 // persisted, and the last history::DownloadRow that was passed to the database.
33 #include "chrome/browser/history/download_database.h"
34 #include "chrome/browser/history/download_row.h"
35 #include "chrome/browser/history/history_service.h"
93 history::DownloadRow* info() { return info_.get(); }
94 void set_info(const history::DownloadRow& i) {
95 info_.reset(new history::DownloadRow(i));
105 scoped_ptr<history::DownloadRow> info_;
114 history
172 HistoryAdapter(HistoryService* history) argument
207 DownloadHistory(content::DownloadManager* manager, scoped_ptr<HistoryAdapter> history) argument
[all...]
/external/chromium_org/chrome/browser/history/
H A Ddelete_directive_handler.cc5 #include "chrome/browser/history/delete_directive_handler.h"
11 #include "chrome/browser/history/history_backend.h"
12 #include "chrome/browser/history/history_db_task.h"
13 #include "chrome/browser/history/history_service.h"
114 namespace history { namespace
127 virtual bool RunOnDBThread(history::HistoryBackend* backend,
128 history::HistoryDatabase* db) OVERRIDE;
138 history::HistoryBackend* history_backend,
141 // Process a list of time range directives, all history entries within the
145 history
[all...]
H A Ddownload_database.cc5 #include "chrome/browser/history/download_database.h"
20 #include "chrome/browser/history/download_row.h"
21 #include "components/history/core/browser/history_types.h"
28 namespace history { namespace
671 } // namespace history
H A Dexpire_history_backend.cc5 #include "chrome/browser/history/expire_history_backend.h"
18 #include "chrome/browser/history/history_database.h"
19 #include "chrome/browser/history/history_notifications.h"
20 #include "chrome/browser/history/thumbnail_database.h"
21 #include "components/history/core/browser/history_client.h"
23 namespace history { namespace
33 // don't appear in history and the vast majority of them are ads anyway. The
39 // and because these can take up the bulk of your history, we get a lot of
111 // history to expire last iteration, it's likely there is nothing next
239 // since this is called by the user who wants to delete their recent history,
[all...]
H A Dexpire_history_backend_unittest.cc20 #include "chrome/browser/history/expire_history_backend.h"
21 #include "chrome/browser/history/history_database.h"
22 #include "chrome/browser/history/history_notifications.h"
23 #include "chrome/browser/history/thumbnail_database.h"
24 #include "chrome/browser/history/top_sites.h"
27 #include "components/history/core/common/thumbnail_score.h"
28 #include "components/history/core/test/history_client_fake_bookmarks.h"
45 // The test must be in the history namespace for the gtest forward declarations
46 // to work. It also eliminates a bunch of ugly "history::".
47 namespace history { namespace
[all...]
H A Dscored_history_match.cc5 #include "chrome/browser/history/scored_history_match.h"
21 #include "components/history/core/browser/history_client.h"
26 namespace history { namespace
608 } // namespace history
H A Dtop_sites_database.cc5 #include "chrome/browser/history/top_sites_database.h"
12 #include "chrome/browser/history/top_sites.h"
13 #include "components/history/core/browser/history_types.h"
14 #include "components/history/core/common/thumbnail_score.h"
82 std::string GetRedirects(const history::MostVisitedURL& url) {
90 void SetRedirects(const std::string& redirects, history::MostVisitedURL* url) {
319 // be the history thread, but at this level I can't see how to reach that.
350 namespace history { namespace
736 } // namespace history
H A Dweb_history_service.cc5 #include "chrome/browser/history/web_history_service.h"
30 namespace history { namespace
38 "https://history.google.com/history/api/lookup?client=chrome";
41 "https://history.google.com/history/api/delete?client=chrome";
65 friend class history::WebHistoryService;
225 DLOG(WARNING) << "Non-JSON response received from history server.";
231 // history server.
241 // Returns a URL for querying the history serve
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_contents.h38 namespace history { namespace
256 // Called by the history tab helper with the information that it woudl have
257 // added to the history service had this web contents not been used for
259 void DidNavigate(const history::HistoryAddPageArgs& add_page_args);
261 // Applies all the URL history encountered during prerendering to the
443 typedef std::vector<history::HistoryAddPageArgs> AddPageVector;
445 // Caches pages to be added to the history.
/external/chromium_org/chrome/browser/safe_browsing/
H A Dbrowser_feature_extractor.cc16 #include "chrome/browser/history/history_service.h"
17 #include "chrome/browser/history/history_service_factory.h"
23 #include "components/history/core/browser/history_types.h"
306 HistoryService* history; local
307 if (!request || !request->IsInitialized() || !GetHistoryService(&history)) {
312 history->QueryURL(request_url,
325 const history::URLRow& row,
326 const history::VisitVector& visits) {
331 // URL is not found in the history. In practice this should not
345 for (history
373 HistoryService* history; local
404 HistoryService* history; local
457 GetHistoryService(HistoryService** history) argument
[all...]
/external/chromium_org/chrome/browser/ui/search/
H A Dinstant_extended_interactive_uitest.cc24 #include "chrome/browser/history/history_db_task.h"
25 #include "chrome/browser/history/history_service.h"
26 #include "chrome/browser/history/history_service_factory.h"
27 #include "chrome/browser/history/top_sites.h"
55 #include "components/history/core/browser/history_types.h"
56 #include "components/history/core/common/thumbnail_score.h"
87 // Task used to make sure history has finished processing a request. Intended
89 class QuittingHistoryDBTask : public history::HistoryDBTask {
93 virtual bool RunOnDBThread(history::HistoryBackend* backend,
94 history
222 HistoryService* history = HistoryServiceFactory::GetForProfile( local
[all...]
/external/chromium_org/chrome/browser/ui/webui/memory_internals/
H A Dmemory_internals_proxy.cc311 if (!process->GetList("history", &tabs)) {
313 process->Set("history", tabs);
320 tab->Set("history", histories);
326 base::DictionaryValue* history = new base::DictionaryValue(); local
327 histories->Append(history);
328 history->SetString("url", entry->GetURL().spec());
329 history->SetString("title", entry->GetTitle());
330 history->SetInteger("time", (base::Time::Now() -
/external/chromium_org/components/history/core/android/
H A Dandroid_history_types.h11 #include "components/history/core/browser/history_types.h"
12 #include "components/history/core/browser/keyword_id.h"
19 namespace history { namespace
330 } // namespace history
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/framehost/
H A DNavigationControllerImpl.java161 NavigationHistory history = new NavigationHistory();
163 mNativeNavigationControllerAndroid, history);
164 history.setCurrentEntryIndex(currentIndex);
165 return history;
171 NavigationHistory history = new NavigationHistory();
173 history, isForward, itemLimit);
174 return history;
214 private static void addToNavigationHistory(Object history, Object navigationEntry) { argument
215 ((NavigationHistory) history).addEntry((NavigationEntry) navigationEntry);
257 Object history);
256 nativeGetNavigationHistory(long nativeNavigationControllerAndroid, Object history) argument
258 nativeGetDirectedNavigationHistory(long nativeNavigationControllerAndroid, NavigationHistory history, boolean isForward, int itemLimit) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcolldata.cpp491 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const
496 if (history[offset] >= 0) {
497 return history[offset];
526 rlength = minLengthInChars(ceList, roffset, history);
555 //history[roffset++] = -1;
556 //history[roffset++] = 1;
559 rlength = minLengthInChars(ceList, roffset, history);
601 rlength = minLengthInChars(ceList, roffset, history);
617 history[offset] = shortestLength;
625 int32_t *history local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcolldata.cpp505 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const
510 if (history[offset] >= 0) {
511 return history[offset];
540 rlength = minLengthInChars(ceList, roffset, history);
569 //history[roffset++] = -1;
570 //history[roffset++] = 1;
573 rlength = minLengthInChars(ceList, roffset, history);
615 rlength = minLengthInChars(ceList, roffset, history);
631 history[offset] = shortestLength;
639 int32_t *history local
[all...]
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_provider_backend.cc5 #include "chrome/browser/history/android/android_provider_backend.h"
9 #include "chrome/browser/history/android/android_time.h"
10 #include "chrome/browser/history/android/android_urls_sql_handler.h"
11 #include "chrome/browser/history/android/bookmark_model_sql_handler.h"
12 #include "chrome/browser/history/android/favicon_sql_handler.h"
13 #include "chrome/browser/history/android/urls_sql_handler.h"
14 #include "chrome/browser/history/android/visit_sql_handler.h"
15 #include "chrome/browser/history/history_backend.h"
16 #include "chrome/browser/history/history_database.h"
17 #include "chrome/browser/history/thumbnail_databas
23 namespace history { namespace
[all...]

Completed in 470 milliseconds

123456789