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:sq_concat
(Results
1 - 3
of
3
) sorted by relevance
/third_party/python/Objects/
H
A
D
abstract.c
1080
if (m && m->
sq_concat
) {
in PyNumber_Add()
1081
result = (*m->
sq_concat
)(v, w);
in PyNumber_Add()
1269
func = m->
sq_concat
;
in PyNumber_InPlaceAdd()
1761
if (m && m->
sq_concat
) {
in PySequence_Concat()
1762
PyObject *res = m->
sq_concat
(s, o);
in PySequence_Concat()
1768
have an nb_add slot, not an
sq_concat
slot. So we fall back
in PySequence_Concat()
1823
if (m && m->
sq_concat
) {
in PySequence_InPlaceConcat()
1824
PyObject *res = m->
sq_concat
(s, o);
in PySequence_InPlaceConcat()
H
A
D
typeobject.c
5932
COPYSEQ(
sq_concat
);
in inherit_slots()
8197
/* Heap types defining __add__/__mul__ have
sq_concat
/sq_repeat == NULL.
8202
SQSLOT("__add__",
sq_concat
, NULL, wrap_binaryfunc,
8313
* type->tp_as_sequence->
sq_concat
by looking up special methods like
/third_party/python/Include/cpython/
H
A
D
object.h
110
binaryfunc
sq_concat
;
member
Completed in 16 milliseconds