channelByType     158 Source/platform/audio/AudioBus.cpp     return const_cast<AudioBus*>(this)->channelByType(type);
channelByType     288 Source/platform/audio/AudioBus.cpp         const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
channelByType     289 Source/platform/audio/AudioBus.cpp         const float* sourceR = sourceBusSafe.channelByType(ChannelRight)->data();
channelByType     291 Source/platform/audio/AudioBus.cpp         float* destination = channelByType(ChannelLeft)->mutableData();
channelByType     330 Source/platform/audio/AudioBus.cpp         const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
channelByType     331 Source/platform/audio/AudioBus.cpp         const float* sourceR = sourceBusSafe.channelByType(ChannelRight)->data();
channelByType     333 Source/platform/audio/AudioBus.cpp         float* destination = channelByType(ChannelLeft)->mutableData();
channelByType     353 Source/platform/audio/AudioBus.cpp     const float* sourceL = sourceBusSafe.channelByType(ChannelLeft)->data();
channelByType     354 Source/platform/audio/AudioBus.cpp     const float* sourceR = sourceBusSafe.channelByType(ChannelRight)->data();
channelByType     355 Source/platform/audio/AudioBus.cpp     const float* sourceC = sourceBusSafe.channelByType(ChannelCenter)->data();
channelByType     356 Source/platform/audio/AudioBus.cpp     const float* sourceSL = sourceBusSafe.channelByType(ChannelSurroundLeft)->data();
channelByType     357 Source/platform/audio/AudioBus.cpp     const float* sourceSR = sourceBusSafe.channelByType(ChannelSurroundRight)->data();
channelByType     359 Source/platform/audio/AudioBus.cpp     float* destination = channelByType(ChannelLeft)->mutableData();
channelByType      79 Source/platform/audio/AudioBus.h     AudioChannel* channelByType(unsigned type);
channelByType      80 Source/platform/audio/AudioBus.h     const AudioChannel* channelByType(unsigned type) const;
channelByType      68 Source/platform/audio/EqualPowerPanner.cpp     float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
channelByType      69 Source/platform/audio/EqualPowerPanner.cpp     float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();
channelByType     193 Source/platform/audio/HRTFElevation.cpp     AudioChannel* leftEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelLeft);
channelByType     194 Source/platform/audio/HRTFElevation.cpp     AudioChannel* rightEarImpulseResponse = impulseResponse->channelByType(AudioBus::ChannelRight);
channelByType     156 Source/platform/audio/HRTFPanner.cpp     const AudioChannel* inputChannelL = inputBus->channelByType(AudioBus::ChannelLeft);
channelByType     157 Source/platform/audio/HRTFPanner.cpp     const AudioChannel* inputChannelR = numInputChannels > 1 ? inputBus->channelByType(AudioBus::ChannelRight) : 0;
channelByType     162 Source/platform/audio/HRTFPanner.cpp     float* destinationL = outputBus->channelByType(AudioBus::ChannelLeft)->mutableData();
channelByType     163 Source/platform/audio/HRTFPanner.cpp     float* destinationR = outputBus->channelByType(AudioBus::ChannelRight)->mutableData();