HomeSort by relevance Sort by last modified time
    Searched full:silence (Results 1 - 25 of 666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/remoting/host/
audio_silence_detector.h 17 // still be considered as silence.
24 // is silence should be dropped.
28 // Maximum absolute sample value that should still be considered as silence.
31 // Silence period threshold in samples. Silence intervals shorter than this
36 // Lengths of the current silence period in samples.
audio_silence_detector_unittest.cc 32 // Check that the silence was detected if it was expected.
36 // Check that silence threshold is between 0.5 and 2 seconds.
44 TEST(AudioSilenceDetectorTest, Silence) {
audio_silence_detector.cc 13 // Silence period threshold in seconds. Silence intervals shorter than this
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 30 // expected-note {{explicitly cast the pointer to silence this warning}}
33 // expected-note {{explicitly cast the pointer to silence this warning}}
37 // expected-note {{explicitly cast the pointer to silence this warning}}
40 // expected-note {{explicitly cast the pointer to silence this warning}}
43 // expected-note {{explicitly cast the pointer to silence this warning}}
46 // expected-note {{explicitly cast the pointer to silence this warning}}
49 // expected-note {{explicitly cast the pointer to silence this warning}}
52 // expected-note {{explicitly cast the pointer to silence this warning}}
56 // expected-note {{explicitly cast the pointer to silence this warning}}
59 // expected-note {{explicitly cast the pointer to silence this warning}
    [all...]
warn-func-as-bool.cpp 22 expected-note {{prefix with the address-of operator to silence this warning}}
24 expected-note {{prefix with the address-of operator to silence this warning}}
26 expected-note {{prefix with the address-of operator to silence this warning}}
28 expected-note {{prefix with the address-of operator to silence this warning}}
30 expected-note {{prefix with the address-of operator to silence this warning}} \
33 expected-note {{prefix with the address-of operator to silence this warning}}
warn-assignment-condition.cpp 17 // expected-note{{place parentheses around the assignment to silence this warning}}
22 // expected-note{{place parentheses around the assignment to silence this warning}}
27 // expected-note{{place parentheses around the assignment to silence this warning}}
32 // expected-note{{place parentheses around the assignment to silence this warning}}
37 // expected-note{{place parentheses around the assignment to silence this warning}}
42 // expected-note{{place parentheses around the assignment to silence this warning}}
47 // expected-note{{place parentheses around the assignment to silence this warning}}
51 // expected-note{{place parentheses around the assignment to silence this warning}}
63 // expected-note{{place parentheses around the assignment to silence this warning}}
68 // expected-note{{place parentheses around the assignment to silence this warning}
    [all...]
warn-empty-body.cpp 9 if (x); // expected-warning {{if statement has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
13 for (i = 0; i < x; i++); { // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
18 for (i = 0; i < x; i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
25 i++); // expected-warning{{for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
31 for (int j : arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
35 arr); // expected-warning{{range-based for loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
38 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
41 while (b() == 0); { // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
45 while (b() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
51 c() == 0); // expected-warning{{while loop has empty body}} expected-note{{put the semicolon on a separate line to silence this warning}
    [all...]
string-plus-int.cpp 31 consume("foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
32 consume("foo" + index); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
33 consume("foo" + kMyEnum); // expected-warning {{adding 'MyEnum' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
35 consume(5 + "foo"); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
36 consume(index + "foo"); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
37 consume(kMyEnum + "foo"); // expected-warning {{adding 'MyEnum' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
40 consumeChar(*("foo" + 5)); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
41 consumeChar(*(5 + "foo")); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
43 consume(L"foo" + 5); // expected-warning {{adding 'int' to a string does not append to the string}} expected-note {{use array indexing to silence this warning}}
expressions.cpp 39 // expected-note {{remove constant to silence this warning}}
49 // expected-note {{remove constant to silence this warning}}
64 // expected-note {{remove constant to silence this warning}}
67 // expected-note {{remove constant to silence this warning}}
70 // expected-note {{remove constant to silence this warning}}
73 // expected-note {{remove constant to silence this warning}}
84 // expected-note {{remove constant to silence this warning}}
87 // expected-note {{remove constant to silence this warning}}
90 // expected-note {{remove constant to silence this warning}}
93 // expected-note {{remove constant to silence this warning}
    [all...]
switch-implicit-fallthrough-macro.cpp 7 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'COMMAND_LINE_FALLTHROUGH;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
28 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'COMPATIBILITY_FALLTHROUGH;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
51 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'M1;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
67 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
86 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert '[[clang::fallthrough]];' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
106 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'MACRO_WITH_HISTORY;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
124 case 1: // expected-warning{{unannotated fall-through between switch labels}} expected-note{{insert 'MACRO_WITH_HISTORY2;' to silence this warning}} expected-note{{insert 'break;' to avoid fall-through}}
warn-logical-not-compare.cpp 13 // expected-note@-3 {{add parentheses around left hand side expression to silence this warning}}
17 // CHECK: to silence this warning
24 // expected-note@-3 {{add parentheses around left hand side expression to silence this warning}}
28 // CHECK: to silence this warning
35 // expected-note@-3 {{add parentheses around left hand side expression to silence this warning}}
39 // CHECK: to silence this warning
46 // expected-note@-3 {{add parentheses around left hand side expression to silence this warning}}
50 // CHECK: to silence this warning
57 // expected-note@-3 {{add parentheses around left hand side expression to silence this warning}}
61 // CHECK: to silence this warnin
    [all...]
uninit-variables-conditional.cpp 18 double x; // expected-note{{initialize the variable 'x' to silence this warning}}
  /external/clang/test/SemaObjC/
arc-non-pod-memaccess.m 25 // expected-note{{explicitly cast the pointer to silence this warning}}
27 // expected-note{{explicitly cast the pointer to silence this warning}}
29 // expected-note{{explicitly cast the pointer to silence this warning}}
33 // expected-note{{explicitly cast the pointer to silence this warning}}
35 // expected-note{{explicitly cast the pointer to silence this warning}}
37 // expected-note{{explicitly cast the pointer to silence this warning}}
41 // expected-note{{explicitly cast the pointer to silence this warning}}
43 // expected-note{{explicitly cast the pointer to silence this warning}}
45 // expected-note{{explicitly cast the pointer to silence this warning}}
49 // expected-note{{explicitly cast the pointer to silence this warning}
    [all...]
self-assign.m 11 // expected-note{{place parentheses around the assignment to silence this warning}}
uninit-variables.m 17 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
40 int x; // expected-note {{initialize the variable 'x' to silence this warning}}
  /external/clang/test/Sema/
uninit-det-order.c 10 // CHECK: 4:9: note: initialize the variable 'b' to silence this warning
12 // CHECK: 4:12: note: initialize the variable 'c' to silence this warning
uninit-variables.c 7 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
23 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
29 int x, y; // expected-note{{initialize the variable 'y' to silence this warning}}
35 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
41 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
68 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
78 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
86 int x; // expected-note{{initialize the variable 'x' to silence this warning}}
94 for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' is uninitialized when used here}} expected-note{{initialize the variable 'i' to silence this warning}}
130 int *x; // expected-note{{initialize the variable 'x' to silence this warning}
    [all...]
parentheses.cpp 8 // expected-note {{place parentheses around the '+' expression to silence this warning}} \
16 // expected-note {{place parentheses around the '-' expression to silence this warning}} \
24 // expected-note {{place parentheses around the '*' expression to silence this warning}} \
43 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
51 // expected-note {{place parentheses around the '<<' expression to silence this warning}} \
59 // expected-note {{place parentheses around the '>>' expression to silence this warning}} \
74 // expected-note {{place parentheses around the '+' expression to silence this warning}} \
89 expected-note {{place parentheses around the '+' expression to silence this warning}}
94 expected-note {{place parentheses around the '-' expression to silence this warning}}
100 expected-note {{place parentheses around the '+' expression to silence this warning}
    [all...]
parentheses.c 8 // expected-note{{place parentheses around the assignment to silence this warning}} \
19 // expected-note{{place parentheses around the '==' expression to silence this warning}} \
27 // expected-note{{place parentheses around the '==' expression to silence this warning}} \
35 // expected-note{{place parentheses around the '<' expression to silence this warning}} \
49 // expected-note {{place parentheses around the '&' expression to silence this warning}}
54 // expected-note {{place parentheses around the '&' expression to silence this warning}}
60 // expected-note {{place parentheses around the '&&' expression to silence this warning}}
68 // expected-note {{place parentheses around the '&&' expression to silence this warning}}
73 // expected-note {{place parentheses around the '&&' expression to silence this warning}}
85 // expected-note {{place parentheses around the '+' expression to silence this warning}}
    [all...]
  /external/clang/test/FixIt/
no-macro-fixit.c 14 // expected-note {{place parentheses around the assignment to silence this warning}}
  /external/clang/test/Parser/
statements.c 34 if (0); // expected-warning {{if statement has empty body}} expected-note {{put the semicolon on a separate line to silence this warning}}
38 foo: if (0); // expected-warning {{if statement has empty body}} expected-note {{put the semicolon on a separate line to silence this warning}}
43 if (0); // expected-warning {{if statement has empty body}} expected-note {{put the semicolon on a separate line to silence this warning}}
47 if (0); // expected-warning {{if statement has empty body}} expected-note {{put the semicolon on a separate line to silence this warning}}
cxx-condition.cpp 10 if (const int x = a) ; // expected-warning{{empty body}} expected-note{{put the semicolon on a separate line to silence this warning}}
  /external/llvm/test/BugPoint/
crash-narrowfunctiontest.ll 3 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null
  /external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
SDL_dx5audio.h 39 int mixlen, silence; member in struct:SDL_PrivateAudioData
50 #define silence (this->hidden->silence) macro
  /external/chromium_org/chrome/test/functional/media/
audio_tools.py 10 - remove silence from beginning and end of audio file.
117 """Removes silence from beginning and end of the input_audio_file.
120 input_audio_file: The audio file to remove silence from.
123 # SOX documentation for silence command: http://sox.sourceforge.net/sox.html
124 # To remove the silence from both beginning and end of the audio file, we call
125 # sox silence command twice: once on normal file and again on its reverse,
127 # Silence parameters are (in sequence):
128 # ABOVE_PERIODS: The period for which silence occurs. Value 1 is used for
129 # silence at beginning of audio.
130 # DURATION: the amount of time in seconds that non-silence must be detecte
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8 91011>>