Searched refs:previous_ (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/base/containers/
H A Dlinked_list.h87 LinkNode() : previous_(NULL), next_(NULL) {}
89 : previous_(previous), next_(next) {}
94 this->previous_ = e->previous_;
95 e->previous_->next_ = this;
96 e->previous_ = this;
102 this->previous_ = e;
103 e->next_->previous_ = this;
109 this->previous_->next_ = this->next_;
110 this->next_->previous_
135 LinkNode<T>* previous_; member in class:base::LinkNode
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dpreferences_unittest.cc35 manager_->previous_->SetValue(current_input_method_on_pref);
48 : previous_(previous),
58 StringPrefMember* previous_; member in class:chromeos::__anon3451::MyMockInputMethodManager
/external/chromium_org/v8/src/heap/
H A Dgc-tracer.cc94 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_
[all...]
H A Dgc-tracer.h348 Event previous_;
/external/chromium_org/v8/src/
H A Dv8threads.cc187 previous_(this),
203 next_->previous_ = previous_;
204 previous_->next_ = next_;
213 previous_ = flying_anchor;
215 next_->previous_ = this;
H A Dv8threads.h45 ThreadState* previous_; member in class:v8::internal::ThreadState
H A Dfull-codegen.h135 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_;
H A Dhydrogen-gvn.cc730 : 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
H A Disolate.cc2110 deferred_handles_head_->previous_ = deferred;
2120 while (deferred_iterator->previous_ != NULL) {
2121 deferred_iterator = deferred_iterator->previous_;
2129 deferred->next_->previous_ = deferred->previous_;
2131 if (deferred->previous_ != NULL) {
2132 deferred->previous_->next_ = deferred->next_;
H A Dapi.h464 previous_(NULL),
474 DeferredHandles* previous_; member in class:v8::internal::DeferredHandles
H A Dhydrogen-instructions.cc654 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_
[all...]
H A Dparser.cc287 : 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
H A Dfull-codegen.cc1601 return previous_;
H A Dhydrogen-instructions.h1148 HInstruction* previous() const { return previous_; }
1213 previous_(NULL),
1227 HInstruction* previous_; member in class:v8::HInstruction
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer.h236 Token previous_; // Returned by previous(). member in class:google::protobuf::io::Tokenizer
372 return previous_;
H A Dtokenizer.cc552 previous_ = current_;
601 if (previous_.type == TYPE_IDENTIFIER &&
602 current_.line == previous_.line &&
603 current_.column == previous_.end_column) {
/external/chromium_org/device/hid/
H A Dhid_report_descriptor_item.cc27 : previous_(previous), next_(NULL), parent_(NULL), shortData_(0) {
H A Dhid_report_descriptor_item.h141 return previous_;
173 HidReportDescriptorItem* previous_; member in class:device::HidReportDescriptorItem
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
H A Dvalue.h636 * \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.
/external/jsoncpp/chromium-overrides/include/json/
H A Dvalue.h636 * \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.
/external/jsoncpp/include/json/
H A Dvalue.h636 * \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.
/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc4873 return previous_;
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc4997 return previous_;
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc4830 return previous_;
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc4887 return previous_;

Completed in 518 milliseconds

12