/external/qemu/distrib/sdl-1.2.12/src/video/ipod/ |
SDL_ipodvideo.c | 105 free (device->hidden); 118 this->hidden = (struct SDL_PrivateVideoData *) SDL_malloc (sizeof(struct SDL_PrivateVideoData)); 120 if (!this || !this->hidden) { 126 memset (this->hidden, 0, sizeof(struct SDL_PrivateVideoData)); 346 if (this->hidden->buffer) SDL_free (this->hidden->buffer); 347 this->hidden->buffer = SDL_malloc (width * height * (bpp / 8)); 348 if (!this->hidden->buffer) { 353 memset (this->hidden->buffer, 0, width * height * (bpp / 8)); 357 SDL_free (this->hidden->buffer) [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
treeoutline.js | 84 if (this.hidden) 85 this._childrenListNode.addStyleClass("hidden"); 132 if (this.hidden) 133 this._childrenListNode.addStyleClass("hidden"); 528 get hidden() { 532 set hidden(x) { 540 this._listItemNode.addStyleClass("hidden"); 542 this._childrenListNode.addStyleClass("hidden"); 545 this._listItemNode.removeStyleClass("hidden"); 547 this._childrenListNode.removeStyleClass("hidden"); [all...] |
/external/chromium/net/proxy/ |
proxy_resolver_js_bindings_unittest.cc | 116 // Get a hold of a DefaultJSBindings* (it is a hidden impl class). 143 // Get a hold of a DefaultJSBindings* (it is a hidden impl class). 170 // Get a hold of a DefaultJSBindings* (it is a hidden impl class). 227 // Get a hold of a DefaultJSBindings* (it is a hidden impl class). 244 // Get a hold of a DefaultJSBindings* (it is a hidden impl class). 296 // Get a hold of a DefaultJSBindings* (it is a hidden impl class).
|
/external/libffi/ |
configure.ac | 272 AC_CACHE_CHECK([for __attribute__((visibility("hidden")))], 274 echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1; }' > conftest.c 277 if grep '\.hidden.*foo' conftest.s >/dev/null; then 285 [Define if __attribute__((visibility("hidden"))) is supported.]) 291 #define FFI_HIDDEN(name) .hidden name 293 #define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
|
/external/qemu/distrib/sdl-1.2.12/src/audio/bsd/ |
SDL_bsdaudio.c | 100 SDL_free(device->hidden); 113 this->hidden = 114 (struct SDL_PrivateAudioData*)SDL_malloc((sizeof *this->hidden)); 116 if((this == NULL) || (this->hidden == NULL)) { 121 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/audio/dma/ |
SDL_dmaaudio.c | 95 SDL_free(device->hidden); 107 this->hidden = (struct SDL_PrivateAudioData *) 108 SDL_malloc((sizeof *this->hidden)); 110 if ( (this == NULL) || (this->hidden == NULL) ) { 117 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/audio/macrom/ |
SDL_romaudio.c | 65 SDL_free(device->hidden); 77 this->hidden = (struct SDL_PrivateAudioData *) 78 SDL_malloc((sizeof *this->hidden)); 80 if ( (this == NULL) || (this->hidden == NULL) ) { 87 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/audio/mint/ |
SDL_mintaudio_gsxb.c | 125 SDL_free(device->hidden); 137 this->hidden = (struct SDL_PrivateAudioData *) 138 SDL_malloc((sizeof *this->hidden)); 140 if ( (this == NULL) || (this->hidden == NULL) ) { 147 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
SDL_mintaudio_mcsn.c | 140 SDL_free(device->hidden); 152 this->hidden = (struct SDL_PrivateAudioData *) 153 SDL_malloc((sizeof *this->hidden)); 155 if ( (this == NULL) || (this->hidden == NULL) ) { 162 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
SDL_mintaudio_xbios.c | 124 SDL_free(device->hidden); 136 this->hidden = (struct SDL_PrivateAudioData *) 137 SDL_malloc((sizeof *this->hidden)); 139 if ( (this == NULL) || (this->hidden == NULL) ) { 146 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/audio/sun/ |
SDL_sunaudio.c | 77 SDL_free(device->hidden); 89 this->hidden = (struct SDL_PrivateAudioData *) 90 SDL_malloc((sizeof *this->hidden)); 92 if ( (this == NULL) || (this->hidden == NULL) ) { 99 SDL_memset(this->hidden, 0, (sizeof *this->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/video/dc/ |
SDL_dcvideo.c | 72 SDL_free(device->hidden); 84 device->hidden = (struct SDL_PrivateVideoData *) 85 SDL_malloc((sizeof *device->hidden)); 87 if ( (device == NULL) || (device->hidden == NULL) ) { 94 SDL_memset(device->hidden, 0, (sizeof *device->hidden));
|
/external/qemu/distrib/sdl-1.2.12/src/video/ggi/ |
SDL_ggivideo.c | 83 SDL_free(device->hidden); 95 device->hidden = (struct SDL_PrivateVideoData *) 96 SDL_malloc((sizeof *device->hidden)); 98 if ( (device == NULL) || (device->hidden == NULL) ) { 105 SDL_memset(device->hidden, 0, (sizeof *device->hidden));
|
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/slider/ |
slider.edc | 105 state: "hidden" 0.0; 177 action: STATE_SET "hidden" 0.0; 182 action: STATE_SET "hidden" 0.0; 340 state: "hidden" 0.0; 413 action: STATE_SET "hidden" 0.0; 418 action: STATE_SET "hidden" 0.0;
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
browser_actions_controller.mm | 110 // Hides the chevron and unhides every hidden button so that dragging the 117 // Determines which buttons need to be hidden based on the new size, hides them 153 // Shows the overflow chevron button depending on whether there are any hidden 161 - (void)setChevronHidden:(BOOL)hidden 172 // Updates the container's grippy cursor based on the number of hidden buttons. 330 if (iconCount < 0) // If no buttons are hidden. 511 // It may or may not be hidden, but it won't matter to NSMutableArray either 579 // Make room for the chevron if any buttons are hidden. 772 - (void)setChevronHidden:(BOOL)hidden 775 if (hidden == [self chevronIsHidden] [all...] |
/external/clang/lib/AST/ |
CXXInheritance.cpp | 259 // declarations that are so hidden are eliminated from 301 // When virtual base classes are used, a hidden declaration can be 312 bool Hidden = false; 315 PE != PEEnd && !Hidden; ++PE) { 326 // declaration in this path are hidden by that patch. 339 Hidden = true; 346 if (Hidden) 616 // subobjects that were hidden by other subobjects along any path. 644 bool Hidden = false; 647 OP != OPEnd && !Hidden; [all...] |
/development/scripts/app_engine_server/gae_shell/templates/ |
shell.html | 26 overflow-x: hidden; 95 <input type="hidden" name="session" value="{{ session }}" />
|
/external/chromium/chrome/browser/resources/ntp4/ |
recently_closed.js | 41 this.hidden = true; 67 this.hidden = dataItems.length == 0;
|
/external/chromium/chrome/browser/resources/options/ |
password_manager.js | 91 list.hidden = empty; 92 $(listPlaceHolderID).hidden = !empty;
|
/external/chromium/chrome/browser/ui/views/frame/ |
browser_frame_gtk.cc | 122 // The window is effectively hidden. We have to hide the status bubble as 123 // unlike windows gtk has no notion of child windows that are hidden along
|
/external/chromium/chrome/browser/ui/views/infobars/ |
infobar.h | 42 // Makes the infobar hidden. If |animate| is true, the infobar is first 43 // animated to zero size. Once the infobar is hidden, it is removed from its
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/ |
options.css | 25 overflow: hidden; 118 overflow: hidden;
|
/external/clang/test/CodeGenObjC/ |
objc-align.m | 30 // RUNX: grep '@"\\01l_OBJC_LABEL_PROTOCOL_$_P" = weak hidden global .*, section "__DATA, __objc_protolist, coalesced, no_dead_strip", align 8' %t && 33 // RUNX: grep '@"\\01l_OBJC_PROTOCOL_$_P" = weak hidden global .*, section "__DATA,__datacoal_nt,coalesced", align 8' %t &&
|
/external/clang/test/Driver/ |
clang-translation.c | 1 // RUN: %clang -ccc-host-triple i386-unknown-unknown -### -S -O0 -Os %s -o %t.s -fverbose-asm -funwind-tables -fvisibility=hidden 2> %t.log 11 // RUN: grep '"-fvisibility" "hidden"' %t.log
|
/external/qemu/distrib/sdl-1.2.12/src/video/photon/ |
SDL_ph_video.c | 79 device->hidden = (struct SDL_PrivateVideoData*)SDL_malloc((sizeof *device->hidden)); 82 if ((device == NULL) || (device->hidden == NULL)) 88 SDL_memset(device->hidden, 0, (sizeof *device->hidden)); 149 if (device->hidden) 151 SDL_free(device->hidden); 152 device->hidden = NULL;
|