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:_sre
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Lib/re/
H
A
D
_compiler.py
13
import
_sre
namespace
18
assert
_sre
.MAGIC == MAGIC, "SRE module mismatch"
50
iscased =
_sre
.unicode_iscased
51
tolower =
_sre
.unicode_tolower
54
iscased =
_sre
.ascii_iscased
55
tolower =
_sre
.ascii_tolower
381
_CODEBITS =
_sre
.CODESIZE * 8
392
assert a.itemsize ==
_sre
.CODESIZE
430
return
_sre
.unicode_iscased
432
return
_sre
[all...]
H
A
D
_constants.py
5
# run this script to update the
_sre
include files!
18
from
_sre
import MAXREPEAT, MAXGROUPS
/third_party/python/Lib/test/
H
A
D
test_re.py
1082
import
_sre
namespace
1086
self.assertEqual(
_sre
.ascii_tolower(i), lo)
1087
self.assertEqual(
_sre
.unicode_tolower(i), lo)
1089
self.assertEqual(
_sre
.ascii_iscased(i), iscased)
1090
self.assertEqual(
_sre
.unicode_iscased(i), iscased)
1094
self.assertEqual(
_sre
.ascii_tolower(i), i)
1096
self.assertEqual(
_sre
.unicode_tolower(i), ord(c.lower()))
1098
self.assertFalse(
_sre
.ascii_iscased(i))
1099
self.assertEqual(
_sre
.unicode_iscased(i),
1102
self.assertEqual(
_sre
1805
import
_sre
global()
namespace
[all...]
Completed in 4 milliseconds