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:IsInterface
(Results
1 - 25
of
28
) sorted by relevance
1
2
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/
H
A
D
ets_vm_test.cpp
76
ASSERT_FALSE(klass->
IsInterface
());
in AssertCompoundClassRoot()
102
ASSERT_FALSE(klass->
IsInterface
());
in AssertCompoundContainerClassRoot()
124
ASSERT_FALSE(klass->
IsInterface
());
in AssertPrimitiveClassRoot()
144
ASSERT_FALSE(klass->
IsInterface
());
in AssertPrimitiveContainerClassRoot()
/arkcompiler/runtime_core/static_core/runtime/include/
H
A
D
vtable_builder_base-inl.h
53
ASSERT(cda->
IsInterface
());
in BuildForInterface()
175
if (cda->
IsInterface
()) {
in Build()
212
if (klass->
IsInterface
()) {
in UpdateClass()
H
A
D
vtable_builder_base.h
116
return method_->GetClass()->
IsInterface
();
in IsInterfaceMethod()
120
return cda.
IsInterface
();
in IsInterfaceMethod()
H
A
D
class-inl.h
149
if (
IsInterface
()) {
in IsAssignableFrom()
155
return !klass->
IsInterface
() && klass->IsSubClassOf(this);
in IsAssignableFrom()
337
if (LIKELY(
IsInterface
())) {
in FindInterfaceMethod()
356
if (LIKELY(
IsInterface
())) {
in FindInterfaceMethod()
522
ASSERT(!
IsInterface
());
524
if (method->GetClass()->
IsInterface
() && !method->IsDefaultInterfaceMethod()) {
H
A
D
class.h
395
bool
IsInterface
() const
in IsInterface()
function in ark::Class
402
return !IsPrimitive() && !
IsInterface
();
in IsClass()
/arkcompiler/runtime_core/static_core/runtime/
H
A
D
imtable_builder.cpp
23
if (cda->
IsInterface
() || itable.Size() == 0U) {
in Build()
65
if (klass->
IsInterface
() || klass->IsAbstract()) {
in UpdateClass()
H
A
D
class_initializer.cpp
149
if (base->
IsInterface
()) {
301
if (!klass->
IsInterface
()) {
363
if (!iface->
IsInterface
()) {
H
A
D
class.cpp
133
os << "----- " << (
IsInterface
() ? "interface" : "class") << " "
in DumpClass()
H
A
D
cha.cpp
33
if (klass->
IsInterface
()) {
in Update()
H
A
D
compiler.cpp
194
if (klass->
IsInterface
()) {
in GetClassType()
266
return (method->GetClass()->
IsInterface
() && !method->IsDefaultInterfaceMethod());
in IsInterfaceMethod()
284
return (MethodCast(method)->GetClass()->
IsInterface
() && !MethodCast(method)->IsDefaultInterfaceMethod());
in IsInterfaceMethod()
H
A
D
compiler.h
543
bool
IsInterface
(ClassPtr klass) const override
545
return ClassCast(klass)->
IsInterface
();
H
A
D
class_linker.cpp
321
if (!info.itableBuilder->Build(this, base, interfaces, dataAccessor->
IsInterface
())) {
in SetupClassInfo()
1422
if (klass->
IsInterface
()) {
in GetMethod()
1442
if (klass->
IsInterface
()) {
in GetMethod()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/
H
A
D
ets_class.cpp
135
if (
IsInterface
()) {
155
if (
IsInterface
()) {
in GetMethod()
178
if (
IsInterface
()) {
in GetMethods()
548
if (
IsInterface
()) {
H
A
D
ets_class.h
210
bool
IsInterface
() const
in IsInterface()
function in ark::ets::EtsClass
212
return GetRuntimeClass()->
IsInterface
();
in IsInterface()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
H
A
D
ets_vtable_builder.cpp
146
if (superCDA.
IsInterface
()) {
in RefExtendsOrImplements()
155
if (subCDA.
IsInterface
() || subCDA.GetSuperClassId().GetOffset() == 0) {
in RefExtendsOrImplements()
H
A
D
ets_itable_builder.cpp
139
if (klass->
IsInterface
()) {
in Resolve()
/arkcompiler/runtime_core/libpandafile/
H
A
D
class_data_accessor.h
38
bool
IsInterface
() const
in IsInterface()
function in panda::panda_file::ClassDataAccessor
/arkcompiler/runtime_core/static_core/libpandafile/
H
A
D
class_data_accessor.h
38
bool
IsInterface
() const
in IsInterface()
function in ark::panda_file::ClassDataAccessor
/arkcompiler/runtime_core/static_core/runtime/tests/
H
A
D
class_linker_test.cpp
209
EXPECT_FALSE(klass->
IsInterface
()) << msg;
in TestPrimitiveClassRoot()
271
EXPECT_FALSE(klass->
IsInterface
()) << msg;
in TestArrayClassRoot()
311
EXPECT_FALSE(classClass->
IsInterface
());
in TEST_F()
325
EXPECT_FALSE(objectClass->
IsInterface
());
in TEST_F()
339
EXPECT_FALSE(stringClass->
IsInterface
());
in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
H
A
D
ets_class_wrapper.cpp
159
ASSERT(!klass->
IsInterface
());
in CreateJSRefConvertEtsProxy()
222
!etsClass->
IsInterface
()) { // NOTE(gogabr): temporary ugly workaround for Function... interfaces
in Get()
/arkcompiler/runtime_core/static_core/verification/type/
H
A
D
type_type.cpp
579
if (!cls->
IsInterface
() && haveClass) {
in IsIntersectionReasonable()
582
if (!cls->
IsInterface
()) {
in IsIntersectionReasonable()
/arkcompiler/runtime_core/static_core/runtime/hotreload/
H
A
D
hotreload.cpp
221
if (clazz->
IsInterface
()) {
in ValidateClassForHotreload()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/
H
A
D
ets_class_file_test.cpp
144
ASSERT_TRUE(klassItest->
IsInterface
());
in TEST_F()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
H
A
D
std_core_Type.cpp
78
} else if (refType->
IsInterface
()) {
in GetRefTypeKind()
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H
A
D
runtime_interface.h
1212
virtual bool
IsInterface
([[maybe_unused]] ClassPtr unused) const
in IsInterface()
function in ark::compiler::RuntimeInterface
Completed in 27 milliseconds
1
2