Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:IsVolumeValid
(Results
1 - 3
of
3
) sorted by relevance
/foundation/multimedia/audio_framework/services/audio_service/common/include/
H
A
D
volume_tools.h
41
static bool
IsVolumeValid
(float volFloat); // 0.0 <= volFloat <= 1.0
42
static bool
IsVolumeValid
(int32_t volInt); // 0 <= volInt <= 65536
43
static bool
IsVolumeValid
(ChannelVolumes vols);
/foundation/multimedia/audio_framework/services/audio_service/common/src/
H
A
D
volume_tools.cpp
38
bool VolumeTools::
IsVolumeValid
(float volFloat)
in IsVolumeValid()
function in OHOS::AudioStandard::VolumeTools
43
bool VolumeTools::
IsVolumeValid
(int32_t volInt)
in IsVolumeValid()
function in OHOS::AudioStandard::VolumeTools
47
bool VolumeTools::
IsVolumeValid
(ChannelVolumes vols)
in IsVolumeValid()
function in OHOS::AudioStandard::VolumeTools
53
if (!
IsVolumeValid
(vols.volStart[i]) || !
IsVolumeValid
(vols.volEnd[i])) {
in IsVolumeValid()
63
if (
IsVolumeValid
(volFloat)) {
in GetInt32Vol()
75
if (!
IsVolumeValid
(volStart) || !
IsVolumeValid
(volEnd) || channel > CHANNEL_16 || channel < MONO) {
in GetChannelVolumes()
91
if (!
IsVolumeValid
(volStart) || !
IsVolumeValid
(volEn
in GetChannelVolumes()
[all...]
/foundation/multimedia/audio_framework/services/audio_service/test/unittest/common/
H
A
D
volume_tools_unit_test.cpp
36
* @tc.name : Test
IsVolumeValid
API
39
* @tc.desc : Test
IsVolumeValid
interface.
47
bool ret = volumeTools->
IsVolumeValid
(channelVolumes);
in HWTEST()
53
* @tc.name : Test
IsVolumeValid
API
56
* @tc.desc : Test
IsVolumeValid
interface, when channelVolumes.channel is less than MONO(1).
64
bool ret = volumeTools->
IsVolumeValid
(channelVolumes);
in HWTEST()
70
* @tc.name : Test
IsVolumeValid
API
73
* @tc.desc : Test
IsVolumeValid
interface, when channelVolumes.channel is bigger than CHANNEL_16(16).
81
bool ret = volumeTools->
IsVolumeValid
(channelVolumes);
in HWTEST()
87
* @tc.name : Test
IsVolumeValid
AP
[all...]
Completed in 2 milliseconds