Searched refs:is_prefix (Results 1 - 9 of 9) sorted by relevance
/third_party/rust/crates/memchr/src/memmem/ |
H A D | rabinkarp.rs | 59 if nhash.eq(hash) && is_prefix(haystack, needle) { 206 /// We forcefully don't inline the is_prefix call and hint at the compiler that 212 fn is_prefix(haystack: &[u8], needle: &[u8]) -> bool { in is_prefix() functions 213 crate::memmem::util::is_prefix(haystack, needle) in is_prefix() 218 /// See is_prefix for why this is forcefully not inlined.
|
H A D | twoway.rs | 470 if !util::is_prefix(&v[v.len() - period_lower_bound..], u) { in reverse()
|
/third_party/rust/crates/aho-corasick/src/packed/ |
H A D | rabinkarp.rs | 159 if pat.is_prefix(&haystack[at..]) { in verify()
|
/third_party/libinput/tools/ |
H A D | libinput-record.c | 1999 init_output_file(const char *file, bool is_prefix) in init_output_file() argument 2005 if (is_prefix) { in init_output_file() 2026 open_output_files(struct record_context *ctx, bool is_prefix) in open_output_files() argument 2032 char *fname = init_output_file(ctx->output_file.name, is_prefix); in open_output_files()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 1935 bool is_prefix() const { return IsPrefixField::decode(bit_field_); } in is_prefix() function in v8::internal::final 1936 bool is_postfix() const { return !is_prefix(); } in is_postfix() 1946 CountOperation(Token::Value op, bool is_prefix, Expression* expr, int pos) in CountOperation() argument 1948 bit_field_ |= IsPrefixField::encode(is_prefix) | TokenField::encode(op); in CountOperation() 3155 bool is_prefix, in NewCountOperation() 3158 return zone_->New<CountOperation>(op, is_prefix, expr, pos); in NewCountOperation() 3154 NewCountOperation(Token::Value op, bool is_prefix, Expression* expr, int pos) NewCountOperation() argument
|
H A D | prettyprinter.cc | 507 if (node->is_prefix()) Print(Token::String(node->op())); in VisitCountOperation() 1406 SNPrintF(buf, "%s %s", (node->is_prefix() ? "PRE" : "POST"), in VisitCountOperation()
|
/third_party/mksh/ |
H A D | expr.c | 234 do_ppmm(Expr_state *es, enum token op, struct tbl *vasn, bool is_prefix) in do_ppmm() argument 253 if (!is_prefix) in do_ppmm()
|
/third_party/rust/crates/aho-corasick/src/packed/teddy/ |
H A D | runtime.rs | 394 if pat.is_prefix(&haystack[at..]) { in verify_bucket()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.h | 640 PreParserExpression NewCountOperation(Token::Value op, bool is_prefix, in NewCountOperation() argument
|
Completed in 31 milliseconds