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:SCOPE_MASK
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Lib/
H
A
D
symtable.py
5
DEF_IMPORT, DEF_BOUND, DEF_ANNOT, SCOPE_OFF,
SCOPE_MASK
, FREE,
175
test = lambda x: ((x >> SCOPE_OFF) &
SCOPE_MASK
) in locs
184
test = lambda x:((x >> SCOPE_OFF) &
SCOPE_MASK
) in glob
199
is_free = lambda x:((x >> SCOPE_OFF) &
SCOPE_MASK
) == FREE
224
self.__scope = (flags >> SCOPE_OFF) &
SCOPE_MASK
# like PyST_GetScope()
/third_party/python/Include/internal/
H
A
D
pycore_symtable.h
113
#define
SCOPE_MASK
(DEF_GLOBAL | DEF_LOCAL | DEF_PARAM | DEF_NONLOCAL)
macro
/third_party/python/Modules/
H
A
D
symtablemodule.c
103
if (PyModule_AddIntMacro(m,
SCOPE_MASK
) < 0) return -1;
in symtable_init_constants()
/third_party/python/Python/
H
A
D
symtable.c
408
return (symbol >> SCOPE_OFFSET) &
SCOPE_MASK
;
in _PyST_GetScope()
H
A
D
compile.c
667
scope = (vi >> SCOPE_OFFSET) &
SCOPE_MASK
;
in dictbytype()
Completed in 15 milliseconds