Searched defs:action_index (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dsearch_webstore_result.cc57 void SearchWebstoreResult::InvokeAction(int action_index, int event_flags) { argument
H A Dsearch_controller.cc150 int action_index,
154 action_index, event_flags);
149 InvokeResultAction(SearchResult* result, int action_index, int event_flags) argument
H A Dapp_result.cc117 void AppResult::InvokeAction(int action_index, int event_flags) {} argument
/external/chromium_org/ui/app_list/views/
H A Dsearch_result_actions_view.cc44 void SearchResultActionsView::SetSelectedAction(int action_index) { argument
45 // Clamp |action_index| in [-1, child_count()].
46 action_index = std::min(child_count(), std::max(-1, action_index));
48 if (selected_action_ == action_index)
51 selected_action_ = action_index;
60 bool SearchResultActionsView::IsValidActionIndex(int action_index) const {
61 return action_index >= 0 && action_index < child_count();
H A Dsearch_result_list_view.cc280 size_t action_index,
284 view->result(), action_index, event_flags);
279 SearchResultActionActivated(SearchResultView* view, size_t action_index, int event_flags) argument
/external/chromium_org/chrome/browser/ui/app_list/search/people/
H A Dpeople_result.cc93 void PeopleResult::InvokeAction(int action_index, int event_flags) { argument
99 switch (action_index) {
107 LOG(ERROR) << "Invalid people search action: " << action_index;
/external/chromium_org/content/browser/renderer_host/input/
H A Dmotion_event_android_unittest.cc53 int action_index = -1; local
66 action_index,
110 EXPECT_EQ(action_index, event.GetActionIndex());
H A Dmotion_event_android.cc131 jint action_index,
154 cached_action_index_(action_index),
124 MotionEventAndroid(float pix_to_dip, JNIEnv* env, jobject event, jlong time_ms, jint android_action, jint pointer_count, jint history_size, jint action_index, jfloat pos_x_0_pixels, jfloat pos_y_0_pixels, jfloat pos_x_1_pixels, jfloat pos_y_1_pixels, jint pointer_id_0, jint pointer_id_1, jfloat touch_major_0_pixels, jfloat touch_major_1_pixels, jfloat touch_minor_0_pixels, jfloat touch_minor_1_pixels, jfloat orientation_0_rad, jfloat orientation_1_rad, jfloat raw_pos_x_pixels, jfloat raw_pos_y_pixels, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state, jint meta_state) argument
/external/chromium_org/ui/app_list/
H A Dsearch_result.cc103 void SearchResult::InvokeAction(int action_index, int event_flags) { argument
/external/chromium_org/ui/events/gesture_detection/
H A Dmotion_event_generic.h67 void set_action_index(int action_index) { action_index_ = action_index; } argument
H A Dgesture_detector.cc231 const int action_index = ev.GetActionIndex(); local
232 const float dx = ev.GetX(action_index) - current_down_event_->GetX();
233 const float dy = ev.GetY(action_index) - current_down_event_->GetY();
H A Dgesture_provider.cc761 const int action_index = event.GetActionIndex(); local
767 event.GetX(action_index),
768 event.GetY(action_index),
769 event.GetRawX(action_index),
770 event.GetRawY(action_index),
/external/chromium_org/athena/home/
H A Dapp_list_view_delegate.cc106 int action_index,
104 InvokeSearchResultAction( app_list::SearchResult* result, int action_index, int event_flags) argument
/external/chromium_org/chrome/browser/ui/app_list/search/webstore/
H A Dwebstore_result.cc120 void WebstoreResult::InvokeAction(int action_index, int event_flags) { argument
128 StartInstall(action_index == kLaunchEphemeralAppAction);
/external/chromium_org/chrome/browser/ui/app_list/
H A Dapp_list_view_delegate.cc423 int action_index,
425 search_controller_->InvokeResultAction(result, action_index, event_flags);
421 InvokeSearchResultAction( app_list::SearchResult* result, int action_index, int event_flags) argument
/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_win.h558 CONTENT_EXPORT STDMETHODIMP doAction(long action_index) { argument
561 CONTENT_EXPORT STDMETHODIMP get_description(long action_index, argument
565 CONTENT_EXPORT STDMETHODIMP get_keyBinding(long action_index, argument
571 CONTENT_EXPORT STDMETHODIMP get_name(long action_index, BSTR* name) { argument
574 CONTENT_EXPORT STDMETHODIMP get_localizedName(long action_index, argument
/external/chromium_org/content/browser/android/
H A Dcontent_view_core_impl.cc857 jint action_index,
889 action_index,
850 OnTouchEvent(JNIEnv* env, jobject obj, jobject motion_event, jlong time_ms, jint android_action, jint pointer_count, jint history_size, jint action_index, jfloat pos_x_0, jfloat pos_y_0, jfloat pos_x_1, jfloat pos_y_1, jint pointer_id_0, jint pointer_id_1, jfloat touch_major_0, jfloat touch_major_1, jfloat touch_minor_0, jfloat touch_minor_1, jfloat orientation_0, jfloat orientation_1, jfloat raw_pos_x, jfloat raw_pos_y, jint android_tool_type_0, jint android_tool_type_1, jint android_button_state, jint android_meta_state, jboolean is_touch_handle_event) argument

Completed in 288 milliseconds