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:dk_kind
(Results
1 - 4
of
4
) sorted by relevance
/third_party/python/Include/internal/
H
A
D
pycore_dict.h
97
uint8_t
dk_kind
;
member
148
(assert(dk->
dk_kind
== DICT_KEYS_GENERAL), (PyDictKeyEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes]))
150
(assert(dk->
dk_kind
!= DICT_KEYS_GENERAL), (PyDictUnicodeEntry*)(&((int8_t*)((dk)->dk_indices))[(size_t)1 << (dk)->dk_log2_index_bytes]))
151
#define DK_IS_UNICODE(dk) ((dk)->
dk_kind
!= DICT_KEYS_GENERAL)
/third_party/python/Objects/
H
A
D
dictobject.c
23
|
dk_kind
|
43
dk_entries is array of PyDictKeyEntry when
dk_kind
== DICT_KEYS_GENERAL or
457
DICT_KEYS_UNICODE, /*
dk_kind
*/
522
CHECK(keys->
dk_kind
!= DICT_KEYS_SPLIT);
in _PyDict_CheckConsistency()
526
CHECK(keys->
dk_kind
== DICT_KEYS_SPLIT);
in _PyDict_CheckConsistency()
536
if (keys->
dk_kind
== DICT_KEYS_GENERAL) {
in _PyDict_CheckConsistency()
646
dk->
dk_kind
= unicode ? DICT_KEYS_UNICODE : DICT_KEYS_GENERAL;
in new_keys_object()
1010
DictKeysKind kind = dk->
dk_kind
;
in _PyDictKeys_StringLookup()
1049
kind = dk->
dk_kind
;
in _Py_dict_lookup()
1097
if (((PyDictObject *)dict)->ma_keys->
dk_kind
!
in _PyDict_HasOnlyStringKeys()
[all...]
/third_party/python/Python/
H
A
D
specialize.c
498
if (dict->ma_keys->
dk_kind
!= DICT_KEYS_UNICODE) {
in specialize_module_load_attr()
H
A
D
ceval.c
1506
assert(dict->ma_keys->
dk_kind
== DICT_KEYS_UNICODE); \
Completed in 18 milliseconds