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:rure
(Results
1 - 4
of
4
) sorted by relevance
/third_party/rust/crates/regex/regex-capi/include/
H
A
D
rure.h
13
*
rure
is the type of a compiled regular expression.
15
* An
rure
can be safely used from multiple threads simultaneously.
17
typedef struct
rure
rure
;
typedef
22
* A
rure
can be safely used from multiple threads simultaneously.
78
* An rure_captures value may outlive its corresponding
rure
and can be freed
89
* An rure_iter value may not outlive its corresponding
rure
and should be freed
90
* before its corresponding
rure
is freed.
98
* in this particular
rure
.
100
* An rure_iter_capture_names value may not outlive its corresponding
rure
,
[all...]
/third_party/rust/crates/regex/regex-capi/ctest/
H
A
D
test.c
7
#include "
rure
.h"
17
rure
*re = rure_compile_must("\\p{So}$");
in test_is_match()
35
rure
*re = rure_compile_must("a+");
in test_shortest_match()
64
rure
*re = rure_compile_must("\\p{So}$");
in test_find()
93
rure
*re = rure_compile_must(".(.*(?P<snowman>\\p{So}))$");
in test_captures()
155
rure
*re = rure_compile_must("\\w+(\\w)");
in test_iter()
229
rure
*re = rure_compile_must(
in test_iter_capture_names()
278
rure
*re = rure_compile((const uint8_t *)pattern, strlen(pattern),
in test_flags()
295
rure
*re = rure_compile((const uint8_t *)"(", 1, 0, NULL, err);
in test_compile_error()
324
rure
*r
in test_compile_error_size_limit()
[all...]
/third_party/rust/crates/regex/regex-capi/src/
H
A
D
lib.rs
4
mod
rure
;
modules
7
pub use crate::
rure
::*;
/third_party/rust/crates/regex/regex-capi/examples/
H
A
D
iter.c
15
#include "
rure
.h"
55
rure
*re = rure_compile((const uint8_t *)pattern, pattern_len,
in main()
Completed in 2 milliseconds