Searched defs:this (Results 51 - 75 of 164) sorted by relevance

1234567

/external/qemu/distrib/sdl-1.2.15/src/audio/dma/
H A DSDL_dmaaudio.c16 License along with this library; if not, write to the Free Software
101 SDL_AudioDevice *this; local
104 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
105 if ( this ) {
106 SDL_memset(this, 0, (sizeof *this));
107 this->hidden = (struct SDL_PrivateAudioData *)
108 SDL_malloc((sizeof *this->hidden));
110 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/dmedia/
H A DSDL_irixaudio.c16 License along with this library; if not, write to the Free Software
69 SDL_AudioDevice *this; local
72 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
73 if ( this ) {
74 SDL_memset(this, 0, (sizeof *this));
75 this->hidden = (struct SDL_PrivateAudioData *)
76 SDL_malloc((sizeof *this->hidden));
78 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/esd/
H A DSDL_esdaudio.c16 License along with this library; if not, write to the Free Software
147 SDL_AudioDevice *this; local
151 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
152 if ( this ) {
153 SDL_memset(this, 0, (sizeof *this));
154 this->hidden = (struct SDL_PrivateAudioData *)
155 SDL_malloc((sizeof *this->hidden));
157 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
H A DSDL_coreaudio.c16 License along with this library; if not, write to the Free Software
60 SDL_AudioDevice *this; local
63 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
64 if ( this ) {
65 SDL_memset(this, 0, (sizeof *this));
66 this->hidden = (struct SDL_PrivateAudioData *)
67 SDL_malloc((sizeof *this->hidden));
69 if ( (this == NULL) || (this
103 SDL_AudioDevice *this = (SDL_AudioDevice *)inRefCon; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
H A DSDL_romaudio.c16 License along with this library; if not, write to the Free Software
71 SDL_AudioDevice *this; local
74 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
75 if ( this ) {
76 SDL_memset(this, 0, (sizeof *this));
77 this->hidden = (struct SDL_PrivateAudioData *)
78 SDL_malloc((sizeof *this->hidden));
80 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_gsxb.c16 License along with this library; if not, write to the Free
131 SDL_AudioDevice *this; local
134 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
135 if ( this ) {
136 SDL_memset(this, 0, (sizeof *this));
137 this->hidden = (struct SDL_PrivateAudioData *)
138 SDL_malloc((sizeof *this->hidden));
140 if ( (this == NULL) || (this
[all...]
H A DSDL_mintaudio_mcsn.c16 License along with this library; if not, write to the Free
147 SDL_AudioDevice *this; local
150 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
151 if ( this ) {
152 SDL_memset(this, 0, (sizeof *this));
153 this->hidden = (struct SDL_PrivateAudioData *)
154 SDL_malloc((sizeof *this->hidden));
156 if ( (this == NULL) || (this
[all...]
H A DSDL_mintaudio_xbios.c16 License along with this library; if not, write to the Free
131 SDL_AudioDevice *this; local
134 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
135 if ( this ) {
136 SDL_memset(this, 0, (sizeof *this));
137 this->hidden = (struct SDL_PrivateAudioData *)
138 SDL_malloc((sizeof *this->hidden));
140 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mme/
H A DSDL_mmeaudio.c16 License along with this library; if not, write to the Free
62 SDL_AudioDevice *this; local
65 this = SDL_malloc(sizeof(SDL_AudioDevice));
66 if ( this ) {
67 SDL_memset(this, 0, (sizeof *this));
68 this->hidden = SDL_malloc((sizeof *this->hidden));
70 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/paudio/
H A DSDL_paudio.c16 License along with this library; if not, write to the Free Software
88 SDL_AudioDevice *this; local
91 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
92 if ( this ) {
93 SDL_memset(this, 0, (sizeof *this));
94 this->hidden = (struct SDL_PrivateAudioData *)
95 SDL_malloc((sizeof *this->hidden));
97 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/sun/
H A DSDL_sunaudio.c16 License along with this library; if not, write to the Free Software
83 SDL_AudioDevice *this; local
86 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
87 if ( this ) {
88 SDL_memset(this, 0, (sizeof *this));
89 this->hidden = (struct SDL_PrivateAudioData *)
90 SDL_malloc((sizeof *this->hidden));
92 if ( (this == NULL) || (this
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/windib/
H A DSDL_dibaudio.c16 License along with this library; if not, write to the Free Software
67 SDL_AudioDevice *this; local
70 this = (SDL_AudioDevice *)SDL_malloc(sizeof(SDL_AudioDevice));
71 if ( this ) {
72 SDL_memset(this, 0, (sizeof *this));
73 this->hidden = (struct SDL_PrivateAudioData *)
74 SDL_malloc((sizeof *this->hidden));
76 if ( (this == NULL) || (this
109 SDL_AudioDevice *this = (SDL_AudioDevice *)dwInstance; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_keyboard.c16 License along with this library; if not, write to the Free Software
62 SDL_VideoDevice *this = current_video; local
71 video->InitOSKeymap(this);
394 /* FIXME: make this function const in 1.3 */
515 /* Figure out what type of event this is */
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit.c16 License along with this library; if not, write to the Free Software
277 SDL_VideoDevice *this = current_video; local
278 video->CheckHWBlit(this, surface, surface->map->dst);
288 SDL_VideoDevice *this = current_video; local
289 video->CheckHWBlit(this, surface, surface->map->dst);
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fb3dfx.c16 License along with this library; if not, write to the Free Software
63 if ( dst == this->screen ) {
87 if ( dst == this->screen ) {
96 SDL_VideoDevice *this = current_video; local
110 if ( dst == this->screen ) {
163 if ( dst == this->screen ) {
178 if ( ! this->info.blit_hw_A ) {
183 if ( ! this->info.blit_hw_CC ) {
199 this->CheckHWBlit = CheckHWBlit;
208 this
[all...]
H A DSDL_fbmatrox.c16 License along with this library; if not, write to the Free Software
76 if ( dst == this->screen ) {
89 FB_dst_to_xy(this, dst, &dstX, &dstY);
114 if ( dst == this->screen ) {
123 SDL_VideoDevice *this = current_video; local
141 if ( dst == this->screen ) {
148 FB_dst_to_xy(this, src, &srcX, &srcY);
149 FB_dst_to_xy(this, dst, &dstX, &dstY);
217 if ( dst == this->screen ) {
232 if ( ! this
[all...]
/external/skia/gm/rebaseline_server/
H A Dcompare_to_expectations.py6 Use of this source code is governed by a BSD-style license that can be
23 import fix_pythonpath # must do this first namespace
49 Once this object has been constructed, the results (in self._results[])
62 ignore_failures_file: if a file with this name is found within
65 if this directory does not yet exist, it will be created
92 """Edit the expectations stored within this object and write them back
95 Note that this will NOT update the results stored in self._results[] ;
154 Security note: this will only write to files that already exist within
280 # There are no expectations for this test yet!
302 # If this tes
[all...]
/external/chromium_org/remoting/webapp/
H A Dsession_connector_impl.js2 // Use of this source code is governed by a BSD-style license that can be
32 this.clientContainer_ = clientContainer;
38 this.onConnected_ = onConnected;
44 this.onError_ = onError;
50 this.onExtensionMessage_ = onExtensionMessage;
56 this.clientJid_ = '';
62 this.connectionMode_ = remoting.ClientSession.Mode.ME2ME;
68 this.signalStrategy_ = null;
74 this.reconnector_ = null;
79 this
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dthumbnail_loader.js2 // Use of this source code is governed by a BSD-style license that can be
26 this.mediaType_ = opt_mediaType || FileType.getMediaType(entry);
27 this.loaderType_ = opt_loaderType || ThumbnailLoader.LoaderType.IMAGE;
28 this.metadata_ = opt_metadata;
29 this.priority_ = (opt_priority !== undefined) ? opt_priority : 2;
30 this.transform_ = null;
33 this.thumbnailUrl_ = entry.toURL(); // Use the URL directly.
37 this.fallbackUrl_ = null;
38 this.thumbnailUrl_ = null;
40 this
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Ddojo-1.6.1.js26 /**Build will replace this comment with a scoped djConfig **/
79 // Defaults to `false`. If set to `true`, this triggers an alternate
88 // `debugAtAllCosts`, it is strongly recommended that you enable this
94 // The locale to assume for loading localized resources in this page,
115 // this path. The path should end in a slash.
126 // Indicates Dojo was added to the page after the page load. In this case
152 // controls do not bleed through the popups. Normally this configuration variable
158 // Set this to true to enable publishing of topics for the different phases of
174 // If this is config value is set to true, then dojo.addOnLoad callbacks will not be
186 if(typeof this["loadFirebugConsol
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs55 if ( object.Equals( this[i], value ) )
93 public object this[int index]
128 array.SetValue( this[i], index + i );
215 array.SetValue( this[i], index + i );
316 object IList.this[int index]
320 return this[index];
324 this[index] = (T)value;
369 array[arrayIndex + i] = this[i];
386 if ( object.Equals( this[i], item ) )
403 public T this[in
[all...]
/external/blktrace/btt/
H A Ddevs.c17 * along with this program; if not, write to the Free Software
185 void (*fnc)(struct io *iop, struct io *this), int rm_after)
189 struct io *this; local
194 this = list_entry(p, struct io, f_head);
195 list_del(&this->f_head);
196 io_release(this);
184 dip_foreach(struct io *iop, enum iop_type type, void (*fnc)(struct io *iop, struct io *this), int rm_after) argument
/external/chromium_org/tools/binary_size/template/
H A DD3SymbolTreeMap.js2 // Use of this source code is governed by a BSD-style license that can be
10 this._mapContainer = undefined;
11 this._mapWidth = mapWidth;
12 this._mapHeight = mapHeight;
13 this.boxPadding = {'l': 5, 'r': 5, 't': 20, 'b': 5};
14 this.infobox = undefined;
15 this._maskContainer = undefined;
16 this._highlightContainer = undefined;
17 // Transition in this order:
21 this
[all...]
/external/chromium_org/ui/file_manager/image_loader/
H A Dimage_loader_client.js2 // Use of this source code is governed by a BSD-style license that can be
23 this.tasks_ = {};
29 this.lastTaskId_ = 0;
36 this.cache_ = new ImageLoaderClient.Cache();
65 min: 1, // According to histogram.h, this should be 1 for enums.
103 if (!(message.taskId in this.tasks_)) {
109 var task = this.tasks_[message.taskId];
115 delete this.tasks_[message.taskId];
136 ImageLoaderClient.recordPercentage('Cache.Usage', this.cache_.getUsage());
139 var taskKeys = Object.keys(this
[all...]
/external/libvorbis/lib/
H A Dcodebook.c56 long this=c->lengthlist[i]; local
58 if(this>last){
59 for(j=last;j<this;j++){
337 Cascades may be additive or multiplicitive; this is not inherent in

Completed in 675 milliseconds

1234567