Searched refs:pending (Results 1 - 25 of 170) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dphp.js59 if (stream.sol() && state.pending != '"') state.pending = null;
66 if (state.pending == '"') {
69 } else if (state.pending && stream.pos < state.pending.end) {
70 stream.pos = state.pending.end;
71 var style = state.pending.style;
75 state.pending = null;
78 if (style == "string" && /\"$/.test(cur) && !/\?>/.test(cur)) state.pending = '"';
79 else state.pending
[all...]
/external/valgrind/main/none/tests/
H A Dpending.stdout.exp6 6: checking SIGHUP still pending...
/external/chromium_org/gin/modules/
H A Dmodule_registry.cc67 scoped_ptr<PendingModule> pending(new PendingModule);
68 pending->id = id;
69 pending->dependencies = dependencies;
70 pending->factory.Reset(args.isolate(), factory);
74 registry->AddPendingModule(args.isolate(), pending.Pass());
134 scoped_ptr<PendingModule> pending) {
135 AttemptToLoad(isolate, pending.Pass());
177 bool ModuleRegistry::CheckDependencies(PendingModule* pending) { argument
179 size_t len = pending->dependencies.size();
181 const std::string& dependency = pending
133 AddPendingModule(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
190 Load(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
215 AttemptToLoad(Isolate* isolate, scoped_ptr<PendingModule> pending) argument
[all...]
H A Dmodule_registry.h52 scoped_ptr<PendingModule> pending);
78 void Load(v8::Isolate* isolate, scoped_ptr<PendingModule> pending);
83 bool CheckDependencies(PendingModule* pending);
84 bool AttemptToLoad(v8::Isolate* isolate, scoped_ptr<PendingModule> pending);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesis.idl30 readonly attribute boolean pending;
/external/chromium/chrome/browser/history/
H A Dpage_usage_data.h78 void set_thumbnail_pending(bool pending) { argument
79 thumbnail_pending_ = pending;
96 void set_favicon_pending(bool pending) { argument
97 favicon_pending_ = pending;
/external/chromium_org/net/quic/test_tools/
H A Ddelayed_verify_strike_register_client.cc43 vector<VerifyArgs> pending; local
44 pending_verifications_.swap(pending);
45 for (vector<VerifyArgs>::const_iterator it = pending.begin(),
46 end = pending.end(); it != end; ++it) {
/external/chromium_org/cc/resources/
H A Dtile_priority.h58 TilePriority(const TilePriority& active, const TilePriority& pending) { argument
60 pending.resolution == HIGH_RESOLUTION)
63 pending.resolution == LOW_RESOLUTION)
69 active.required_for_activation || pending.required_for_activation;
73 pending.time_to_visible_in_seconds);
76 pending.distance_to_visible_in_pixels);
/external/kernel-headers/original/linux/
H A Dudp.h45 int pending; /* Any pending frames ? */ member in struct:udp_sock
52 __u16 len; /* total length of pending frames */
H A Dworkqueue.h15 unsigned long pending; member in struct:work_struct
52 (_work)->pending = 0; \
87 * Kill off a pending schedule_delayed_work(). Note that the work callback
97 clear_bit(0, &work->pending);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_queue.cc60 size_t pending = 0; local
62 pending += queue_[i].size();
63 return base::StringPrintf("pending: %d, running: %d",
64 static_cast<int>(pending),
/external/aac/libSBRenc/src/
H A Dresampler.h126 int pending; /*! number of pending output samples */ member in struct:__anon262
/external/qemu/hw/
H A Dpckbd.c120 uint8_t pending; member in struct:KBDState
141 if (s->pending) {
144 if (s->pending == KBD_PENDING_AUX) {
163 s->pending |= KBD_PENDING_KBD;
165 s->pending &= ~KBD_PENDING_KBD;
174 s->pending |= KBD_PENDING_AUX;
176 s->pending &= ~KBD_PENDING_AUX;
282 if (s->pending == KBD_PENDING_AUX)
349 qemu_put_8s(f, &s->pending);
361 qemu_get_8s(f, &s->pending);
[all...]
H A Darmv7m_nvic.c97 /* Make pending IRQ active. */
172 if (s->gic.irq_state[irq].pending) {
178 if (s->gic.irq_state[ARMV7M_EXCP_SYSTICK].pending)
181 if (s->gic.irq_state[ARMV7M_EXCP_PENDSV].pending)
184 if (s->gic.irq_state[ARMV7M_EXCP_NMI].pending)
214 if (s->gic.irq_state[ARMV7M_EXCP_USAGE].pending) val |= (1 << 12);
215 if (s->gic.irq_state[ARMV7M_EXCP_MEM].pending) val |= (1 << 13);
216 if (s->gic.irq_state[ARMV7M_EXCP_BUS].pending) val |= (1 << 14);
217 if (s->gic.irq_state[ARMV7M_EXCP_SVC].pending) val |= (1 << 15);
310 s->gic.irq_state[ARMV7M_EXCP_PENDSV].pending
[all...]
/external/qemu/telephony/
H A Dsysdeps_posix.c36 void* pending[ SYS_MAX_QUEUE ]; member in struct:__anon26041
52 queue->pending[ queue->end++ ] = item;
64 if ( queue->pending[nn] == item ) {
65 queue->pending[nn] = queue->pending[nn+count-1];
78 return queue->pending[ queue->start++ ];
89 char pending; member in struct:SysChannelRec_
114 channel->pending = 0;
176 /* queue of pending channels */
289 if (channel->pending) {
[all...]
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_token_matcher.py65 def choose_selection_pos(self, cases, pending):
66 candidates = [pos for pos in pending if all(alternative.isalpha() for alternative in [c.identifier[pos] for c in cases])]
71 def inspect_array(self, cases, pending):
73 if pending:
74 common = [pos for pos in pending
91 next_pending = list(set(pending) - set(common))
96 pos = self.choose_selection_pos(cases, pending)
97 next_pending = filter(lambda p: p != pos, pending)
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
H A Dfile_operation_handler.js239 var pending;
257 pending = event.taskId in this.pendingItems_;
267 if (!pending)
275 pending = event.taskId in this.pendingItems_;
295 if (!pending || event.reason === 'ERROR')
297 if (pending)
304 * Shows the pending item.
/external/zlib/src/
H A Ddeflate.c407 s->pending = 0;
450 int ZEXPORT deflatePending (strm, pending, bits)
451 unsigned *pending;
456 if (pending != Z_NULL)
457 *pending = strm->state->pending;
516 if (err == Z_BUF_ERROR && s->pending == 0)
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
637 * Flush as much pending output as possible. All deflate() output goes
649 len = s->pending;
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_midi.c93 pMIDIStream->pending = EAS_FALSE;
137 pMIDIStream->pending = EAS_TRUE;
149 pMIDIStream->pending = EAS_FALSE;
166 pMIDIStream->pending = EAS_TRUE;
175 pMIDIStream->pending = EAS_FALSE;
185 pMIDIStream->pending = EAS_TRUE;
211 pMIDIStream->pending = EAS_FALSE;
/external/chromium_org/gpu/command_buffer/service/
H A Dquery_manager_unittest.cc207 EXPECT_FALSE(query->pending());
220 // Check nothing happens if there are no pending queries.
237 EXPECT_TRUE(query->pending());
247 EXPECT_TRUE(query->pending());
262 EXPECT_FALSE(query->pending());
320 EXPECT_TRUE(query1->pending());
321 EXPECT_TRUE(query2->pending());
322 EXPECT_TRUE(query3->pending());
351 EXPECT_FALSE(query1->pending());
352 EXPECT_FALSE(query2->pending());
[all...]
/external/chromium_org/extensions/browser/
H A Dpending_extension_manager.cc95 LOG(ERROR) << "Trying to add pending extension " << id
124 LOG(ERROR) << "Trying to add pending extension " << id
240 if (const PendingExtensionInfo* pending = GetById(id)) {
248 << " old location: " << pending->install_source()
250 << " old version: " << GetVersionString(pending->version())
257 // If |pending| has the same or higher precedence than |info| then don't
258 // install |info| over |pending|.
259 if (pending->CompareTo(info) >= 0)
266 *pending,
/external/bison/lib/
H A Dsigprocmask.c187 /* Set of currently blocked and pending signals. */
207 sigset_t pending = 0; local
212 pending |= 1U << sig;
213 *set = pending;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DLongPressDetector.java127 // Given a stream of pending events, cancel the LONG_PRESS timer if appropriate.
133 MotionEvent pending = pendingEvents.next();
134 if (pending.getDownTime() != currentDownTime) {
137 cancelLongPressIfNeeded(pending);

Completed in 1022 milliseconds

1234567