pitch 62 Source/modules/speech/SpeechSynthesisUtterance.h float pitch() const { return m_platformUtterance->pitch(); } pitch 63 Source/modules/speech/SpeechSynthesisUtterance.h void setPitch(float pitch) { m_platformUtterance->setPitch(pitch); } pitch 96 Source/platform/exported/WebSpeechSynthesisUtterance.cpp return m_private->pitch(); pitch 83 Source/platform/fonts/FontFallbackList.cpp m_pitch = static_cast<const SimpleFontData*>(fontData)->pitch(); pitch 88 Source/platform/fonts/FontFallbackList.cpp m_pitch = segmentedFontData->rangeAt(0).fontData()->pitch(); pitch 143 Source/platform/fonts/SimpleFontData.h Pitch pitch() const { return m_treatAsFixedPitch ? FixedPitch : VariablePitch; } pitch 183 Source/platform/fonts/WidthIterator.cpp if (m_run.applyWordRounding() && width == fontData->spaceWidth() && (fontData->pitch() == FixedPitch || glyph == fontData->spaceGlyph())) pitch 577 Source/platform/fonts/mac/ComplexTextController.cpp if (m_run.applyWordRounding() && roundedAdvanceWidth == roundedSpaceWidth && (fontData->pitch() == FixedPitch || glyph == fontData->spaceGlyph())) pitch 66 Source/platform/speech/PlatformSpeechSynthesisUtterance.h float pitch() const { return m_pitch; } pitch 67 Source/platform/speech/PlatformSpeechSynthesisUtterance.h void setPitch(float pitch) { m_pitch = std::max(std::min(2.0f, pitch), 0.0f); } pitch 60 public/platform/WebSpeechSynthesisUtterance.h BLINK_PLATFORM_EXPORT float pitch() const; // 0...2, 1 is default