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:search_function
(Results
1 - 6
of
6
) sorted by relevance
/third_party/python/Modules/
H
A
D
_codecsmodule.c
11
register(
search_function
) -> None
51
search_function
: object
62
_codecs_register(PyObject *module, PyObject *
search_function
)
in _codecs_register()
argument
65
if (PyCodec_Register(
search_function
))
in _codecs_register()
73
search_function
: object
82
_codecs_unregister(PyObject *module, PyObject *
search_function
)
in _codecs_unregister()
argument
85
if (PyCodec_Unregister(
search_function
) < 0) {
in _codecs_unregister()
/third_party/python/Include/
H
A
D
codecs.h
24
The
search_function
's refcount is incremented by this function. */
27
PyObject *
search_function
variable
35
PyObject *
search_function
variable
/third_party/python/Lib/encodings/
H
A
D
__init__.py
71
def
search_function
(encoding):
function
155
# Register the
search_function
in the Python codec registry
156
codecs.register(
search_function
)
/third_party/python/Python/
H
A
D
codecs.c
35
int PyCodec_Register(PyObject *
search_function
)
in PyCodec_Register()
argument
40
if (
search_function
== NULL) {
in PyCodec_Register()
44
if (!PyCallable_Check(
search_function
)) {
in PyCodec_Register()
48
return PyList_Append(interp->codec_search_path,
search_function
);
in PyCodec_Register()
55
PyCodec_Unregister(PyObject *
search_function
)
in PyCodec_Unregister()
argument
68
if (item ==
search_function
) {
in PyCodec_Unregister()
/third_party/python/Lib/test/
H
A
D
test_codecs.py
1671
search_function
= mock.Mock()
1672
codecs.register(
search_function
)
1674
search_function
.assert_called_with(name)
1675
search_function
.reset_mock()
1677
codecs.unregister(
search_function
)
1679
search_function
.assert_not_called()
3528
def
search_function
(encoding):
function
3534
codecs.register(
search_function
)
3535
self.addCleanup(codecs.unregister,
search_function
)
H
A
D
test_unicode.py
29
def
search_function
(encoding):
function
66
codecs.register(
search_function
)
67
self.addCleanup(codecs.unregister,
search_function
)
Completed in 18 milliseconds