OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SpeechView
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/app_list/views/
speech_view.h
23
//
SpeechView
provides the card-like UI for the search-by-speech.
24
class
SpeechView
: public views::View,
28
explicit
SpeechView
(AppListViewDelegate* delegate);
29
virtual ~
SpeechView
();
59
DISALLOW_COPY_AND_ASSIGN(
SpeechView
);
speech_view.cc
99
SpeechView
::
SpeechView
(AppListViewDelegate* delegate)
140
SpeechView
::~
SpeechView
() {
144
void
SpeechView
::Reset() {
153
int
SpeechView
::GetIndicatorRadius(int16 level) {
160
void
SpeechView
::Layout() {
183
gfx::Size
SpeechView
::GetPreferredSize() {
187
void
SpeechView
::ButtonPressed(views::Button* sender, const ui::Event& event) {
191
void
SpeechView
::OnSpeechSoundLevelChanged(int16 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 89 milliseconds