HomeSort by relevance Sort by last modified time
    Searched defs:SpeechView (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/ui/app_list/views/
speech_view.h 25 // SpeechView provides the card-like UI for the search-by-speech.
26 class APP_LIST_EXPORT SpeechView : public views::View,
30 explicit SpeechView(AppListViewDelegate* delegate);
31 virtual ~SpeechView();
64 DISALLOW_COPY_AND_ASSIGN(SpeechView);
speech_view.cc 140 SpeechView::SpeechView(AppListViewDelegate* delegate)
191 SpeechView::~SpeechView() {
195 void SpeechView::Reset() {
199 int SpeechView::GetIndicatorRadius(uint8 level) {
205 void SpeechView::Layout() {
229 gfx::Size SpeechView::GetPreferredSize() const {
233 void SpeechView::ButtonPressed(views::Button* sender, const ui::Event& event) {
237 void SpeechView::OnSpeechSoundLevelChanged(uint8 level)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List4.java 87 * Make a SpeechView to hold each row.
93 SpeechView sv;
95 sv = new SpeechView(mContext, Shakespeare.TITLES[position],
98 sv = (SpeechView) convertView;
113 * We will use a SpeechView to display each speech. It's just a LinearLayout
117 private class SpeechView extends LinearLayout {
118 public SpeechView(Context context, String title, String words) {
138 * Convenience method to set the title of a SpeechView
145 * Convenience method to set the dialogue of a SpeechView
List6.java 98 * Make a SpeechView to hold each row.
102 SpeechView sv;
104 sv = new SpeechView(mContext, mTitles[position], mDialogue[position], mExpanded[position]);
106 sv = (SpeechView)convertView;
362 * We will use a SpeechView to display each speech. It's just a LinearLayout
366 private class SpeechView extends LinearLayout {
367 public SpeechView(Context context, String title, String dialogue, boolean expanded) {
387 * Convenience method to set the title of a SpeechView
394 * Convenience method to set the dialogue of a SpeechView

Completed in 90 milliseconds