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:prototype_p
(Results
1 - 5
of
5
) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/operations/
H
A
D
ecma-objects-arguments.c
67
ecma_object_t *
prototype_p
= ecma_builtin_get (ECMA_BUILTIN_ID_OBJECT_PROTOTYPE);
in ecma_op_create_arguments_object()
local
77
obj_p = ecma_create_object (
prototype_p
,
in ecma_op_create_arguments_object()
108
obj_p = ecma_create_object (
prototype_p
, sizeof (ecma_extended_object_t), ECMA_OBJECT_TYPE_CLASS);
in ecma_op_create_arguments_object()
H
A
D
ecma-exceptions.c
178
ecma_object_t *
prototype_p
= ECMA_GET_NON_NULL_POINTER (ecma_object_t, error_object->u2.prototype_cp);
in ecma_get_error_type()
local
180
uint8_t builtin_id = ecma_get_object_builtin_id (
prototype_p
);
in ecma_get_error_type()
H
A
D
ecma-typedarray-object.c
541
ecma_object_t *
prototype_p
= ecma_op_get_prototype_from_constructor (ctor_proto_p,
in ecma_typedarray_create_object_with_length()
local
546
if (JERRY_UNLIKELY (
prototype_p
== NULL))
in ecma_typedarray_create_object_with_length()
553
ECMA_SET_NON_NULL_POINTER (new_arraybuffer_p->u2.prototype_cp,
prototype_p
);
in ecma_typedarray_create_object_with_length()
555
ecma_deref_object (
prototype_p
);
in ecma_typedarray_create_object_with_length()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H
A
D
ecma-builtin-object.c
151
ecma_object_t *
prototype_p
= ECMA_GET_NON_NULL_POINTER (ecma_object_t, proto_cp);
in ecma_builtin_object_object_get_prototype_of()
local
152
ecma_ref_object (
prototype_p
);
in ecma_builtin_object_object_get_prototype_of()
153
return ecma_make_object_value (
prototype_p
);
in ecma_builtin_object_object_get_prototype_of()
/third_party/jerryscript/jerry-core/debugger/
H
A
D
debugger.c
1476
ecma_object_t *
prototype_p
= ECMA_GET_NON_NULL_POINTER (ecma_object_t, prototype_cp);
in jerry_debugger_exception_object_to_string()
local
1478
if (ecma_get_object_type (
prototype_p
) != ECMA_OBJECT_TYPE_GENERAL
in jerry_debugger_exception_object_to_string()
1479
|| !ecma_get_object_is_builtin (
prototype_p
))
in jerry_debugger_exception_object_to_string()
1486
switch (((ecma_extended_object_t *)
prototype_p
)->u.built_in.id)
in jerry_debugger_exception_object_to_string()
Completed in 6 milliseconds