Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:re2_string
(Results
1 - 2
of
2
) sorted by relevance
/third_party/rust/crates/regex/bench/src/ffi/
H
A
D
re2.cpp
11
typedef struct
re2_string
{
struct
14
}
re2_string
;
typedef
16
re2_regexp* re2_regexp_new(
re2_string
pat) {
in re2_regexp_new()
25
bool re2_regexp_match(re2_regexp *re,
re2_string
text,
in re2_regexp_match()
34
bool re2_regexp_find(re2_regexp *re,
re2_string
text,
in re2_regexp_find()
H
A
D
re2.rs
122
struct
re2_string
{
structure names
127
impl<'a> From<&'a str> for
re2_string
{
128
fn from(s: &'a str) ->
re2_string
{
in from()
129
re2_string
{ text: s.as_ptr(), len: s.len() as c_int }
in from()
134
fn re2_regexp_new(pat:
re2_string
) -> *mut re2_regexp;
in re2_regexp_new()
138
text:
re2_string
,
in re2_regexp_match()
144
text:
re2_string
,
in re2_regexp_find()
Completed in 1 milliseconds