Searched defs:expected_value (Results 1 - 25 of 30) sorted by relevance

12

/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dbuffer_level_filter_unittest.cc44 int expected_value = static_cast<int>(expected_value_double); local
49 EXPECT_NEAR(expected_value, filter.filtered_current_level() >> 8, 1);
68 int expected_value = 14; local
70 EXPECT_EQ(expected_value, filter.filtered_current_level() >> 8);
80 expected_value = 11;
82 EXPECT_EQ(expected_value, filter.filtered_current_level() >> 8);
92 expected_value = 7;
94 EXPECT_EQ(expected_value, filter.filtered_current_level() >> 8);
H A Ddecoder_database_unittest.cc72 const uint8_t expected_value = DecoderDatabase::kRtpPayloadTypeError; local
73 EXPECT_EQ(expected_value,
/external/libchrome/base/trace_event/
H A Dheap_profiler_type_name_deduplicator_unittest.cc42 // the same as |expected_value|.
44 const char* expected_value) {
55 // should be equal to |expected_value|.
58 ASSERT_EQ(expected_value, value);
43 TestInsertTypeAndReadback(const char* type_name, const char* expected_value) argument
H A Dmemory_allocator_dump_unittest.cc79 const std::string& expected_value) {
83 EXPECT_EQ(expected_value, attr_str_value);
89 uint64_t expected_value) {
91 StringPrintf("%" PRIx64, expected_value));
97 double expected_value) {
102 EXPECT_EQ(expected_value, attr_double_value);
75 CheckString(const MemoryAllocatorDump* dump, const std::string& name, const char* expected_type, const char* expected_units, const std::string& expected_value) argument
86 CheckScalar(const MemoryAllocatorDump* dump, const std::string& name, const char* expected_units, uint64_t expected_value) argument
94 CheckScalarF(const MemoryAllocatorDump* dump, const std::string& name, const char* expected_units, double expected_value) argument
/external/libmojo/mojo/common/
H A Dcommon_custom_types_unittest.cc43 void DoExpectResponse(T* expected_value, argument
46 BounceTestTraits<T>::ExpectEquality(*expected_value, value);
51 base::Callback<void(const T&)> ExpectResponse(T* expected_value, argument
53 return base::Bind(&DoExpectResponse<T>, expected_value, closure);
/external/libbrillo/brillo/http/
H A Dhttp_utils_unittest.cc360 const char expected_value[] = local
370 EXPECT_EQ(expected_value, response->ExtractDataAsString());
/external/libvpx/libvpx/test/
H A Dbyte_alignment_test.cc34 vpx_codec_err_t expected_value; member in struct:__anon11716::ByteAlignmentTestParam
80 void SetByteAlignment(int byte_alignment, vpx_codec_err_t expected_value) { argument
81 decoder_->Control(VP9_SET_BYTE_ALIGNMENT, byte_alignment, expected_value);
173 SetByteAlignment(t.byte_alignment, t.expected_value);
H A Ddecode_test_driver.h71 void Control(int ctrl_id, int arg, vpx_codec_err_t expected_value) { argument
74 ASSERT_EQ(expected_value, res) << DecodeError();
H A Dvp9_skip_loopfilter_test.cc53 void SetSkipLoopFilter(int value, vpx_codec_err_t expected_value) { argument
54 decoder_->Control(VP9_SET_SKIP_LOOP_FILTER, value, expected_value);
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator_unittest.cc268 unsigned int expected_value = validate_iterator->second; local
279 identifier.c_str(), expected_value);
285 if (expected_value != observed_value) {
290 identifier.c_str(), expected_value, observed_value);
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dbind_task_runner_unittest.cc254 int32_t expected_value,
258 EXPECT_EQ(expected_value, value);
263 int32_t expected_value,
268 EXPECT_EQ(expected_value, value);
281 int32_t expected_value,
284 return base::Bind(&DoExpectValueSetFlagAndQuitTaskRunner, expected_value,
320 void ExpectValueSetFlagAndForward(int32_t expected_value, argument
324 EXPECT_EQ(expected_value, value);
253 DoExpectValueSetFlagAndQuitTaskRunner( int32_t expected_value, bool* flag, scoped_refptr<TestTaskRunner> task_runner, int32_t value) argument
262 DoExpectValueSetFlagForwardValueAndQuitTaskRunner( int32_t expected_value, bool* flag, scoped_refptr<TestTaskRunner> task_runner, int32_t value, const IntegerSender::EchoCallback& callback) argument
280 ExpectValueSetFlagAndQuitTaskRunner( int32_t expected_value, bool* flag, scoped_refptr<TestTaskRunner> task_runner) argument
H A Dstruct_traits_unittest.cc320 void ExpectEnumWithTraits(EnumWithTraitsImpl expected_value, argument
323 EXPECT_EQ(expected_value, value);
H A Dinterface_ptr_unittest.cc211 void ExpectValueAndRunClosure(uint32_t expected_value, argument
214 EXPECT_EQ(expected_value, value);
H A Dsync_method_unittest.cc321 void ExpectValueAndRunClosure(int32_t expected_value, argument
324 EXPECT_EQ(expected_value, value);
H A Dassociated_interface_unittest.cc141 void DoExpectValueSetFlagAndRunClosure(int32_t expected_value, argument
145 EXPECT_EQ(expected_value, value);
154 int32_t expected_value,
158 &DoExpectValueSetFlagAndRunClosure, expected_value, flag, closure);
153 ExpectValueSetFlagAndRunClosure( int32_t expected_value, bool* flag, const base::Closure& closure) argument
/external/ltp/testcases/kernel/ipc/ipc_stress/
H A Dsemaphore_test_03.c236 int expected_value; /* Expected semaphore value */ local
325 expected_value = 1;
330 if (val != expected_value)
348 expected_value = 0;
353 if (val != expected_value)
371 expected_value = 0;
376 if (val != expected_value)
404 expected_value = 6;
409 if (val != expected_value)
429 expected_value
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc214 uint32 expected_value = static_cast<uint32>(kVarintCases_case.value); local
215 EXPECT_EQ(expected_value, coded_input.ReadTag());
217 EXPECT_TRUE(coded_input.LastTagWas(expected_value));
218 EXPECT_FALSE(coded_input.LastTagWas(expected_value + 1));
267 uint32 expected_value = static_cast<uint32>(kVarintCases_case.value); local
271 EXPECT_FALSE(coded_input.ExpectTag(expected_value + 1));
272 EXPECT_TRUE(coded_input.ExpectTag(expected_value));
274 EXPECT_FALSE(coded_input.ExpectTag(expected_value));
288 const uint32 expected_value = static_cast<uint32>(kVarintCases_case.value); local
294 expected_value
[all...]
/external/Microsoft-GSL/tests/
H A Dmulti_span_tests.cpp1095 void overloaded_func(multi_span<const int, dynamic_range, 3, 5> exp, int expected_value) argument
1098 CHECK(val == expected_value);
1102 void overloaded_func(multi_span<const char, dynamic_range, 3, 5> exp, char expected_value) argument
1105 CHECK(val == expected_value);
1109 void fixed_func(multi_span<int, 3, 3, 5> exp, int expected_value) argument
1112 CHECK(val == expected_value);
/external/webrtc/talk/app/webrtc/
H A Dwebrtcsdp_unittest.cc1223 const std::string& name, int expected_value) {
1226 EXPECT_EQ(found->second, rtc::ToString<int>(expected_value));
1222 VerifyCodecParameter(const cricket::CodecParameterMap& params, const std::string& name, int expected_value) argument
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest.cc993 // expected_value: "5"
1001 const String& expected_value,
1014 if (expected_value != expected_expression) {
1015 msg << "\nWhich is: " << expected_value; local
999 EqFailure(const char* expected_expression, const char* actual_expression, const String& expected_value, const String& actual_value, bool ignoring_case) argument
/external/googletest/googletest/src/
H A Dgtest.cc1306 // expected_value: "5"
1314 const std::string& expected_value,
1327 if (expected_value != expected_expression) {
1328 msg << "\nWhich is: " << expected_value; local
1331 if (!expected_value.empty() && !actual_value.empty()) {
1333 SplitEscapedString(expected_value);
1312 EqFailure(const char* expected_expression, const char* actual_expression, const std::string& expected_value, const std::string& actual_value, bool ignoring_case) argument
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc992 // expected_value: "5"
1000 const String& expected_value,
1013 if (expected_value != expected_expression) {
1014 msg << "\nWhich is: " << expected_value; local
998 EqFailure(const char* expected_expression, const char* actual_expression, const String& expected_value, const String& actual_value, bool ignoring_case) argument
/external/mesa3d/src/gtest/src/
H A Dgtest.cc992 // expected_value: "5"
1000 const String& expected_value,
1013 if (expected_value != expected_expression) {
1014 msg << "\nWhich is: " << expected_value; local
998 EqFailure(const char* expected_expression, const char* actual_expression, const String& expected_value, const String& actual_value, bool ignoring_case) argument
/external/protobuf/gtest/src/
H A Dgtest.cc1007 // expected_value: "5"
1015 const String& expected_value,
1028 if (expected_value != expected_expression) {
1029 msg << "\nWhich is: " << expected_value; local
1013 EqFailure(const char* expected_expression, const char* actual_expression, const String& expected_value, const String& actual_value, bool ignoring_case) argument
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
H A Dgtest.cc992 // expected_value: "5"
1000 const String& expected_value,
1013 if (expected_value != expected_expression) {
1014 msg << "\nWhich is: " << expected_value; local
998 EqFailure(const char* expected_expression, const char* actual_expression, const String& expected_value, const String& actual_value, bool ignoring_case) argument

Completed in 2358 milliseconds

12