HomeSort by relevance Sort by last modified time
    Searched refs:ScriptContextTable (Results 1 - 15 of 15) sorted by null

  /external/v8/src/
contexts-inl.h 16 ScriptContextTable* ScriptContextTable::cast(Object* context) {
18 return reinterpret_cast<ScriptContextTable*>(context);
22 int ScriptContextTable::used() const {
27 void ScriptContextTable::set_used(int used) {
33 Handle<Context> ScriptContextTable::GetContext(Handle<ScriptContextTable> table,
contexts.cc 16 Handle<ScriptContextTable> ScriptContextTable::Extend(
17 Handle<ScriptContextTable> table, Handle<Context> script_context) {
18 Handle<ScriptContextTable> result;
28 result = Handle<ScriptContextTable>::cast(copy);
40 bool ScriptContextTable::Lookup(Handle<ScriptContextTable> table,
262 Handle<ScriptContextTable> script_contexts(
264 ScriptContextTable::LookupResult r;
265 if (ScriptContextTable::Lookup(script_contexts, name, &r))
    [all...]
contexts.h 230 V(SCRIPT_CONTEXT_TABLE_INDEX, ScriptContextTable, script_context_table) \
276 class ScriptContextTable : public FixedArray {
279 static inline ScriptContextTable* cast(Object* context);
292 static inline Handle<Context> GetContext(Handle<ScriptContextTable> table,
295 // Lookup a variable `name` in a ScriptContextTable.
300 static bool Lookup(Handle<ScriptContextTable> table, Handle<String> name,
304 static Handle<ScriptContextTable> Extend(Handle<ScriptContextTable> table,
317 DISALLOW_IMPLICIT_CONSTRUCTORS(ScriptContextTable);
368 // ScriptContextTable
    [all...]
code-stubs.h     [all...]
factory.h 247 Handle<ScriptContextTable> NewScriptContextTable();
bootstrapper.cc 190 // The native context has a ScriptContextTable that store declarative bindings
    [all...]
factory.cc 776 Handle<ScriptContextTable> Factory::NewScriptContextTable() {
779 Handle<ScriptContextTable> context_table =
780 Handle<ScriptContextTable>::cast(array);
    [all...]
objects.h 95 // - ScriptContextTable
    [all...]
  /external/v8/src/compiler/
js-global-object-specialization.cc 242 Handle<ScriptContextTable> script_context_table(
244 ScriptContextTable::LookupResult lookup_result;
245 if (!ScriptContextTable::Lookup(script_context_table,
249 Handle<Context> script_context = ScriptContextTable::GetContext(
  /external/v8/src/runtime/
runtime-scopes.cc 47 Handle<ScriptContextTable> script_contexts(
49 ScriptContextTable::LookupResult lookup;
50 if (ScriptContextTable::Lookup(script_contexts, name, &lookup) &&
604 Handle<ScriptContextTable> script_context) {
609 ScriptContextTable::LookupResult lookup;
610 if (ScriptContextTable::Lookup(script_context, name, &lookup)) {
650 Handle<ScriptContextTable> script_context_table(
670 Handle<ScriptContextTable> new_script_context_table =
671 ScriptContextTable::Extend(script_context_table, result);
    [all...]
  /external/v8/src/debug/
debug-scopes.cc 455 Handle<ScriptContextTable> script_contexts(
464 ScriptContextTable::GetContext(script_contexts, context_index);
719 Handle<ScriptContextTable> script_contexts(
721 ScriptContextTable::LookupResult lookup_result;
722 if (ScriptContextTable::Lookup(script_contexts, variable_name,
724 Handle<Context> script_context = ScriptContextTable::GetContext(
  /external/v8/test/cctest/
test-inobject-slack-tracking.cc 58 Handle<ScriptContextTable> script_contexts(
61 ScriptContextTable::LookupResult lookup_result;
62 if (ScriptContextTable::Lookup(script_contexts, str_name, &lookup_result)) {
64 FixedArray::get(*ScriptContextTable::GetContext(
    [all...]
  /external/v8/src/ic/
ic.cc 649 Handle<ScriptContextTable> script_contexts(
652 ScriptContextTable::LookupResult lookup_result;
653 if (ScriptContextTable::Lookup(script_contexts, str_name, &lookup_result)) {
655 FixedArray::get(*ScriptContextTable::GetContext(
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc     [all...]
hydrogen-instructions.cc     [all...]

Completed in 327 milliseconds