Searched refs:current (Results 226 - 250 of 1428) sorted by relevance

1234567891011>>

/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_otadata.h51 EAS_U8 patternLen; /* length of current pattern */
61 EAS_I32 time; /* current time in 256ths of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
65 S_OTA_LOC current; /* current location */ member in struct:__anon13294
70 EAS_U8 currentPattern; /* current pattern for loop */
74 EAS_U8 velocity; /* current volume */
75 EAS_U8 state; /* current state EAS_STATE_XXXX */
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_otadata.h51 EAS_U8 patternLen; /* length of current pattern */
61 EAS_I32 time; /* current time in 256ths of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
65 S_OTA_LOC current; /* current location */ member in struct:__anon13346
70 EAS_U8 currentPattern; /* current pattern for loop */
74 EAS_U8 velocity; /* current volume */
75 EAS_U8 state; /* current state EAS_STATE_XXXX */
/external/webkit/Source/WebKit2/UIProcess/Launcher/qt/
H A DThreadLauncherQt.cpp58 WebProcess::shared().initialize(-1, RunLoop::current());
/external/webkit/Source/WebKit2/UIProcess/Launcher/win/
H A DThreadLauncherWin.cpp46 WebProcess::shared().initialize(clientIdentifier, RunLoop::current());
/external/chromium/chrome/browser/chromeos/notifications/
H A Ddesktop_notifications_unittest.cc115 MessageLoopForUI::current()->RunAllPending();
126 MessageLoopForUI::current()->RunAllPending();
141 MessageLoopForUI::current()->RunAllPending();
171 MessageLoopForUI::current()->RunAllPending();
178 MessageLoopForUI::current()->RunAllPending();
201 MessageLoopForUI::current()->RunAllPending();
220 MessageLoopForUI::current()->RunAllPending();
232 MessageLoopForUI::current()->RunAllPending();
263 MessageLoopForUI::current()->RunAllPending();
/external/chromium/chrome/browser/sync/glue/
H A Dhttp_bridge.cc125 created_on_loop_(MessageLoop::current()),
133 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
148 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
166 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
185 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
229 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
236 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
245 DCHECK_EQ(MessageLoop::current(), created_on_loop_);
291 MessageLoop::current()->DeleteSoon(FROM_HERE, fetch_state_.url_poster);
/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java282 Node<K, V> current; field in class:LinkedListMultimap.NodeIterator
303 current = null;
312 previous = current = next;
315 return current;
319 checkState(current != null);
320 if (current != next) { // after call to next()
321 previous = current.previous;
324 next = current.next;
326 removeNode(current);
327 current
367 Node<K, V> current; field in class:LinkedListMultimap.DistinctKeyIterator
396 Node<K, V> current; field in class:LinkedListMultimap.ValueForKeyIterator
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java278 Node<K, V> current; field in class:LinkedListMultimap.NodeIterator
299 current = null;
308 previous = current = next;
311 return current;
315 checkState(current != null);
316 if (current != next) { // after call to next()
317 previous = current.previous;
320 next = current.next;
322 removeNode(current);
323 current
363 Node<K, V> current; field in class:LinkedListMultimap.DistinctKeyIterator
392 Node<K, V> current; field in class:LinkedListMultimap.ValueForKeyIterator
[all...]
/external/libmtp/examples/
H A Dpathutils.c34 char * current; local
44 current = malloc (strlen(parent) + strlen(folder->name) + 2);
45 sprintf(current,"%s/%s",parent,folder->name);
46 if (strcasecmp (path, current) == 0) {
47 free (current);
50 if (strncasecmp (path, current, strlen (current)) == 0) {
51 ret = lookup_folder_id (folder->child, path, current);
53 free (current);
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzVideo.m106 static SDL_Surface* QZ_SetVideoMode (_THIS, SDL_Surface *current,
352 SDL_SetError("Couldn't figure out current display mode.");
377 /* Determine the current screen size */
687 static SDL_Surface* QZ_SetVideoFullScreen (_THIS, SDL_Surface *current, int width,
697 current->flags = SDL_FULLSCREEN;
698 current->w = width;
699 current->h = height;
749 current->pixels = (Uint32*) CGDisplayBaseAddress (display_id);
750 current->pitch = CGDisplayBytesPerRow (display_id);
752 current
[all...]
/external/v8/tools/
H A Dgen-postmortem-metadata.py377 current = '';
392 current += line[0:ii + 1];
399 if (len(current) > 0):
400 fields.append(parse_field(current));
401 current = '';
412 current += line[0:ii + 1];
414 if (len(current) > 0):
415 fields.append(parse_field(current));
416 current = '';
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRoot.cpp119 RenderObject* current = firstChild(); local
120 while (current != lastChild()) {
121 if (current->isBoxModelObject()) {
122 RenderBoxModelObject* box = toRenderBoxModelObject(current);
125 current = current->nextSibling();
210 RenderObject* current = lastChild()->firstChild(); local
211 if (current)
212 current->style()->setVerticalAlign(BASELINE);
/external/icu4c/i18n/
H A Ducol_tok.cpp573 int32_t current = 1; // skip the opening brace local
574 while(start+current < end && noOpenBraces != 0) {
575 if(start[current] == 0x005b) {
577 } else if(start[current] == 0x005D) { // closing brace
580 current++;
583 if(noOpenBraces != 0 || u_strchr(start+current, 0x005d /*']'*/) == NULL) {
587 return uset_openPattern(start, current, status);
632 const UChar* current = src->current; local
633 const UChar* end = u_memchr(src->current,
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_win_unittest.cc121 MessageLoop::current()->PostTask(FROM_HERE, new MessageLoop::QuitTask);
122 MessageLoop::current()->Run();
142 MessageLoop::current()->Quit();
221 MessageLoop::current()->Run();
261 MessageLoop::current()->RunAllPending();
341 MessageLoop::current()->Run();
342 MessageLoop::current()->Run();
450 MessageLoop::current()->RunAllPending();
466 MessageLoop::current()->Run();
476 MessageLoop::current()
[all...]
/external/icu4c/common/
H A Dcaniter.cpp72 current(NULL),
102 if(current != NULL) {
103 uprv_free(current);
104 current = NULL;
122 current[i] = 0;
144 buffer.append(pieces[i][current[i]]);
155 current[i]++;
156 if (current[i] < pieces_lengths[i]) break; // got sequence
157 current[i] = 0;
186 current
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3video.c54 static SDL_Surface *PS3_SetVideoMode(_THIS, SDL_Surface * current, int width, int height, int bpp, Uint32 flags);
293 static SDL_Surface *PS3_SetVideoMode(_THIS, SDL_Surface * current, int width, int height, int bpp, Uint32 flags) argument
301 current->flags |= flags;
322 current->flags |= SDL_DOUBLEBUF;
324 if (!SDL_ReallocFormat(current, fb_bits_per_pixel, 0, 0, 0, 0)) {
338 current->flags |= SDL_FULLSCREEN;
339 current->w = width;
340 current->h = height;
341 current->pitch = SDL_CalculatePitch(current);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nds/
H A DSDL_ndsvideo.c43 static SDL_Surface *NDS_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
239 SDL_Surface *NDS_SetVideoMode(_THIS, SDL_Surface *current, argument
314 if ( ! SDL_ReallocFormat(current, bpp, Rmask, Gmask, Bmask, Amask) ) {
321 current->flags = flags | SDL_FULLSCREEN | SDL_HWSURFACE | (this->hidden->ndsmode > 0 ? SDL_DOUBLEBUF : 0);
322 this->hidden->w = current->w = width;
323 this->hidden->h = current->h = height;
324 current->pixels = frontBuffer;
329 current->pixels = backBuffer;
332 current->pitch =1024;
334 current
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysvideo.cc48 static SDL_Surface *BE_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
275 /* Save the current display mode */
353 display_mode current; local
355 bscreen.GetMode(&current);
356 current_refresh = (1000 * current.timing.pixel_clock) /
357 (current.timing.h_total * current.timing.v_total);
390 if ((mode->virtual_width <= current.virtual_width) &&
391 (mode->virtual_height <= current.virtual_height)) {
430 // current SD
498 BE_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/macrom/
H A DSDL_romvideo.c58 static SDL_Surface *ROM_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
211 /* Determine the current screen size */
454 static void ROM_UnsetVideoMode(_THIS, SDL_Surface *current) argument
456 /* Free the current window, if any */
468 if ( (current->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN ) {
477 current->pixels = NULL;
478 current->flags &= ~(SDL_HWSURFACE|SDL_FULLSCREEN);
481 static SDL_Surface *ROM_SetVideoMode(_THIS, SDL_Surface *current, argument
490 ROM_UnsetVideoMode(this, current);
493 current
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgavideo.c56 static SDL_Surface *SVGA_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
260 /* Determine the current screen size */
339 SDL_Surface *SVGA_SetVideoMode(_THIS, SDL_Surface *current, argument
348 if ( banked && current->pixels ) {
349 free(current->pixels);
350 current->pixels = NULL;
385 if ( ! SDL_ReallocFormat(current, bpp, 0, 0, 0, 0) ) {
390 current->flags = SDL_FULLSCREEN;
392 current->flags |= SDL_HWSURFACE;
396 current
[all...]
/external/v8/src/
H A Dserialize.cc741 Object** current = reinterpret_cast<Object**>(address); local
742 Object** limit = current + (size >> kPointerSizeLog2);
746 ReadChunk(current, limit, space_number, address);
781 void Deserializer::ReadChunk(Object** current, argument
791 while (current < limit) {
809 ReadObject(space_number, dest_space, current); \
851 reinterpret_cast<Address>(current); \
856 current = reinterpret_cast<Object**>(location_of_branch_data); \
859 *current = new_object; \
863 Address current_address = reinterpret_cast<Address>(current); \
1460 Object** current = start; local
1499 Object** current = rinfo->target_object_address(); local
1526 Address* current = rinfo->target_reference_address(); local
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dimage_downloader.cc52 MessageLoop::current()->DeleteSoon(FROM_HERE, this);
59 MessageLoop::current()->DeleteSoon(FROM_HERE, this);
/external/chromium/chrome/browser/extensions/
H A Dcrx_installer_browsertest.cc31 MessageLoopForUI::current()->Quit();
35 MessageLoopForUI::current()->Quit();
H A Dextension_devtools_manager.cc16 DCHECK_EQ(MessageLoop::current()->type(), MessageLoop::TYPE_UI);
17 ui_loop_ = MessageLoop::current();
H A Dextension_uninstall_dialog.cc22 ui_loop_(MessageLoop::current()),
33 DCHECK(ui_loop_ == MessageLoop::current());

Completed in 1601 milliseconds

1234567891011>>