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

1 2

  /external/chromium_org/ui/app_list/views/
search_result_list_view_delegate.h 12 class SearchResult;
17 virtual void OnResultInstalled(SearchResult* result) = 0;
20 virtual void OnResultUninstalled(SearchResult* result) = 0;
search_result_actions_view.h 17 // SearchResultActionsView displays a SearchResult::Actions in a button
25 void SetActions(const SearchResult::Actions& actions);
33 void CreateImageButton(const SearchResult::Action& action);
34 void CreateBlueButton(const SearchResult::Action& action);
tile_item_view.h 20 class SearchResult;
30 void SetSearchResult(SearchResult* item);
45 SearchResult* item_;
search_result_view.h 34 class SearchResult;
39 // SearchResultView displays a SearchResult.
52 // Sets/gets SearchResult displayed by this view.
53 void SetResult(SearchResult* result);
54 SearchResult* result() { return result_; }
56 // Clears reference to SearchResult but don't schedule repaint.
97 SearchResult* result_; // Owned by AppListModel::SearchResults.
search_result_actions_view.cc 29 void SearchResultActionsView::SetActions(const SearchResult::Actions& actions) {
33 const SearchResult::Action& action = actions.at(i);
65 const SearchResult::Action& action) {
79 const SearchResult::Action& action) {
app_list_main_view.h 110 virtual void OnResultInstalled(SearchResult* result) OVERRIDE;
111 virtual void OnResultUninstalled(SearchResult* result) OVERRIDE;
search_result_list_view_unittest.cc 58 results->Add(new SearchResult());
81 GetResults()->Add(new SearchResult());
114 virtual void OnResultInstalled(SearchResult* result) OVERRIDE {}
115 virtual void OnResultUninstalled(SearchResult* result) OVERRIDE {}
search_result_view.cc 42 const SearchResult::Tags& tags) {
47 for (SearchResult::Tags::const_iterator it = tags.begin();
51 if (it->styles == SearchResult::Tag::NONE)
54 if (it->styles & SearchResult::Tag::MATCH)
56 if (it->styles & SearchResult::Tag::DIM)
58 else if (it->styles & SearchResult::Tag::URL)
89 void SearchResultView::SetResult(SearchResult* result) {
277 // flash when a SearchResult's icon is loaded asynchronously. In this case, it
279 // clearing it out. It should work correctly as long as the SearchResult does
304 : SearchResult::Actions())
    [all...]
tile_item_view.cc 65 void TileItemView::SetSearchResult(SearchResult* item) {
68 SearchResult* old_item = item_;
  /external/chromium_org/ui/app_list/
search_result.cc 12 SearchResult::Action::Action(const gfx::ImageSkia& base_image,
21 SearchResult::Action::Action(const base::string16& label_text,
26 SearchResult::Action::~Action() {}
28 SearchResult::SearchResult()
35 SearchResult::~SearchResult() {
39 void SearchResult::SetIcon(const gfx::ImageSkia& icon) {
46 void SearchResult::SetActions(const Actions& sets) {
53 void SearchResult::SetIsInstalling(bool is_installing)
    [all...]
search_provider.h 17 class SearchResult;
21 typedef ScopedVector<SearchResult> Results;
38 void ReleaseResult(std::vector<SearchResult*>* results);
44 void Add(scoped_ptr<SearchResult> result);
search_provider.cc 16 void SearchProvider::ReleaseResult(std::vector<SearchResult*>* results) {
20 void SearchProvider::Add(scoped_ptr<SearchResult> result) {
app_list_view_delegate.h 36 class SearchResult;
93 virtual void OpenSearchResult(SearchResult* result,
99 virtual void InvokeSearchResultAction(SearchResult* result,
search_result.h 25 // SearchResult consists of an icon, title text and details text. Title and
28 class APP_LIST_EXPORT SearchResult {
79 SearchResult();
80 virtual ~SearchResult();
159 DISALLOW_COPY_AND_ASSIGN(SearchResult);
app_list_model.h 31 // the model for SearchBoxView. SearchResults owns a list of SearchResult.
42 typedef ui::ListModel<SearchResult> SearchResults;
122 static std::vector<SearchResult*> FilterSearchResultsByDisplayType(
124 SearchResult::DisplayType display_type,
  /external/qemu/android/avd/
util.h 50 } SearchResult;
56 * |searchResult| if non-null, this is set to RESULT_INVALID, RESULT_FOUND,
61 SearchResult* searchResult);
util_unittest.cpp 47 SearchResult kSearchResultGarbage = (SearchResult)0xdeadbeef;
48 SearchResult searchResult = kSearchResultGarbage;
50 EXPECT_EQ(kDefault,propertyFile_getInt(&fd, "invalid", kDefault, &searchResult));
51 EXPECT_EQ(RESULT_INVALID,searchResult);
53 searchResult = kSearchResultGarbage;
54 EXPECT_EQ(kDefault,propertyFile_getInt(&fd, "invalid2", kDefault, &searchResult));
55 EXPECT_EQ(RESULT_INVALID,searchResult);
57 searchResult = kSearchResultGarbage
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
omnibox_provider.cc 28 tag_styles |= SearchResult::Tag::URL;
30 tag_styles |= SearchResult::Tag::MATCH;
32 tag_styles |= SearchResult::Tag::DIM;
37 // Translates ACMatchClassifications into SearchResult tags.
41 SearchResult::Tags* tags) {
42 int tag_styles = SearchResult::Tag::NONE;
49 if (tag_styles != SearchResult::Tag::NONE) {
50 tags->push_back(SearchResult::Tag(
52 tag_styles = SearchResult::Tag::NONE;
62 if (tag_styles != SearchResult::Tag::NONE)
    [all...]
search_controller.h 24 class SearchResult;
44 void OpenResult(SearchResult* result, int event_flags);
45 void InvokeResultAction(SearchResult* result,
chrome_search_result.h 35 class ChromeSearchResult : public SearchResult {
45 // Overridden from SearchResult:
app_search_provider_unittest.cc 27 bool MoreRelevant(const SearchResult* result1, const SearchResult* result2) {
47 std::vector<SearchResult*> sorted_results;
  /external/chromium_org/athena/main/
url_search_provider.cc 113 tag_styles |= app_list::SearchResult::Tag::URL;
115 tag_styles |= app_list::SearchResult::Tag::MATCH;
117 tag_styles |= app_list::SearchResult::Tag::DIM;
122 // Translates ACMatchClassifications into SearchResult tags.
126 app_list::SearchResult::Tags* tags) {
127 int tag_styles = app_list::SearchResult::Tag::NONE;
134 if (tag_styles != app_list::SearchResult::Tag::NONE) {
135 tags->push_back(app_list::SearchResult::Tag(
137 tag_styles = app_list::SearchResult::Tag::NONE;
147 if (tag_styles != app_list::SearchResult::Tag::NONE)
    [all...]
  /external/chromium_org/ui/app_list/cocoa/
apps_search_results_controller.h 18 class SearchResult;
26 - (void)openResult:(app_list::SearchResult*)result;
  /external/chromium_org/athena/home/
app_list_view_delegate.h 39 virtual void OpenSearchResult(app_list::SearchResult* result,
42 virtual void InvokeSearchResultAction(app_list::SearchResult* result,
app_list_view_delegate.cc 56 std::vector<app_list::SearchResult*> results;
98 void AppListViewDelegate::OpenSearchResult(app_list::SearchResult* result,
105 app_list::SearchResult* result,

Completed in 813 milliseconds

1 2