OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:URLResult
(Results
1 - 4
of
4
) sorted by null
/external/chromium/chrome/browser/history/
history_types.cc
127
//
URLResult
-------------------------------------------------------------------
129
URLResult
::
URLResult
() {
132
URLResult
::
URLResult
(const GURL& url, base::Time visit_time)
137
URLResult
::
URLResult
(const GURL& url,
143
URLResult
::~
URLResult
() {
146
void
URLResult
::SwapResult(URLResult* other)
[
all
...]
history_types.h
331
//
URLResult
-------------------------------------------------------------------
333
class
URLResult
: public URLRow {
335
URLResult
();
336
URLResult
(const GURL& url, base::Time visit_time);
337
// Constructor that create a
URLResult
from the specified URL and title match
339
URLResult
(const GURL& url, const Snippet::MatchPositions& title_matches);
340
~
URLResult
();
354
void SwapResult(
URLResult
* other);
372
//
URLResult
objects, plus an efficient way of looking up the index of each time
376
typedef std::vector<
URLResult
*> URLResultVector
[
all
...]
/external/chromium_org/chrome/browser/history/
history_types.cc
91
//
URLResult
-------------------------------------------------------------------
93
URLResult
::
URLResult
()
97
URLResult
::
URLResult
(const GURL& url, base::Time visit_time)
103
URLResult
::
URLResult
(const GURL& url,
108
URLResult
::
URLResult
(const URLRow& url_row)
113
URLResult
::~URLResult()
[
all
...]
history_types.h
280
//
URLResult
-------------------------------------------------------------------
282
class
URLResult
: public URLRow {
284
URLResult
();
285
URLResult
(const GURL& url, base::Time visit_time);
286
// Constructor that create a
URLResult
from the specified URL and title match
288
URLResult
(const GURL& url, const Snippet::MatchPositions& title_matches);
289
explicit
URLResult
(const URLRow& url_row);
290
virtual ~
URLResult
();
309
void SwapResult(
URLResult
* other);
311
static bool CompareVisitTime(const
URLResult
& lhs, const URLResult& rhs)
[
all
...]
Completed in 134 milliseconds