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:isabstract
(Results
1 - 7
of
7
) sorted by relevance
/third_party/python/Lib/test/libregrtest/
H
A
D
refleak.py
4
from inspect import
isabstract
namespace
52
if not
isabstract
(abc):
172
abs_classes = filter(
isabstract
, abs_classes)
/third_party/python/Lib/test/
H
A
D
test_abc.py
13
from inspect import
isabstract
namespace
181
self.assertTrue(
isabstract
(C))
186
self.assertTrue(
isabstract
(D))
191
self.assertFalse(
isabstract
(E))
197
self.assertTrue(
isabstract
(F))
H
A
D
test_inspect.py
336
self.assertTrue(inspect.
isabstract
(AbstractClassExample))
337
self.assertFalse(inspect.
isabstract
(ClassExample))
338
self.assertFalse(inspect.
isabstract
(a))
339
self.assertFalse(inspect.
isabstract
(int))
340
self.assertFalse(inspect.
isabstract
(5))
347
isabstract_checks.append(inspect.
isabstract
(cls))
H
A
D
test_dataclasses.py
4032
self.assertFalse(inspect.
isabstract
(Date))
4047
self.assertTrue(inspect.
isabstract
(Date))
/third_party/mbedtls/scripts/mbedtls_dev/
H
A
D
test_data_generation.py
144
if issubclass(cls, BaseTest) and not inspect.
isabstract
(cls):
/third_party/python/Objects/
H
A
D
object.c
838
PyObject*
isabstract
;
in _PyObject_IsAbstract()
local
843
res = _PyObject_LookupAttr(obj, &_Py_ID(__isabstractmethod__), &
isabstract
);
in _PyObject_IsAbstract()
845
res = PyObject_IsTrue(
isabstract
);
in _PyObject_IsAbstract()
846
Py_DECREF(
isabstract
);
in _PyObject_IsAbstract()
/third_party/python/Lib/
H
A
D
inspect.py
106
"
isabstract
",
526
def
isabstract
(object):
function
Completed in 23 milliseconds