HomeSort by relevance Sort by last modified time
    Searched refs:Pending (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 47 enum State { Initial, Pending, Done };
RespondWithObserver.cpp 94 m_state = Pending;
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryManager.cpp 38 if (m_state == Pending)
48 m_state = Pending;
84 if (m_state == Pending) {
BatteryManager.h 62 Pending,
  /external/clang/include/clang/Sema/
AnalysisBasedWarnings.h 51 enum VisitFlag { NotVisited = 0, Visited = 1, Pending = 2 };
ExternalSemaSource.h 172 /// \brief Read the set of pending instantiations known to the external
175 /// The external source should append its own pending instantiations to the
181 SourceLocation> > &Pending) {}
MultiplexExternalSemaSource.h 322 /// \brief Read the set of pending instantiations known to the external
325 /// The external source should append its own pending instantiations to the
330 SmallVectorImpl<std::pair<ValueDecl*, SourceLocation> >& Pending) override;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseResolver.h 85 // promise is pending and the associated ExecutionContext isn't stopped.
96 Pending,
115 if (m_state != Pending || !executionContext() || executionContext()->activeDOMObjectsAreStopped())
ScriptPromisePropertyBase.cpp 20 , m_state(Pending)
59 case Pending:
75 ASSERT(m_state == Pending);
105 m_state = Pending;
111 case Pending:
ScriptPromisePropertyBase.h 34 Pending,
ScriptPromiseResolver.cpp 14 , m_state(Pending)
49 // Keep |this| while the promise is Pending.
ScriptPromiseProperty.h 66 // holder wrapper. Resets the internal state to Pending and clears the
95 if (state() != Pending) {
109 if (state() != Pending) {
ScriptPromisePropertyTest.cpp 209 EXPECT_EQ(Property::Pending, property()->state());
231 EXPECT_EQ(Property::Pending, property()->state());
264 EXPECT_EQ(Property::Pending, property()->state());
385 EXPECT_EQ(Property::Pending, property->state());
  /external/chromium_org/gpu/command_buffer/client/
query_tracker_unittest.cc 146 EXPECT_FALSE(query->Pending());
153 EXPECT_FALSE(query->Pending());
160 EXPECT_TRUE(query->Pending());
167 EXPECT_TRUE(query->Pending());
174 // Set Query in pending state_ to simulate EndQuery command is called
176 EXPECT_TRUE(query->Pending());
199 EXPECT_FALSE(query->Pending());
query_tracker.h 128 bool Pending() const {
query_tracker.cc 150 if (Pending()) {
246 if (query->Pending() &&
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayerTest.cpp 96 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
148 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
161 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
180 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
261 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
284 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
294 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
312 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
322 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal());
328 EXPECT_EQ(AnimationPlayer::Pending, player->playStateInternal())
    [all...]
AnimationPlayer.h 53 Pending,
  /external/chromium_org/v8/src/arm64/
delayed-masm-arm64.h 18 // - merge with the pending instruction and generate just one instruction.
19 // - emit the pending instruction and then generate the instruction (or set the
20 // pending instruction).
38 DCHECK(!pending());
66 bool pending() { return pending_ != kNone; } function in class:v8::internal::BASE_EMBEDDED
69 // potential pending instruction).
76 // Instructions which try to merge which the pending instructions.
82 // Emit the potential pending instruction.
84 // Reset the pending state.
127 // consistent with the pending one for stp/ldp we generate ldp/stp. Else
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 292 Pending.push(SU);
352 /// Release pending ready nodes in to the available queue. This makes them
359 // Check to see if any of the pending instructions are ready to issue. If
361 for (unsigned i = 0, e = Pending.size(); i != e; ++i) {
362 SUnit *SU = *(Pending.begin()+i);
375 Pending.remove(Pending.begin()+i);
386 assert(Pending.isInQueue(SU) && "bad ready count");
387 Pending.remove(Pending.find(SU))
    [all...]
HexagonMachineScheduler.h 138 ReadyQueue Pending;
153 /// Pending queues extend the ready queues with the same ID and the
157 Pending(ID << ConvergingVLIWScheduler::LogMaxQID, Name+".P"),
  /external/chromium_org/v8/src/
hydrogen-range-analysis.cc 11 class Pending {
13 Pending(HBasicBlock* block, int last_changed_range)
37 ZoneList<Pending> stack(graph()->blocks()->length(), zone());
90 stack.Add(Pending(dominated_blocks->at(i), last_changed_range), zone());
94 // Pop next pending block from stack.
95 Pending pending = stack.RemoveLast(); local
96 RollBackTo(pending.last_changed_range());
97 block = pending.block();
  /external/llvm/lib/Target/R600/
R600MachineScheduler.cpp 77 (AluInstCount + AvailablesAluCount() + Pending[IDAlu].size()) /
177 MoveUnits(Pending[IDFetch], Available[IDFetch]);
207 Pending[IK].push_back(SU);
339 std::vector<SUnit *> &QSrc = Pending[IDAlu];
409 while (AvailablesAluCount() || !Pending[IDAlu].empty()) {
460 MoveUnits(Pending[QID], AQ);
R600MachineScheduler.h 54 std::vector<SUnit *> Available[IDLast], Pending[IDLast];
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStream.cpp 166 if (m_wait->state() == m_wait->Pending)

Completed in 275 milliseconds

1 2