/external/webkit/V8Binding/v8/src/ |
D | global-handles.cc | 42 state_ = NORMAL; in Initialize() 54 if (state_ != DESTROYED) Destroy(); in ~Node() 64 if (state_ == WEAK || IsNearDeath()) { in Destroy() 70 state_ = DESTROYED; in Destroy() 80 ASSERT(state_ == DESTROYED); in next_free() 84 ASSERT(state_ == DESTROYED); in set_next_free() 100 ASSERT(state_ != DESTROYED); in MakeWeak() 101 if (state_ != WEAK && !IsNearDeath()) { in MakeWeak() 107 state_ = WEAK; in MakeWeak() 114 ASSERT(state_ != DESTROYED); in ClearWeakness() [all …]
|
D | log-inl.h | 71 state_ = state; in VMState() 76 LOG(UncheckedStringEvent("Entering", StateToString(state_))); in VMState() 78 LOG(UncheckedStringEvent("From", StateToString(previous_->state_))); in VMState() 84 if (state_ == EXTERNAL) { in VMState() 86 ASSERT(previous_->state_ != EXTERNAL); in VMState() 88 } else if (previous_->state_ == EXTERNAL) { in VMState() 102 LOG(UncheckedStringEvent("Leaving", StateToString(state_))); in ~VMState() 104 LOG(UncheckedStringEvent("To", StateToString(previous_->state_))); in ~VMState() 110 if (state_ == EXTERNAL) { in ~VMState() 112 ASSERT(previous_->state_ != EXTERNAL); in ~VMState() [all …]
|
D | mark-compact.cc | 51 MarkCompactCollector::CollectorState MarkCompactCollector::state_ = IDLE; member in v8::internal::MarkCompactCollector 68 ASSERT(state_ == PREPARE_GC); in CollectGarbage() 109 ASSERT(state_ == IDLE); in Prepare() 110 state_ = PREPARE_GC; in Prepare() 149 ASSERT(state_ == SWEEP_SPACES || state_ == REBUILD_RSETS); in Finish() 150 state_ = IDLE; in Finish() 760 ASSERT(state_ == PREPARE_GC); in MarkLiveObjects() 761 state_ = MARK_LIVE_OBJECTS; in MarkLiveObjects() 845 ASSERT(state_ == MARK_LIVE_OBJECTS); in SweepLargeObjectSpace() 846 state_ = in SweepLargeObjectSpace() [all …]
|
D | mark-compact.h | 107 static bool in_use() { return state_ > PREPARE_GC; } in in_use() 124 static CollectorState state_; variable
|
D | frames.h | 130 Address sp() const { return state_.sp; } in sp() 131 Address fp() const { return state_.fp; } in fp() 137 Address* pc_address() const { return state_.pc_address; } in pc_address() 189 State state_; variable
|
D | log.h | 97 StateTag state() { return state_; } in state() 101 StateTag state_; variable
|
D | api.h | 150 ExtensionTraversalState state() { return state_; } in state() 151 void set_state(ExtensionTraversalState value) { state_ = value; } in set_state() 157 ExtensionTraversalState state_; variable
|
D | frames.cc | 154 result->state_ = *state; in SingletonFor()
|
D | api.cc | 287 : extension_(extension), state_(UNVISITED) { } in RegisteredExtension()
|
/external/gtest/test/ |
D | gtest-typed-test_test.cc | 179 state_.AddTestName("foo.cc", 0, "FooTest", "A"); in SetUp() 180 state_.AddTestName("foo.cc", 0, "FooTest", "B"); in SetUp() 181 state_.AddTestName("foo.cc", 0, "FooTest", "C"); in SetUp() 184 TypedTestCasePState state_; member in TypedTestCasePStateTest 190 state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); in TEST_F() 198 state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); in TEST_F() 207 state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, A, C"), in TEST_F() 213 state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C, D"), in TEST_F() 219 state_.VerifyRegisteredTestNames("foo.cc", 1, "A, C"), in TEST_F() 226 state_.VerifyRegisteredTestNames("foo.cc", 1, "A, B, C"); in TEST_F() [all …]
|
/external/webkit/V8Binding/v8/test/cctest/ |
D | test-decls.cc | 375 AppearingPropertyContext() : state_(DECLARE) { } in AppearingPropertyContext() 379 switch (state_) { in Has() 383 state_ = INITIALIZE_IF_ASSIGN; in Has() 388 state_ = UNKNOWN; in Has() 391 CHECK(state_ == UNKNOWN); in Has() 399 State state_; member in AppearingPropertyContext 458 ReappearingPropertyContext() : state_(DECLARE) { } in ReappearingPropertyContext() 462 switch (state_) { in Has() 466 state_ = DONT_DECLARE; in Has() 471 state_ = INITIALIZE; in Has() [all …]
|
/external/webkit/V8Binding/v8/src/arm/ |
D | codegen-arm.h | 176 CodeGenState* state() { return state_; } in state() 177 void set_state(CodeGenState* state) { state_ = state; } in set_state() 198 TypeofState typeof_state() const { return state_->typeof_state(); } in typeof_state() 199 JumpTarget* true_target() const { return state_->true_target(); } in true_target() 200 JumpTarget* false_target() const { return state_->false_target(); } in false_target() 390 CodeGenState* state_; variable
|
D | codegen-arm.cc | 135 state_(NULL), in CodeGenerator() 328 ASSERT(state_ == NULL); in GenCode()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | cache.h | 436 state_ = fst.impl_->ExtendState(s); in CacheArcIterator() 437 ++state_->ref_count; in CacheArcIterator() 440 ~CacheArcIterator() { --state_->ref_count; } in ~CacheArcIterator() 442 bool Done() const { return i_ >= state_->arcs.size(); } in Done() 444 const Arc& Value() const { return state_->arcs[i_]; } in Value() 453 const State *state_;
|
D | queue.h | 293 order_(0), state_(0) { in TopOrderQueue() 299 state_.resize(order_.size(), kNoStateId); in TopOrderQueue() 306 order_(order), state_(order.size(), kNoStateId) {} in TopOrderQueue() 308 StateId Head() const { return state_[front_]; } in Head() 314 state_[order_[s]] = s; in Enqueue() 318 state_[front_] = kNoStateId; in Dequeue() 319 while ((front_ <= back_) && (state_[front_] == kNoStateId)) ++front_; in Dequeue() 327 for (StateId i = front_; i <= back_; ++i) state_[i] = kNoStateId; in Clear() 336 vector<StateId> state_; variable
|
D | vector-fst.h | 729 state_ = fst->impl_->GetState(s); in MutableArcIterator() 733 virtual bool Done() const { return i_ >= state_->arcs.size(); } in Done() 735 virtual const A& Value() const { return state_->arcs[i_]; } in Value() 744 A& oarc = state_->arcs[i_]; in SetValue() 748 --state_->niepsilons; in SetValue() 754 --state_->noepsilons; in SetValue() 763 ++state_->niepsilons; in SetValue() 769 ++state_->noepsilons; in SetValue() 779 struct VectorState<A> *state_;
|
D | map.h | 769 state_ = fst_->AddState(); in GallicToNewSymbolsMapper() 770 fst_->SetStart(state_); in GallicToNewSymbolsMapper() 771 fst_->SetFinal(state_, AW::One()); in GallicToNewSymbolsMapper() 801 for(ssize_t i = 0, p = state_; in operator() 804 n = i == w1.Size() - 1 ? state_ : fst_->AddState(); in operator() 843 StateId state_; member
|
/external/webkit/V8Binding/v8/src/x64/ |
D | codegen-x64.h | 323 CodeGenState* state() { return state_; } in state() 324 void set_state(CodeGenState* state) { state_ = state; } in set_state() 345 TypeofState typeof_state() const { return state_->typeof_state(); } in typeof_state() 346 ControlDestination* destination() const { return state_->destination(); } in destination() 576 CodeGenState* state_; variable
|
D | codegen-x64.cc | 265 state_(NULL), in CodeGenerator() 471 ASSERT(state_ == NULL); in GenCode()
|
/external/webkit/V8Binding/v8/src/ia32/ |
D | codegen-ia32.h | 323 CodeGenState* state() { return state_; } in state() 324 void set_state(CodeGenState* state) { state_ = state; } in set_state() 344 TypeofState typeof_state() const { return state_->typeof_state(); } in typeof_state() 345 ControlDestination* destination() const { return state_->destination(); } in destination() 576 CodeGenState* state_; variable
|
D | codegen-ia32.cc | 115 state_(NULL), in CodeGenerator() 313 ASSERT(state_ == NULL); in GenCode()
|
/external/bison/ |
D | ChangeLog | 3151 (user_token_number_max_, undef_token_, n_, len_, state_, nerrs_)
|