Searched refs:current (Results 176 - 200 of 1406) sorted by relevance

1234567891011>>

/external/chromium/webkit/glue/media/
H A Dbuffered_data_source.cc80 DCHECK(MessageLoop::current() == render_loop_);
204 DCHECK(MessageLoop::current() == render_loop_);
209 DCHECK(MessageLoop::current() == render_loop_);
218 DCHECK(MessageLoop::current() == render_loop_);
256 DCHECK(MessageLoop::current() == render_loop_);
277 DCHECK(MessageLoop::current() == render_loop_);
300 // Reset the parameters of the current read request.
309 DCHECK(MessageLoop::current() == render_loop_);
330 DCHECK(MessageLoop::current() == render_loop_);
354 // Stops the current loade
[all...]
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_manager.cc270 BrowserAccessibility* current = GetFromChildID(child_id); local
271 if (!current)
276 current->Initialize(
278 current->parent(),
279 current->child_id(),
280 current->index_in_parent(),
282 return current;
288 current->DetachTree(&old_tree_nodes);
292 current = CreateAccessibilityTree(NULL, src, -1);
303 return current;
[all...]
/external/chromium/chrome/browser/
H A Djankometer.cc112 // Time at which the current message processing began.
115 // Time the current message spent in the queue -- delta between message
224 // Attaches the observer to the current thread's message loop. You can only
225 // attach to the current thread, so this function can be invoked on another
228 MessageLoop::current()->AddTaskObserver(this);
229 MessageLoopForIO::current()->AddIOObserver(this);
232 // Detaches the observer to the current thread's message loop.
234 MessageLoopForIO::current()->RemoveIOObserver(this);
235 MessageLoop::current()->RemoveTaskObserver(this);
278 // Attaches the observer to the current threa
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.h199 DCHECK_EQ(MessageLoop::current(), message_loop_);
205 DCHECK_EQ(MessageLoop::current(), message_loop_);
211 DCHECK_EQ(MessageLoop::current(), message_loop_);
217 DCHECK_EQ(MessageLoop::current(), message_loop_);
223 DCHECK_EQ(MessageLoop::current(), message_loop_);
229 DCHECK_EQ(MessageLoop::current(), message_loop_);
234 DCHECK_EQ(MessageLoop::current(), message_loop_);
239 DCHECK_EQ(MessageLoop::current(), message_loop_);
244 DCHECK_EQ(MessageLoop::current(), message_loop_);
249 DCHECK_EQ(MessageLoop::current(), message_loop
[all...]
H A Dgaia_authenticator.cc79 DCHECK_EQ(MessageLoop::current(), message_loop_);
98 DCHECK_EQ(MessageLoop::current(), message_loop_);
121 DCHECK_EQ(MessageLoop::current(), message_loop_);
157 DCHECK_EQ(MessageLoop::current(), message_loop_);
207 DCHECK_EQ(MessageLoop::current(), message_loop_);
257 DCHECK_EQ(MessageLoop::current(), message_loop_);
336 // strings; the first one is the most current and the second one is
361 DCHECK_EQ(MessageLoop::current(), message_loop_);
368 DCHECK_EQ(MessageLoop::current(), message_loop_);
374 DCHECK_EQ(MessageLoop::current(), message_loop
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
H A DSDL_cacavideo.c57 static SDL_Surface *Caca_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
193 SDL_Surface *Caca_SetVideoMode(_THIS, SDL_Surface *current, argument
215 if ( ! SDL_ReallocFormat(current, 16, 0xf800, 0x07e0, 0x001f, 0) ) {
220 current->flags = SDL_FULLSCREEN;
221 Caca_w = current->w = width;
222 Caca_h = current->h = height;
223 current->pitch = 2 * ((width + 15) & ~15);
224 current->pixels = Caca_buffer;
227 Caca_bitmap = caca_create_bitmap( 16, width, height, current->pitch, 0xf800, 0x07e0, 0x001f, 0x0000 );
237 return(current);
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLFormCollection.cpp69 if (info()->current && info()->position == index)
70 return info()->current;
75 if (!info()->current || info()->position > index) {
76 info()->current = 0;
89 info()->current = element;
163 info()->current = getNamedItem(idAttr, name);
164 if (info()->current)
165 return info()->current;
167 info()->current = getNamedItem(nameAttr, name);
168 return info()->current;
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dtokens.c103 lBlock->current = 0;
108 fTok->current->next = lBlock;
112 fTok->current = lBlock;
124 lBlock = fTok->current;
142 lBlock = pTok->current;
144 if (lBlock->current >= lBlock->count) {
147 lBlock->current = 0;
148 pTok->current = lBlock;
151 lval = lBlock->data[lBlock->current++];
174 pTok->current
[all...]
/external/linux-tools-perf/
H A Dbuiltin-timechart.c91 struct per_pidcomm *current; member in struct:per_pid
194 p->current = c;
199 p->current = c;
208 p->current = c;
219 if (pp->current && pp->current->comm && !p->current)
220 pid_set_comm(pid, pp->current->comm);
223 if (p->current) {
224 p->current
[all...]
/external/v8/src/
H A Darray.js236 var current = array[j];
237 if (!IS_UNDEFINED(current) || j in array) {
238 deleted_elements[j - start_i] = current;
248 var current = array[key];
249 if (!IS_UNDEFINED(current) || key in array) {
250 deleted_elements[key - start_i] = current;
275 var current = array[j];
276 if (!IS_UNDEFINED(current) || j in array) {
277 new_array[j] = current;
287 var current
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedCharacterIteratorTest.java27 * @tests java.text.AttributedCharacterIterator#current()
33 assertEquals("Wrong first", 'T', it.current());
35 assertEquals("Wrong second", 'e', it.current());
38 assertEquals("Wrong last", 'g', it.current());
40 assertTrue("Wrong final", it.current() == CharacterIterator.DONE);
43 assertEquals("Wrong first2", 's', it.current());
151 assertEquals("Wrong first", '2', it.current());
/external/chromium/chrome/browser/chromeos/
H A Dgview_request_interceptor_unittest.cc113 MessageLoop::current()->Run();
122 MessageLoop::current()->Run();
139 MessageLoop::current()->Run();
156 MessageLoop::current()->Run();
169 MessageLoop::current()->Run();
178 MessageLoop::current()->Run();
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c128 struct dir_list *current; local
139 current = list;
142 printf("Scanning directory %s\n", current->name);
144 scan_dir(current->name, device, &new_list, &ret_path);
145 free(current->name);
146 free(current);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java87 * Gets the current value at position {@code i}.
90 * @return the current value
136 * if the current value is <a href="#bitEquals">bitwise equal</a>
154 * if the current value is <a href="#bitEquals">bitwise equal</a>
183 long current = longs.get(i);
184 double currentVal = longBitsToDouble(current);
187 if (longs.compareAndSet(i, current, next)) {
202 long current = longs.get(i);
203 double currentVal = longBitsToDouble(current);
206 if (longs.compareAndSet(i, current, nex
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_video.c46 static SDL_Surface *ph_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
403 /* Determine the current screen size */
412 /* save current palette */
448 static SDL_Surface* ph_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) argument
455 current->flags = flags;
458 if (((current->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN) && (ph_GetVideoMode(width, height, bpp)==0))
460 current->flags &= ~SDL_FULLSCREEN;
461 current->flags &= ~SDL_NOFRAME;
462 current->flags &= ~SDL_RESIZABLE;
465 ph_SetupWindow(this, width, height, current
[all...]
/external/webkit/Source/WebCore/platform/qt/
H A DFileSystemQt.cpp168 long long current = 0; local
174 current = handle->pos();
177 current = handle->size();
181 // Add the offset to the current position and seek to the new position
183 current += offset;
184 if (handle->seek(current))
185 return current;
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceContainer.cpp77 // Invalidate all our current clients.
111 RenderObject* current = client->parent(); local
112 while (current) {
113 if (current->isSVGResourceContainer()) {
114 current->toRenderSVGResourceContainer()->removeAllClientsFromCache(markForInvalidation);
118 current = current->parent();
/external/chromium/base/metrics/
H A Dstats_counters.cc12 if (StatsTable::current()) {
40 StatsTable* table = StatsTable::current();
68 if (StatsTable::current()) {
/external/chromium/chrome/browser/extensions/
H A Dextension_test_api.cc29 NotificationService::current()->Notify(
41 NotificationService::current()->Notify(
80 NotificationService::current()->Notify(
H A Dfile_reader_unittest.cc45 MessageLoop::current()->Quit();
70 MessageLoop::current()->Run();
99 MessageLoop::current()->Run();
/external/chromium/chrome/browser/printing/
H A Dprint_job_unittest.cc93 MessageLoop current; local
101 EXPECT_EQ(MessageLoop::current(), job->message_loop());
112 MessageLoop current; local
H A Dprint_job_worker.cc39 NotificationService::current()->Notify(
56 DCHECK_EQ(owner_->message_loop(), MessageLoop::current());
66 DCHECK_EQ(owner_->message_loop(), MessageLoop::current());
79 DCHECK_EQ(message_loop(), MessageLoop::current());
87 // MessageLoop::current()->SetNestableTasksAllowed(true);
103 DCHECK_EQ(message_loop(), MessageLoop::current());
142 // MessageLoop::current()->SetNestableTasksAllowed(false);
177 DCHECK_EQ(message_loop(), MessageLoop::current());
205 DCHECK_EQ(message_loop(), MessageLoop::current());
222 DCHECK_EQ(message_loop(), MessageLoop::current());
[all...]
/external/chromium/chrome/common/
H A Dworker_thread_ticker_unittest.cc15 TestCallback() : counter_(0), message_loop_(MessageLoop::current()) {
40 MessageLoop::current()->PostDelayedTask(FROM_HERE,
42 MessageLoop::current()->Run();
/external/doclava/res/assets/templates/assets/
H A Djquery-history.js32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
34 previousNav = current;
/external/freetype/include/freetype/internal/
H A Dftgloadr.h88 FT_GlyphLoadRec current; member in struct:FT_GlyphLoaderRec_
126 (_loader)->current.outline.n_points + \
131 (_loader)->current.outline.n_contours + \
147 /* prepare a glyph loader, i.e. empty the current glyph */
151 /* add the current glyph to the base glyph */

Completed in 2409 milliseconds

1234567891011>>