Searched refs:space1 (Results 1 - 7 of 7) sorted by relevance
/third_party/skia/experimental/sktext/tests/ |
H A D | UnicodeText.cpp | 74 auto space1 = utf16.find_first_of(u" "); in UNIX_ONLY_TEST() local 77 REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space1, CodeUnitFlags::kPartOfWhiteSpace), "Pos16 %d should be a part of whitespaces\n", space1); in UNIX_ONLY_TEST() 78 REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space1 + 1, CodeUnitFlags::kSoftLineBreakBefore), "Pos16 %d should have soft line break before\n", space1 + 1); in UNIX_ONLY_TEST() 82 REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(space1, CodeUnitFlags::kPartOfWhiteSpace), "Pos8 %d should be a part of whitespaces\n", space1); in UNIX_ONLY_TEST() 83 REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(space1 + 1, CodeUnitFlags::kSoftLineBreakBefore), "Pos8 %d should have soft line break before\n", space1 + 1); in UNIX_ONLY_TEST()
|
/third_party/lwip/src/apps/http/ |
H A D | http_client.c | 212 u16_t space1, space2; in http_parse_response_status() local 213 space1 = pbuf_memfind(p, " ", 1, 0); in http_parse_response_status() 214 if (space1 != 0xFFFF) { in http_parse_response_status() 225 space2 = pbuf_memfind(p, " ", 1, space1 + 1); in http_parse_response_status() 228 status_num_len = space2 - space1 - 1; in http_parse_response_status() 230 status_num_len = end1 - space1 - 1; in http_parse_response_status() 233 if (pbuf_copy_partial(p, status_num, (u16_t)status_num_len, space1 + 1) == status_num_len) { in http_parse_response_status()
|
/third_party/rust/crates/nom/benchmarks/benches/ |
H A D | ini.rs | 9 alphanumeric1 as alphanumeric, char, multispace1 as multispace, space1 as space,
|
/third_party/rust/crates/nom/src/character/ |
H A D | streaming.rs | 545 /// # use nom::character::streaming::space1; 546 /// assert_eq!(space1::<_, (_, ErrorKind)>(" \t21c"), Ok(("21c", " \t"))); 547 /// assert_eq!(space1::<_, (_, ErrorKind)>("H2"), Err(Err::Error(("H2", ErrorKind::Space)))); 548 /// assert_eq!(space1::<_, (_, ErrorKind)>(""), Err(Err::Incomplete(Needed::new(1)))); 550 pub fn space1<T, E: ParseError<T>>(input: T) -> IResult<T, T, E> in space1() functions 820 space1::<_, (_, ErrorKind)>(e), in character() 823 assert_eq!(space1::<_, (_, ErrorKind)>(f), Ok((&b";"[..], &b" "[..]))); in character() 880 space1::<_, (_, ErrorKind)>(e), in character_s() 913 match space1::<_, (_, ErrorKind)>(d) { in offset()
|
H A D | complete.rs | 627 /// # use nom::character::complete::space1; 629 /// space1(input) 636 pub fn space1<T, E: ParseError<T>>(input: T) -> IResult<T, T, E> in space1() functions 885 assert_eq!(space1::<_, (_, ErrorKind)>(e), Ok((empty, e))); in character() 886 assert_eq!(space1::<_, (_, ErrorKind)>(f), Ok((&b";"[..], &b" "[..]))); in character() 919 assert_eq!(space1::<_, (_, ErrorKind)>(e), Ok((empty, e))); in character_s() 950 match space1::<_, (_, ErrorKind)>(d) { in offset()
|
/third_party/rust/crates/nom/tests/ |
H A D | issues.rs | 25 character::streaming::{digit1 as digit, space1 as space},
|
/third_party/rust/crates/nom/src/bytes/ |
H A D | tests.rs | 4 multispace1 as multispace, oct_digit1 as oct_digit, space1 as space,
|
Completed in 6 milliseconds