HomeSort by relevance Sort by last modified time
    Searched full:previous_ (Results 1 - 25 of 31) sorted by null

1 2

  /external/google-breakpad/src/client/mac/handler/
exception_handler.cc 236 previous_(NULL),
263 previous_(NULL),
657 previous_ = new (gBreakpadAllocator->Allocate(sizeof(ExceptionParameters)) )
660 previous_ = new ExceptionParameters();
668 previous_->count = EXC_TYPES_COUNT;
672 previous_->masks,
673 &previous_->count,
674 previous_->ports,
675 previous_->behaviors,
676 previous_->flavors)
    [all...]
exception_handler.h 250 ExceptionParameters *previous_; member in class:google_breakpad::ExceptionHandler
  /external/v8/src/heap/
gc-tracer.cc 94 previous_ = previous_mark_compactor_event_ = current_;
100 previous_ = current_;
104 start_time - previous_.end_time,
151 previous_.cumulative_incremental_marking_steps;
154 previous_.cumulative_incremental_marking_bytes;
157 previous_.cumulative_incremental_marking_duration;
160 previous_.cumulative_pure_incremental_marking_duration;
185 double spent_in_mutator = Max(current_.start_time - previous_.end_time, 0.0);
270 double spent_in_mutator = current_.start_time - previous_.end_time;
310 current_.start_object_size - previous_.end_object_size
    [all...]
gc-tracer.h 348 Event previous_;
  /art/compiler/optimizing/
nodes.cc 628 instruction->previous_ = last_instruction_;
636 cursor->previous_ = instruction;
640 instruction->previous_ = cursor->previous_;
642 cursor->previous_ = instruction;
643 instruction->previous_->next_ = instruction;
651 instruction->previous_ = cursor;
655 instruction->previous_ = cursor;
657 instruction->next_->previous_ = instruction;
662 if (instruction->previous_ != nullptr)
    [all...]
nodes.h 1536 HInstruction* previous_; member in class:art::HInstruction
    [all...]
  /external/v8/src/
v8threads.cc 187 previous_(this),
203 next_->previous_ = previous_;
204 previous_->next_ = next_;
213 previous_ = flying_anchor;
215 next_->previous_ = this;
v8threads.h 45 ThreadState* previous_; member in class:v8::internal::ThreadState
full-codegen.h 135 previous_ = codegen->nesting_stack_;
141 codegen_->nesting_stack_ = previous_;
157 return previous_;
164 NestedStatement* previous_; member in class:v8::internal::FullCodeGenerator::BASE_EMBEDDED
222 return previous_;
260 return previous_;
276 return previous_;
291 return previous_;
    [all...]
hydrogen-gvn.cc 730 : previous_(previous), next_(NULL) {
761 GvnBasicBlockState* result = previous_;
765 previous_->block()->block_id())
766 result = result->previous_;
771 GvnBasicBlockState* previous_; member in class:v8::internal::BASE_EMBEDDED::GvnBasicBlockState
isolate.cc     [all...]
api.h 464 previous_(NULL),
474 DeferredHandles* previous_; member in class:v8::internal::DeferredHandles
hydrogen-instructions.cc 654 DCHECK(previous_ != NULL);
655 previous_->next_ = next_;
658 block()->set_last(previous_);
660 next_->previous_ = previous_;
671 DCHECK(next->previous_ != NULL);
674 next->previous_ = this;
676 previous_ = prev;
707 previous_ = previous;
711 if (next != NULL) next->previous_ = this
    [all...]
parser.cc 287 : variable_(variable), node_(node), previous_(*variable) {
292 *variable_ = previous_;
295 Target* previous() { return previous_; }
301 Target* previous_; member in class:v8::internal::BASE_EMBEDDED
308 : variable_(variable), previous_(*variable) {
313 *variable_ = previous_;
318 Target* previous_; member in class:v8::internal::BASE_EMBEDDED
    [all...]
full-codegen.cc     [all...]
hydrogen-instructions.h 1227 HInstruction* previous_; member in class:v8::HInstruction
    [all...]
  /art/runtime/
profiler.cc 592 PreviousProfile::iterator pi = previous_.find(method_name);
593 if (pi != previous_.end()) {
595 previous_.erase(pi);
632 PreviousProfile::iterator pi = previous_.find(method_name);
633 if (pi != previous_.end()) {
648 previous_.erase(pi);
665 for (const auto &pi : previous_) {
703 for (auto &pi : previous_) {
709 previous_.clear();
791 previous_[methodname] = PreviousValue(total_count, size, context_map)
    [all...]
profiler.h 145 PreviousProfile previous_; member in class:art::ProfileSampleResults
  /external/jsoncpp/src/lib_json/
json_internalmap.inl 22 : previous_( 0 )
388 ValueInternalLink *linkPreviousToLast = lastLink->previous_;
411 ValueInternalLink *&previous = buckets_[bucketIndex+1].previous_;
575 iterator.link_ = iterator.link_->previous_;
  /art/compiler/utils/
assembler.h 144 AssemblerFixup* previous_; member in class:art::AssemblerFixup
147 AssemblerFixup* previous() const { return previous_; }
148 void set_previous(AssemblerFixup* previous_in) { previous_ = previous_in; }
  /external/jsoncpp/chromium-overrides/include/json/
value.h 636 * \internal previous_ & next_ allows for bidirectional traversal.
653 ValueInternalLink *previous_; member in class:Json::ValueInternalLink
665 * link of a given bucket can be found in the 'previous_' field of the following bucket.
    [all...]
  /external/jsoncpp/include/json/
value.h 636 * \internal previous_ & next_ allows for bidirectional traversal.
653 ValueInternalLink *previous_; member in class:Json::ValueInternalLink
665 * link of a given bucket can be found in the 'previous_' field of the following bucket.
    [all...]
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 562 previous_ = current_;
611 if (previous_.type == TYPE_IDENTIFIER &&
612 current_.line == previous_.line &&
613 current_.column == previous_.end_column) {
    [all...]
tokenizer.h 252 Token previous_; // Returned by previous(). member in class:google::protobuf::io::Tokenizer
390 return previous_;
  /external/v8/src/arm/
full-codegen-arm.cc     [all...]

Completed in 1033 milliseconds

1 2