Home
last modified time | relevance | path

Searched refs:current_context (Results 1 – 16 of 16) sorted by relevance

/external/v8/test/cctest/
Dtest-unscopables-hidden-prototype.cc26 v8::Local<v8::Context> current_context = isolate->GetCurrentContext(); in TEST() local
33 v8::Local<v8::Object> object = t0->GetFunction(current_context) in TEST()
35 ->NewInstance(current_context) in TEST()
37 v8::Local<v8::Object> hidden_prototype = t1->GetFunction(current_context) in TEST()
39 ->NewInstance(current_context) in TEST()
42 CHECK(object->SetPrototype(current_context, hidden_prototype).FromJust()); in TEST()
45 ->Set(current_context, v8_str("object"), object) in TEST()
48 ->Set(current_context, v8_str("hidden_prototype"), hidden_prototype) in TEST()
58 ->Int32Value(current_context) in TEST()
69 ->Int32Value(current_context) in TEST()
[all …]
Dtest-receiver-check-hidden-prototype.cc25 v8::Local<v8::Context> current_context = isolate->GetCurrentContext(); in TEST() local
50 constructor_template->GetFunction(current_context) in TEST()
52 ->NewInstance(current_context) in TEST()
56 prototype_template->GetFunction(current_context) in TEST()
58 ->NewInstance(current_context) in TEST()
61 CHECK(object->SetPrototype(current_context, hidden_prototype).FromJust()); in TEST()
64 ->Set(current_context, v8_str("object"), object) in TEST()
69 ->Int32Value(current_context) in TEST()
/external/v8/src/debug/
Ddebug-evaluate.cc181 Handle<Context> current_context = it.CurrentContext(); in ContextBuilder() local
182 if (!current_context->IsDebugEvaluateContext()) { in ContextBuilder()
183 context_chain_element.wrapped_context = current_context; in ContextBuilder()
/external/skia/src/gpu/gl/
DSkNullGLContext.cpp16 static SkNullGLContext::ContextState* current_context();
139 static ContextState* Get() { return current_context(); } in Get()
561 static State* current_context() { in current_context() function
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Delement.py1207 current_context = [self]
1366 for tag in current_context:
1393 current_context = new_context
1397 for i in current_context:
1399 return current_context
/external/v8/src/compiler/
Dast-graph-builder.cc508 return NewNode(op, current_context()); in GetFunctionClosureForContext()
910 stack_node_, builder()->current_context(), in Checkpoint()
1005 Node* AstGraphBuilder::current_context() const { in current_context() function in v8::internal::compiler::AstGraphBuilder
1131 NewNode(op, current_context(), value); in VisitVariableDeclaration()
1170 NewNode(op, current_context(), value); in VisitFunctionDeclaration()
1487 environment()->Push(current_context()); in VisitTryCatchStatement()
1533 environment()->Push(current_context()); in VisitTryFinallyStatement()
3427 Node* value = NewNode(op, current_context()); in BuildVariableLoad()
3563 Node* current = NewNode(op, current_context()); in BuildVariableAssignment()
3572 Node* current = NewNode(op, current_context()); in BuildVariableAssignment()
[all …]
Dast-graph-builder.h149 Node* current_context() const;
/external/libdrm/freedreno/kgsl/
Dmsm_kgsl.h103 unsigned int current_context; member
/external/v8/src/
Disolate.cc2508 Context* current_context = Context::cast(context); in IsArrayOrObjectPrototype() local
2509 if (current_context->initial_object_prototype() == object || in IsArrayOrObjectPrototype()
2510 current_context->initial_array_prototype() == object) { in IsArrayOrObjectPrototype()
2513 context = current_context->next_context_link(); in IsArrayOrObjectPrototype()
2522 Context* current_context = Context::cast(context); in IsInAnyContext() local
2523 if (current_context->get(index) == object) { in IsInAnyContext()
2526 context = current_context->next_context_link(); in IsInAnyContext()
Daccessors.cc926 static inline bool AllowAccessToFunction(Context* current_context, in AllowAccessToFunction() argument
928 return current_context->HasSameSecurityTokenAs(function->context()); in AllowAccessToFunction()
/external/v8/src/interpreter/
Dinterpreter-assembler.cc78 return LoadRegister(Register::current_context()); in GetContext()
82 StoreRegister(value, Register::current_context()); in SetContext()
Dbytecode-generator.cc30 register_(Register::current_context()), in ContextScope()
47 DCHECK_EQ(register_.index(), Register::current_context().index()); in ~ContextScope()
1206 builder()->MoveRegister(Register::current_context(), context); in VisitTryCatchStatement()
1261 builder()->MoveRegister(Register::current_context(), context); in VisitTryFinallyStatement()
Dbytecodes.cc861 Register Register::current_context() { in current_context() function in v8::internal::interpreter::Register
Dbytecodes.h374 static Register current_context();
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOSXDYLD.cpp1595 const SymbolContext &current_context = current_frame->GetSymbolContext(eSymbolContextSymbol); in GetStepThroughTrampolinePlan() local
1596 Symbol *current_symbol = current_context.symbol; in GetStepThroughTrampolinePlan()
/external/v8/test/unittests/interpreter/
Dinterpreter-assembler-unittest.cc478 IsIntPtrConstant(Register::current_context().ToOperand() in TARGET_TEST_F()