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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 48 enum State { Initial, Pending, Done };
RespondWithObserver.cpp 85 m_state = Pending;
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryManager.cpp 36 if (m_state == Pending)
46 m_state = Pending;
87 if (m_state == Pending) {
BatteryManager.h 61 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/v8/
ScriptPromiseResolverWithContext.h 84 // promise is pending and the associated ExecutionContext isn't stopped.
94 Pending,
113 if (m_state != Pending || !executionContext() || executionContext()->activeDOMObjectsAreStopped())
ScriptPromiseResolverWithContext.cpp 14 , m_state(Pending)
49 // Keep |this| while the promise is Pending.
  /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/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/chrome/browser/resources/gaia_auth/
channel.js 24 // Internal request id to track pending requests.
27 // Pending internal request callbacks.
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ImageResourceTest.cpp 120 EXPECT_EQ(Resource::Pending, cachedImage->status());
124 EXPECT_EQ(Resource::Pending, cachedImage->status());
Resource.h 79 Pending, // only partially loaded
  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_handler.js 35 * Pending items of delete operation.
60 * Pending time before a delete item is added to the progress center.
240 var pending;
258 pending = event.taskId in this.pendingItems_;
268 if (!pending)
276 pending = event.taskId in this.pendingItems_;
296 if (!pending || event.reason === 'ERROR')
298 if (pending)
305 * Shows the pending item.
307 * @param {ProgressCenterItem} item Pending item
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpSinkStateMachine.java 23 * (Pending)
72 private Pending mPending;
86 // mIncomingDevice is the device connecting to us, valid only in Pending state
97 // Connecting to a device, Pending
100 // Pending
102 // Disconnecting device Pending
104 // Incoming connections Pending
126 mPending = new Pending();
281 private class Pending extends State {
284 log("Enter Pending: " + getCurrentMessage().what)
    [all...]
A2dpStateMachine.java 23 * (Pending)
69 private Pending mPending;
83 // mIncomingDevice is the device connecting to us, valid only in Pending state
94 // Connecting to a device, Pending
97 // Pending
99 // Disconnecting device Pending
101 // Incoming connections Pending
122 mPending = new Pending();
274 private class Pending extends State {
277 log("Enter Pending: " + getCurrentMessage().what)
    [all...]
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 271 SourceLocation> > &Pending) {
273 Sources[i]->ReadPendingInstantiations(Pending);
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]

Completed in 464 milliseconds

1 2