Lines Matching refs:parse_error
314 bool parse_error = false; in TEST() local
317 kFieldId, &parse_error); in TEST()
325 ASSERT_FALSE(parse_error); in TEST()
333 bool parse_error = false; in TEST() local
335 for (auto packed_it = decoder.field_int32(&parse_error); packed_it; in TEST()
341 ASSERT_FALSE(parse_error); in TEST()
349 bool parse_error = false; in TEST() local
350 auto packed_it = decoder.field_int32(&parse_error); in TEST()
352 ASSERT_FALSE(parse_error); in TEST()
370 bool parse_error = false; in TEST() local
374 kFieldId, &parse_error); in TEST()
382 ASSERT_FALSE(parse_error); in TEST()
390 bool parse_error = false; in TEST() local
392 for (auto packed_it = decoder.field_fixed32(&parse_error); packed_it; in TEST()
398 ASSERT_FALSE(parse_error); in TEST()
406 bool parse_error = false; in TEST() local
407 auto packed_it = decoder.field_fixed32(&parse_error); in TEST()
409 ASSERT_FALSE(parse_error); in TEST()
427 bool parse_error = false; in TEST() local
431 kFieldId, &parse_error); in TEST()
439 ASSERT_FALSE(parse_error); in TEST()
447 bool parse_error = false; in TEST() local
449 for (auto packed_it = decoder.field_sfixed64(&parse_error); packed_it; in TEST()
455 ASSERT_FALSE(parse_error); in TEST()
463 bool parse_error = false; in TEST() local
464 auto packed_it = decoder.field_sfixed64(&parse_error); in TEST()
466 ASSERT_FALSE(parse_error); in TEST()
481 bool parse_error = false; in TEST() local
482 auto packed_it = decoder.field_int32(&parse_error); in TEST()
484 ASSERT_FALSE(parse_error); in TEST()
505 bool parse_error = false; in TEST() local
506 for (auto packed_it = decoder.field_fixed32(&parse_error); packed_it; in TEST()
509 ASSERT_TRUE(parse_error); in TEST()
529 bool parse_error = false; in TEST() local
530 for (auto packed_it = decoder.field_int32(&parse_error); packed_it; in TEST()
533 ASSERT_TRUE(parse_error); in TEST()