OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopeIterator
(Results
1 - 13
of
13
) sorted by null
/external/v8/src/debug/
debug-scopes.cc
17
ScopeIterator
::
ScopeIterator
(Isolate* isolate, FrameInspector* frame_inspector,
18
ScopeIterator
::Option option)
45
// parsing. Sometimes we want to run the
ScopeIterator
as fast as possible
117
ScopeIterator
::
ScopeIterator
(Isolate* isolate, Handle<JSFunction> function)
128
MUST_USE_RESULT MaybeHandle<JSObject>
ScopeIterator
::MaterializeScopeDetails() {
147
void
ScopeIterator
::Next() {
182
ScopeIterator
::ScopeType
ScopeIterator
::Type()
[
all
...]
debug-scopes.h
18
class
ScopeIterator
{
38
ScopeIterator
(Isolate* isolate, FrameInspector* frame_inspector,
41
ScopeIterator
(Isolate* isolate, Handle<JSFunction> function);
43
~
ScopeIterator
() { delete non_locals_; }
144
DISALLOW_IMPLICIT_CONSTRUCTORS(
ScopeIterator
);
debug-evaluate.cc
159
const
ScopeIterator
::Option option =
ScopeIterator
::COLLECT_NON_LOCALS;
160
for (
ScopeIterator
it(isolate, &frame_inspector, option);
162
ScopeIterator
::ScopeType scope_type = it.Type();
163
if (scope_type ==
ScopeIterator
::ScopeTypeLocal) {
192
} else if (scope_type ==
ScopeIterator
::ScopeTypeCatch ||
193
scope_type ==
ScopeIterator
::ScopeTypeWith) {
203
} else if (scope_type ==
ScopeIterator
::ScopeTypeBlock) {
/external/v8/src/runtime/
runtime-debug.cc
749
for (
ScopeIterator
it(isolate, &frame_inspector); !it.Done(); it.Next()) {
811
ScopeIterator
it(isolate, &frame_inspector);
843
ScopeIterator
::Option option =
ScopeIterator
::DEFAULT;
846
if (flag) option =
ScopeIterator
::IGNORE_NESTED_SCOPES;
856
ScopeIterator
it(isolate, &frame_inspector, option);
882
for (
ScopeIterator
it(isolate, Handle<JSFunction>::cast(function));
902
ScopeIterator
it(isolate, fun);
917
static bool SetScopeVariableValue(
ScopeIterator
* it, int index,
[
all
...]
/external/v8/test/mjsunit/
debug-stepout-scope-part1.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part2.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part3.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part4.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part5.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part6.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part7.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
debug-stepout-scope-part8.js
30
// Check that the
ScopeIterator
can properly recreate the scope at
/external/v8/src/
objects.h
[
all
...]
Completed in 385 milliseconds