OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_pitch
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.cpp
40
,
m_pitch
(1.0f)
PlatformSpeechSynthesisUtterance.h
65
float pitch() const { return
m_pitch
; }
66
void setPitch(float pitch) {
m_pitch
= std::max(std::min(2.0f, pitch), 0.0f); }
84
float
m_pitch
;
member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFallbackList.h
70
if (
m_pitch
== UnknownPitch)
72
return
m_pitch
== FixedPitch;
126
mutable unsigned
m_pitch
: 3; // Pitch
FontFallbackList.cpp
48
,
m_pitch
(UnknownPitch)
61
m_pitch
= UnknownPitch;
86
m_pitch
= VariablePitch;
94
m_pitch
= VariablePitch;
102
m_pitch
= simpleFontData->pitch();
Completed in 200 milliseconds