HomeSort by relevance Sort by last modified time
    Searched refs:Current (Results 176 - 200 of 257) sorted by null

1 2 3 4 5 6 78 91011

  /external/v8/src/
d8-debug.cc 162 RemoteDebugger debugger(i::Isolate::Current(), port);
debug-agent.cc 41 DebuggerAgent* agent = Isolate::Current()->debugger_agent_instance();
389 int buffer_position = 0; // Current buffer position.
top.cc 84 simulator_ = Simulator::current(Isolate::Current());
86 simulator_ = Simulator::current(Isolate::Current());
89 thread_id_ = ThreadId::Current();
434 // Get the global context of current top context.
460 // current lexical context and the accessed object.
503 // current lexical context and the accessed object.
620 // current frame is the top-level frame.
    [all...]
global-handles.cc 67 if (state_ != DESTROYED) Destroy(Isolate::Current()->global_handles());
266 Chunk* current = current_; local
267 ASSERT(current != NULL); // At least a single block must by allocated
269 Chunk* previous = current->previous;
270 delete current;
271 current = previous;
272 } while (current != NULL);
385 for (Node* current = head_; current != NULL; current = current->next())
    [all...]
serialize.h 316 // Cached current isolate.
563 Isolate::Current()->set_serialize_partial_snapshot_cache_length(0);
565 // Serialize the current state of the heap. The order is:
assembler.cc 508 Isolate::Current()->deoptimizer_data() != NULL) {
596 return ExternalReference(Isolate::Current());
    [all...]
compiler.cc 127 Isolate* isolate = Isolate::Current();
257 // Recompile the unoptimized version of the code if the current version
668 !Isolate::Current()->debug()->has_break_points()) {
d8.cc 61 LineEditor* current = first_; local
62 LineEditor* best = current;
63 while (current != NULL) {
64 if (current->type_ > best->type_)
65 best = current;
66 current = current->next_;
112 // Executes a string within the current v8 context.
459 i::Debug* debug = i::Isolate::Current()->debug();
745 new ShellThread(i::Isolate::Current(),
    [all...]
objects-inl.h     [all...]
objects.cc 92 Isolate* isolate = Isolate::Current();
114 return Isolate::Current()->heap()->ToBoolean(Smi::cast(this)->value() != 0);
138 Heap* heap = Isolate::Current()->heap();
497 // Traverse the prototype chain from the current object (this) to
501 // only continue with a current object just after the interceptor
504 for (Object* current = this; true; current = current->GetPrototype()) {
505 if (current->IsAccessCheckNeeded()) {
506 // Check if we're allowed to read from the current object. Not
3714 Map* current = this; local
4755 ConsString* current = this; local
4964 Relocatable* current = isolate->relocatable_top(); local
5009 Relocatable* current = top; local
5145 ConsString* current = this; local
9145 Object* current = elements->get(i); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 899 talk_base::Thread::Current()->socketserver())->Add(this);
907 talk_base::Thread::Current()->socketserver())->Remove(this);
938 talk_base::Thread::Current()->socketserver())->Remove(this);
  /external/v8/src/mips/
assembler-mips.h 367 : cpu_features_(Isolate::Current()->cpu_features()),
368 isolate_(Isolate::Current()) {
376 ASSERT_EQ(Isolate::Current(), isolate_);
436 // bind(&L); // bind label to the current pc
442 void bind(Label* L); // binds an unbound label L to the current code position
444 // Returns the branch offset to the given label from the current code position
445 // Links the label to the current position if it is still unbound
479 // Difference between address of current opcode and target address offset.
508 // Difference between address of current opcode and value read from pc
576 // Jump targets must be in the current 256 MB-aligned region. ie 28 bits
    [all...]
simulator-mips.cc 627 PrintF(" ignore the stop instruction at the current location");
742 if (Isolate::Current()->simulator_initialized()) return;
743 Isolate::Current()->set_simulator_initialized(true);
748 Simulator::Simulator() : isolate_(Isolate::Current()) {
804 Isolate* isolate = Isolate::Current();
806 Simulator::current(isolate)->
822 Isolate* isolate = Isolate::Current();
823 Redirection* current = isolate->simulator_redirection(); local
824 for (; current != NULL; current = current->next_)
853 Simulator* Simulator::current(Isolate* isolate) { function in class:v8::internal::Simulator
    [all...]
  /external/v8/test/cctest/
test-assembler-mips.cc 287 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
360 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
421 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
569 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
777 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
1082 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
1165 if (Isolate::Current()->cpu_features()->IsSupported(FPU)) {
    [all...]
test-disasm-ia32.cc 61 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
275 Handle<Code> ic(Isolate::Current()->builtins()->builtin(
  /external/v8/src/arm/
simulator-arm.cc 411 Heap* current_heap = v8::internal::Isolate::Current()->heap();
509 // Remove the current stop.
608 PrintF(" ignore the stop instruction at the current location\n");
723 if (Isolate::Current()->simulator_initialized()) return;
724 Isolate::Current()->set_simulator_initialized(true);
729 Simulator::Simulator() : isolate_(Isolate::Current()) {
800 Isolate* isolate = Isolate::Current();
802 Simulator::current(isolate)->
818 Isolate* isolate = Isolate::Current();
819 Redirection* current = isolate->simulator_redirection() local
849 Simulator* Simulator::current(Isolate* isolate) { function in class:v8::internal::Simulator
    [all...]
regexp-macro-assembler-arm.cc 46 * - r5 : Pointer to current code object (Code*) including heap object tag.
47 * - r6 : Current position in input, as negative offset from end of string.
63 * - fp[52] Isolate* isolate (Address of the current isolate)
119 : masm_(new MacroAssembler(Isolate::Current(), NULL, kRegExpCodeSize)),
318 // r2 - Address of current input position.
359 // r1: Address byte_offset2 - Address of current character position.
369 // Address of current input position.
426 // Move current character position to position after match.
527 // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0c
544 // See if current character is '\n'^1 or '\r'^1, i.e., 0x0b or 0x0
    [all...]
ic-arm.cc 555 Isolate::Current()->stub_cache()->GenerateProbe(
595 Isolate::Current()->stub_cache()->GenerateProbe(
880 Isolate::Current()->stub_cache()->GenerateProbe(
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 389 Thread *current_thread = Thread::Current();
stream.cc 123 PostEvent(Thread::Current(), events, err);
722 data_length_(0), read_position_(0), owner_(Thread::Current()) {
  /external/mesa3d/src/mesa/main/
mtypes.h 748 * Current attribute group (GL_CURRENT_BIT).
753 * \name Current vertex attributes.
755 * \note Index and Edgeflag current values are stored as floats in the
761 * \name Current raster position attributes (always valid).
1094 GLubyte _BackFace; /**< Current back stencil state (1 or 2) */
    [all...]
  /external/v8/src/ia32/
assembler-ia32-inl.h 212 Isolate::Current()->debug()->has_break_points()) {
ic-ia32.cc 867 Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, edx, ecx, ebx,
    [all...]
  /external/v8/src/x64/
assembler-x64-inl.h 67 int current = code_targets_.length(); local
68 if (current > 0 && code_targets_.last().is_identical_to(target)) {
70 emitl(current - 1);
73 emitl(current);
380 Isolate::Current()->debug()->has_break_points()) {
ic-x64.cc     [all...]

Completed in 1320 milliseconds

1 2 3 4 5 6 78 91011