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:protoOrHClass
(Results
1 - 8
of
8
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/
H
A
D
js_function.h
204
JSTaggedValue
protoOrHClass
= GetProtoOrHClass();
in GetFunctionPrototype()
local
205
if (
protoOrHClass
.IsJSHClass()) {
in GetFunctionPrototype()
206
return JSHClass::Cast(
protoOrHClass
.GetTaggedObject())->GetPrototype();
in GetFunctionPrototype()
209
return
protoOrHClass
;
in GetFunctionPrototype()
213
JSTaggedValue
protoOrHClass
);
220
JSTaggedValue
protoOrHClass
= GetProtoOrHClass();
in HasInitialClass()
local
221
return
protoOrHClass
.IsJSHClass();
in HasInitialClass()
226
JSTaggedValue
protoOrHClass
= GetProtoOrHClass();
in HasFunctionPrototype()
local
227
return !
protoOrHClass
.IsHole();
in HasFunctionPrototype()
H
A
D
js_function.cpp
130
JSTaggedValue
protoOrHClass
(fun->GetProtoOrHClass());
in GetOrCreateInitialJSHClass()
131
if (
protoOrHClass
.IsJSHClass()) {
in GetOrCreateInitialJSHClass()
132
return reinterpret_cast<JSHClass *>(
protoOrHClass
.GetTaggedObject());
in GetOrCreateInitialJSHClass()
178
JSTaggedValue
protoOrHClass
= func->GetProtoOrHClass();
in PrototypeSetter()
local
179
if (
protoOrHClass
.IsJSHClass()) {
in PrototypeSetter()
181
JSHandle<JSHClass> hclass(thread, JSHClass::Cast(
protoOrHClass
.GetTaggedObject()));
in PrototypeSetter()
212
JSTaggedValue
protoOrHClass
)
in SetFunctionPrototypeOrInstanceHClass()
214
JSHandle<JSTaggedValue> protoHandle(thread,
protoOrHClass
);
in SetFunctionPrototypeOrInstanceHClass()
900
JSTaggedValue
protoOrHClass
(derived->GetProtoOrHClass());
in GetOrCreateDerivedJSHClass()
902
if (
protoOrHClass
in GetOrCreateDerivedJSHClass()
211
SetFunctionPrototypeOrInstanceHClass(const JSThread *thread, const JSHandle<JSFunction> &fun, JSTaggedValue
protoOrHClass
)
SetFunctionPrototypeOrInstanceHClass()
argument
[all...]
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H
A
D
pgo_profiler.cpp
66
auto
protoOrHClass
= ctorFunc->GetProtoOrHClass();
in ProfileDefineClass()
local
67
if (
protoOrHClass
.IsJSHClass()) {
in ProfileDefineClass()
68
auto ihc = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
in ProfileDefineClass()
70
protoOrHClass
= ihc->GetProto();
in ProfileDefineClass()
72
if (
protoOrHClass
.IsJSObject()) {
in ProfileDefineClass()
73
auto phc =
protoOrHClass
.GetTaggedObject()->GetClass();
in ProfileDefineClass()
1354
auto
protoOrHClass
= ctorFunction->GetProtoOrHClass();
in DumpDefineClass()
local
1355
if (
protoOrHClass
.IsJSHClass()) {
in DumpDefineClass()
1356
auto ihc = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
in DumpDefineClass()
1359
protoOrHClass
in DumpDefineClass()
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H
A
D
ntype_hcr_lowering.cpp
221
JSTaggedValue
protoOrHClass
= arrayFunc->GetProtoOrHClass();
in NewJSArrayLiteral()
local
222
JSHClass *arrayHC = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
in NewJSArrayLiteral()
H
A
D
new_object_stub_builder.cpp
2282
GateRef
protoOrHClass
= GetProtoOrHClass(constructor);
in NewJSObjectByConstructor()
local
2283
BRANCH(IsJSHClass(
protoOrHClass
), &isHClass, &slowPath);
in NewJSObjectByConstructor()
2285
jshclass =
protoOrHClass
;
in NewJSObjectByConstructor()
H
A
D
typed_bytecode_lowering.cpp
2300
JSTaggedValue
protoOrHClass
= objectFunc->GetProtoOrHClass();
in LowerCreateEmptyObject()
local
2301
JSHClass *objectHC = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
in LowerCreateEmptyObject()
/arkcompiler/ets_runtime/ecmascript/jit/
H
A
D
jit_profiler.cpp
372
JSTaggedValue
protoOrHClass
= callee->GetProtoOrHClass();
in ConvertNewObjRange()
local
373
if (
protoOrHClass
.IsJSHClass()) {
in ConvertNewObjRange()
374
hclass = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
in ConvertNewObjRange()
/arkcompiler/ets_runtime/ecmascript/stubs/
H
A
D
runtime_stubs-inl.h
1155
JSTaggedValue
protoOrHClass
= JSHandle<JSFunction>(ctor)->GetProtoOrHClass();
local
1156
if (
protoOrHClass
.IsJSHClass()) {
1157
JSHClass *ihc = JSHClass::Cast(
protoOrHClass
.GetTaggedObject());
1163
JSHandle<JSObject> protoHandle(thread,
protoOrHClass
);
Completed in 38 milliseconds