/external/rust/crates/remain/src/ |
D | parse.rs | 28 let ahead = input.fork(); in parse() localVariable 29 let _ = ahead.call(Attribute::parse_outer)?; in parse() 31 if ahead.peek(Token![match]) { in parse() 39 if ahead.peek(Token![let]) { in parse() 55 let _: Visibility = ahead.parse()?; in parse() 56 if ahead.peek(Token![enum]) { in parse() 58 } else if ahead.peek(Token![struct]) { in parse()
|
/external/rust/cxx/gen/src/ |
D | file.rs | 34 let ahead = input.fork(); in parse() localVariable 35 ahead.parse::<Visibility>()?; in parse() 36 ahead.parse::<Option<Token![unsafe]>>()?; in parse() 37 if !ahead.peek(Token![mod]) { in parse() 52 input.advance_to(&ahead); in parse()
|
/external/rust/crates/pin-project-internal/src/pin_project/ |
D | attribute.rs | 49 let ahead = input.fork(); in parse() localVariable 50 let _vis: Visibility = ahead.parse()?; in parse() 51 if !ahead.peek(Token![struct]) && !ahead.peek(Token![enum]) { in parse()
|
/external/rust/cxx/syntax/ |
D | file.rs | 85 let ahead = input.fork(); in parse() localVariable 86 let unsafety = if ahead.parse::<Option<Token![unsafe]>>()?.is_some() in parse() 87 && ahead.parse::<Option<Token![extern]>>()?.is_some() in parse() 88 && ahead.parse::<Option<LitStr>>().is_ok() in parse() 89 && ahead.peek(token::Brace) in parse()
|
/external/rust/crates/syn/src/ |
D | stmt.rs | 160 let ahead = input.fork(); in parse_stmt() localVariable 161 if let Ok(path) = ahead.call(Path::parse_mod_style) { in parse_stmt() 162 if ahead.peek(Token![!]) in parse_stmt() 163 && (ahead.peek2(token::Brace) in parse_stmt() 164 && !(ahead.peek3(Token![.]) || ahead.peek3(Token![?])) in parse_stmt() 165 || ahead.peek2(Ident)) in parse_stmt() 167 input.advance_to(&ahead); in parse_stmt()
|
D | data.rs | 333 let ahead = input.fork(); in parse() localVariable 334 let group = crate::group::parse_group(&ahead)?; in parse() 336 input.advance_to(&ahead); in parse() 356 let ahead = input.fork(); in parse_pub() localVariable 359 let paren_token = parenthesized!(content in ahead); in parse_pub() 371 input.advance_to(&ahead); in parse_pub() 383 input.advance_to(&ahead); in parse_pub()
|
D | pat.rs | 324 let ahead = input.fork(); in parse() localVariable 325 ahead.parse::<Option<Ident>>()?.is_some() in parse() 326 && (ahead.peek(Token![::]) in parse() 327 || ahead.peek(Token![!]) in parse() 328 || ahead.peek(token::Brace) in parse() 329 || ahead.peek(token::Paren) in parse() 330 || ahead.peek(Token![..]) in parse() 331 && ahead.parse::<RangeLimits>().is_ok() in parse() 332 && !(ahead.is_empty() || ahead.peek(Token![,]))) in parse() 334 let ahead = input.fork(); in parse() localVariable [all …]
|
D | item.rs | 981 let ahead = input.fork(); in parse() localVariable 982 let vis: Visibility = ahead.parse()?; in parse() 984 let lookahead = ahead.lookahead1(); in parse() 985 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { in parse() 995 ahead.parse::<Token![extern]>()?; in parse() 996 let lookahead = ahead.lookahead1(); in parse() 1002 ahead.parse::<LitStr>()?; in parse() 1003 let lookahead = ahead.lookahead1(); in parse() 1046 ahead.parse::<Token![const]>()?; in parse() 1047 let lookahead = ahead.lookahead1(); in parse() [all …]
|
/external/bcc/tools/ |
D | readahead_example.txt | 3 Read-ahead mechanism is used by operation sytems to optimize sequential operations 4 by reading ahead some pages to avoid more expensive filesystem operations. This tool 5 shows the performance of the read-ahead caching on the system under a given load to 25 Read-ahead unused pages: 6765 26 Histogram of read-ahead used page age (ms):
|
/external/rust/crates/async-trait/src/ |
D | parse.rs | 15 let ahead = input.fork(); in parse() localVariable 16 ahead.parse::<Token![unsafe]>()?; in parse() 17 lookahead = ahead.lookahead1(); in parse()
|
/external/rust/crates/syn-mid/src/ |
D | pat.rs | 150 let ahead = input.fork(); in parse() localVariable 151 ahead.parse::<Option<Ident>>()?.is_some() in parse() 152 && (ahead.peek(Token![::]) in parse() 153 || ahead.peek(token::Brace) in parse() 154 || ahead.peek(token::Paren)) in parse() 156 let ahead = input.fork(); in parse() localVariable 157 ahead.parse::<Option<Token![self]>>()?.is_some() && ahead.peek(Token![::]) in parse()
|
D | func.rs | 145 let ahead = input.fork(); in parse() localVariable 146 if let Ok(mut receiver) = ahead.parse::<Receiver>() { in parse() 147 if !ahead.peek(Token![:]) { in parse() 148 input.advance_to(&ahead); in parse()
|
/external/curl/tests/data/ |
D | test1904 | 26 HTTP/1.1 204 Sure go ahead 30 HTTP/1.1 204 Sure go ahead
|
D | test1945 | 24 HTTP/1.1 200 Sure go ahead
|
D | test1941 | 24 HTTP/1.1 200 Sure go ahead
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | CharStreamState.as | 30 /** When walking ahead with cyclic DFA or for syntactic predicates, 32 * line, etc...) so that we can rewind the state after scanning ahead.
|
/external/cronet/third_party/icu/source/common/ |
D | rbbirpt.txt | 172 '/' look-ahead doExprCatOperator 180 # look-ahead Scanning a '/', which identifies a break point, assuming that the 186 look-ahead: 195 # look-ahead symbol is permitted. 246 '/' look-ahead doExprCatOperator
|
D | ustring.cpp | 1293 int32_t ahead = *offset + 1; in u_unescapeAt() local 1295 if (c == u'\\' && ahead < length) { in u_unescapeAt() 1299 int32_t tailLimit = ahead + 11; in u_unescapeAt() 1303 c = u_unescapeAt(charAt, &ahead, tailLimit, context); in u_unescapeAt() 1306 *offset = ahead; in u_unescapeAt()
|
/external/icu/icu4c/source/common/ |
D | rbbirpt.txt | 172 '/' look-ahead doExprCatOperator 180 # look-ahead Scanning a '/', which identifies a break point, assuming that the 186 look-ahead: 195 # look-ahead symbol is permitted. 246 '/' look-ahead doExprCatOperator
|
D | ustring.cpp | 1293 int32_t ahead = *offset + 1; in u_unescapeAt() local 1295 if (c == u'\\' && ahead < length) { in u_unescapeAt() 1299 int32_t tailLimit = ahead + 11; in u_unescapeAt() 1303 c = u_unescapeAt(charAt, &ahead, tailLimit, context); in u_unescapeAt() 1306 *offset = ahead; in u_unescapeAt()
|
/external/flatbuffers/docs/source/ |
D | README_TO_GENERATE_DOCS.md | 30 *Note: The Go API Reference code must be generated ahead of time. For
|
/external/autotest/test_suites/ |
D | control.cros-av-analysis | 18 are ahead in the queue.
|
/external/rust/crates/unicode-segmentation/src/ |
D | sentence.rs | 102 fn match_sb8(state: &SentenceBreaksState, ahead: &str) -> bool { in match_sb8() 112 for next_char in ahead.chars() { in match_sb8()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Utility.java | 895 int ahead = offset+1; in unescapeAndLengthAt() local 897 if (c == '\\' && ahead < length) { in unescapeAndLengthAt() 901 int tailLimit = ahead + 11; in unescapeAndLengthAt() 905 int cpAndLength = unescapeAndLengthAt(s, ahead, tailLimit); in unescapeAndLengthAt() 908 ahead += cpAndLength & 0xff; in unescapeAndLengthAt() 912 offset = ahead; in unescapeAndLengthAt()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Utility.java | 891 int ahead = offset+1; in unescapeAndLengthAt() local 893 if (c == '\\' && ahead < length) { in unescapeAndLengthAt() 897 int tailLimit = ahead + 11; in unescapeAndLengthAt() 901 int cpAndLength = unescapeAndLengthAt(s, ahead, tailLimit); in unescapeAndLengthAt() 904 ahead += cpAndLength & 0xff; in unescapeAndLengthAt() 908 offset = ahead; in unescapeAndLengthAt()
|