OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SearchBox
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
search_box.js
13
function
SearchBox
(element) {
18
this.autocompleteList = new
SearchBox
.AutocompleteList(element.ownerDocument);
62
SearchBox
.AutocompleteList = function(document) {
64
self.__proto__ =
SearchBox
.AutocompleteList.prototype;
67
self.itemConstructor =
SearchBox
.AutocompleteListItem_.bind(null, document);
72
SearchBox
.AutocompleteList.prototype = {
80
SearchBox
.AutocompleteList.prototype.handleSelectedSuggestion = function() {};
96
SearchBox
.AutocompleteList.prototype.onMouseOver_ = function(event) {
109
SearchBox
.AutocompleteListItem_ = function(document, item) {
138
SearchBox
.prototype.updateSizeRelatedStyle = function()
[
all
...]
/external/chromium_org/chrome/renderer/searchbox/
searchbox.h
25
class
SearchBox
: public content::RenderViewObserver,
26
public content::RenderViewObserverTracker<
SearchBox
> {
28
explicit
SearchBox
(content::RenderView* render_view);
29
virtual ~
SearchBox
();
135
// Sets the
searchbox
values to their initial value.
153
DISALLOW_COPY_AND_ASSIGN(
SearchBox
);
searchbox.cc
5
#include "chrome/renderer/
searchbox
/
searchbox
.h"
18
#include "chrome/renderer/
searchbox
/searchbox_extension.h"
143
SearchBox
::
SearchBox
(content::RenderView* render_view)
145
content::RenderViewObserverTracker<
SearchBox
>(render_view),
157
SearchBox
::~
SearchBox
() {
160
void
SearchBox
::LogEvent(NTPLoggingEventType event) {
165
void
SearchBox
::LogImpression(int position, const base::string16& provider)
[
all
...]
Completed in 148 milliseconds